A. Spot Exchanges
The /tickers endpoint provides 24-hour pricing and volume information on each market pair available on an exchange.
Sample request URL-
Response-
[]
The /historical_trades/ticker_id is used to return data on historical completed trades for a given market pair.
Sample request URL-
Response-
{
"buy": [],
"sell": []
}
The /orderbook/ticker_id endpoint is to provide order book information with at least depth = 100 (50 each side) returned for a given market pair/ticker.
Sample request URL-
Response-
{
"ticker_id": "BTC_USD",
"timestamp": "1766307423897",
"bids": [
[
"88624.735407",
"0.1391"
],
[
"88615.975201",
"0.2553"
],
[
"88615.899569",
"0.24215"
],
[
"88615.027104",
"0.199"
],
[
"88614.657404",
"0.192"
],
[
"88614.421551",
"0.25"
],
[
"88601.024274",
"0.26"
],
[
"88600.075814",
"0.16328"
],
[
"88599.89516",
"0.2"
],
[
"88597.453497",
"0.17"
]
],
"asks": [
[
"88639.492934",
"0.234"
],
[
"88639.958182",
"0.2235"
],
[
"88640.058942",
"0.178"
],
[
"88650.021736",
"0.23"
],
[
"88650.132287",
"0.21"
],
[
"88650.400264",
"0.15513"
],
[
"88660.89625",
"0.212"
],
[
"88661.057035",
"0.14"
],
[
"88673.927851",
"0.229"
],
[
"88734.018399",
"0.2"
]
]
}
B. Derivative Exchanges
The /contracts endpoint provides a summary of all contracts traded on the exchange. There should be a clear distinction between the type of contracts such as perpetual, futures, options, etc. See below for specifications of data required for the /contracts endpoint:
Sample request URL-
Response-
[
{
"ticker_id": "BCHUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "BCH",
"last_price": 592.22235044,
"base_volume": 3361201.67,
"usd_volume": 3361201.67,
"quote_volume": 3361201.67,
"bid": 587.82175037,
"ask": 594.19813638,
"high": 593.32914624,
"low": 592.22046392,
"product_type": "Perpetual",
"open_interest": 3361201.67,
"open_interest_usd": 3361201.67,
"index_price": 588.34320046,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 592.22235044,
"next_funding_rate": 592.22235044,
"next_funding_rate_timestamp": 1766307424014,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 592.22235044,
"contract_price_currency": "USDT"
},
{
"ticker_id": "BTCUSD_PERP",
"base_currency": "USD",
"quote_currency": "BTC",
"last_price": 88088.33757827,
"base_volume": 1904284.08,
"usd_volume": 1904284.08,
"quote_volume": 1904284.08,
"bid": 88014.63661154,
"ask": 88421.08949719,
"high": 88088.33757827,
"low": 88054.22317508,
"product_type": "Perpetual",
"open_interest": 1904284.08,
"open_interest_usd": 1904284.08,
"index_price": 88457.41053046,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 88088.33757827,
"next_funding_rate": 88088.33757827,
"next_funding_rate_timestamp": 1766307424014,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 88088.33757827,
"contract_price_currency": "USD"
},
{
"ticker_id": "ADAUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "ADA",
"last_price": 0.37079418,
"base_volume": 760637.93,
"usd_volume": 760637.93,
"quote_volume": 760637.93,
"bid": 0.37019298,
"ask": 0.37030631,
"high": 0.37079577,
"low": 0.36829436,
"product_type": "Perpetual",
"open_interest": 760637.93,
"open_interest_usd": 760637.93,
"index_price": 0.37058232,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 0.37079418,
"next_funding_rate": 0.37079418,
"next_funding_rate_timestamp": 1766307424014,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 0.37079418,
"contract_price_currency": "USDT"
},
{
"ticker_id": "XRPUSD_260327",
"base_currency": "USD",
"quote_currency": "XRP",
"last_price": 1.93342263,
"base_volume": 4247337.04,
"usd_volume": 4247337.04,
"quote_volume": 4247337.04,
"bid": 1.93146394,
"ask": 1.94512392,
"high": 1.93342263,
"low": 1.93127169,
"product_type": "Futures",
"open_interest": 4247337.04,
"open_interest_usd": 4247337.04,
"index_price": 1.93629935,
"creation_timestamp": 1758931461,
"expiry_timestamp": 1774658416,
"funding_rate": 1.93342263,
"next_funding_rate": 1.93342263,
"next_funding_rate_timestamp": 1766307424014,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 1.93342263,
"contract_price_currency": "USD"
},
{
"ticker_id": "LTCUSD_PERP",
"base_currency": "USD",
"quote_currency": "LTC",
"last_price": 77.10134932,
"base_volume": 1271786.42,
"usd_volume": 1271786.42,
"quote_volume": 1271786.42,
"bid": 77.00899995,
"ask": 77.36136593,
"high": 77.10134932,
"low": 77.02895272,
"product_type": "Perpetual",
"open_interest": 1271786.42,
"open_interest_usd": 1271786.42,
"index_price": 77.40799365,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 77.10134932,
"next_funding_rate": 77.10134932,
"next_funding_rate_timestamp": 1766307424014,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 77.10134932,
"contract_price_currency": "USD"
},
{
"ticker_id": "ETHUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "ETH",
"last_price": 2978.45609909,
"base_volume": 1696414.73,
"usd_volume": 1696414.73,
"quote_volume": 1696414.73,
"bid": 2976.69302372,
"ask": 2989.78691701,
"high": 2978.45609909,
"low": 2975.94061289,
"product_type": "Perpetual",
"open_interest": 1696414.73,
"open_interest_usd": 1696414.73,
"index_price": 2991.31186047,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 2978.45609909,
"next_funding_rate": 2978.45609909,
"next_funding_rate_timestamp": 1766307424014,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 2978.45609909,
"contract_price_currency": "USDT"
},
{
"ticker_id": "BTCUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "BTC",
"last_price": 88124.13976213,
"base_volume": 5677335.41,
"usd_volume": 5677335.41,
"quote_volume": 5677335.41,
"bid": 88048.39336506,
"ask": 88456.1627442,
"high": 88124.13976213,
"low": 88085.70143929,
"product_type": "Perpetual",
"open_interest": 5677335.41,
"open_interest_usd": 5677335.41,
"index_price": 88485.93847826,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 88124.13976213,
"next_funding_rate": 88124.13976213,
"next_funding_rate_timestamp": 1766307424014,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 88124.13976213,
"contract_price_currency": "USDT"
},
{
"ticker_id": "LINKUSD_PERP",
"base_currency": "USD",
"quote_currency": "LINK",
"last_price": 12.5301366,
"base_volume": 244363.9,
"usd_volume": 244363.9,
"quote_volume": 244363.9,
"bid": 12.49377903,
"ask": 12.58315016,
"high": 12.5301366,
"low": 12.4997981,
"product_type": "Perpetual",
"open_interest": 244363.9,
"open_interest_usd": 244363.9,
"index_price": 12.58982312,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 12.5301366,
"next_funding_rate": 12.5301366,
"next_funding_rate_timestamp": 1766307424014,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 12.5301366,
"contract_price_currency": "USD"
},
{
"ticker_id": "ADAUSD_PERP",
"base_currency": "USD",
"quote_currency": "ADA",
"last_price": 0.37020522,
"base_volume": 799800.19,
"usd_volume": 799800.19,
"quote_volume": 799800.19,
"bid": 0.37019611,
"ask": 0.37030416,
"high": 0.37020522,
"low": 0.36869538,
"product_type": "Perpetual",
"open_interest": 799800.19,
"open_interest_usd": 799800.19,
"index_price": 0.37024018,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 0.37020522,
"next_funding_rate": 0.37020522,
"next_funding_rate_timestamp": 1766307424014,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 0.37020522,
"contract_price_currency": "USD"
},
{
"ticker_id": "LTCUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "LTC",
"last_price": 77.13105919,
"base_volume": 1352416.02,
"usd_volume": 1352416.02,
"quote_volume": 1352416.02,
"bid": 77.06912853,
"ask": 77.41079917,
"high": 77.13105919,
"low": 77.06915212,
"product_type": "Perpetual",
"open_interest": 1352416.02,
"open_interest_usd": 1352416.02,
"index_price": 77.43941176,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 77.13105919,
"next_funding_rate": 77.13105919,
"next_funding_rate_timestamp": 1766307424014,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 77.13105919,
"contract_price_currency": "USDT"
},
{
"ticker_id": "XRPUSD_PERP",
"base_currency": "USD",
"quote_currency": "XRP",
"last_price": 1.9269342,
"base_volume": 1308930.35,
"usd_volume": 1308930.35,
"quote_volume": 1308930.35,
"bid": 1.92228001,
"ask": 1.93583246,
"high": 1.9269342,
"low": 1.92172652,
"product_type": "Perpetual",
"open_interest": 1308930.35,
"open_interest_usd": 1308930.35,
"index_price": 1.93631094,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 1.9269342,
"next_funding_rate": 1.9269342,
"next_funding_rate_timestamp": 1766307424016,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 1.9269342,
"contract_price_currency": "USD"
},
{
"ticker_id": "XRPUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "XRP",
"last_price": 1.9255202,
"base_volume": 1082220.61,
"usd_volume": 1082220.61,
"quote_volume": 1082220.61,
"bid": 1.92367079,
"ask": 1.93642723,
"high": 1.9255202,
"low": 1.92247448,
"product_type": "Perpetual",
"open_interest": 1082220.61,
"open_interest_usd": 1082220.61,
"index_price": 1.93728738,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 1.9255202,
"next_funding_rate": 1.9255202,
"next_funding_rate_timestamp": 1766307424016,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 1.9255202,
"contract_price_currency": "USDT"
},
{
"ticker_id": "ETHUSD_PERP",
"base_currency": "USD",
"quote_currency": "ETH",
"last_price": 2975.88189937,
"base_volume": 643640.52,
"usd_volume": 643640.52,
"quote_volume": 643640.52,
"bid": 2973.7094624,
"ask": 2989.00240901,
"high": 2975.88189937,
"low": 2974.5020957,
"product_type": "Perpetual",
"open_interest": 643640.52,
"open_interest_usd": 643640.52,
"index_price": 2990.20541121,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 2975.88189937,
"next_funding_rate": 2975.88189937,
"next_funding_rate_timestamp": 1766307424016,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 2975.88189937,
"contract_price_currency": "USD"
},
{
"ticker_id": "ETHUSD_251226",
"base_currency": "USD",
"quote_currency": "ETH",
"last_price": 2980.40940453,
"base_volume": 1866905.44,
"usd_volume": 1866905.44,
"quote_volume": 1866905.44,
"bid": 2976.99125738,
"ask": 2992.57251578,
"high": 2980.40940453,
"low": 2977.92428079,
"product_type": "Futures",
"open_interest": 1866905.44,
"open_interest_usd": 1866905.44,
"index_price": 2990.14584921,
"creation_timestamp": 1751070232,
"expiry_timestamp": 1766793600,
"funding_rate": 2980.40940453,
"next_funding_rate": 2980.40940453,
"next_funding_rate_timestamp": 1766307424016,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 2980.40940453,
"contract_price_currency": "USD"
},
{
"ticker_id": "BCHUSD_PERP",
"base_currency": "USD",
"quote_currency": "BCH",
"last_price": 592.26203387,
"base_volume": 2908927.34,
"usd_volume": 2908927.34,
"quote_volume": 2908927.34,
"bid": 587.59037191,
"ask": 593.90019793,
"high": 592.99005898,
"low": 592.26198962,
"product_type": "Perpetual",
"open_interest": 2908927.34,
"open_interest_usd": 2908927.34,
"index_price": 588.06185529,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 592.26203387,
"next_funding_rate": 592.26203387,
"next_funding_rate_timestamp": 1766307424016,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 592.26203387,
"contract_price_currency": "USD"
},
{
"ticker_id": "ETHUSD_260327",
"base_currency": "USD",
"quote_currency": "ETH",
"last_price": 3006.19867528,
"base_volume": 2118322.02,
"usd_volume": 2118322.02,
"quote_volume": 2118322.02,
"bid": 3003.31191967,
"ask": 3019.49609391,
"high": 3006.19867528,
"low": 3004.77573384,
"product_type": "Futures",
"open_interest": 2118322.02,
"open_interest_usd": 2118322.02,
"index_price": 2990.20343332,
"creation_timestamp": 1758931461,
"expiry_timestamp": 1774658416,
"funding_rate": 3006.19867528,
"next_funding_rate": 3006.19867528,
"next_funding_rate_timestamp": 1766307424016,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 3006.19867528,
"contract_price_currency": "USD"
},
{
"ticker_id": "XRPUSD_251226",
"base_currency": "USD",
"quote_currency": "XRP",
"last_price": 1.92692441,
"base_volume": 2566359.46,
"usd_volume": 2566359.46,
"quote_volume": 2566359.46,
"bid": 1.92467205,
"ask": 1.93763343,
"high": 1.92692441,
"low": 1.9238805,
"product_type": "Futures",
"open_interest": 2566359.46,
"open_interest_usd": 2566359.46,
"index_price": 1.93623826,
"creation_timestamp": 1751070232,
"expiry_timestamp": 1766793600,
"funding_rate": 1.92692441,
"next_funding_rate": 1.92692441,
"next_funding_rate_timestamp": 1766307424016,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 1.92692441,
"contract_price_currency": "USD"
},
{
"ticker_id": "BTCUSD_260327",
"base_currency": "USD",
"quote_currency": "BTC",
"last_price": 89140.96237403,
"base_volume": 4737045.37,
"usd_volume": 4737045.37,
"quote_volume": 4737045.37,
"bid": 89059.25274168,
"ask": 89481.02940215,
"high": 89140.96237403,
"low": 89091.37674531,
"product_type": "Futures",
"open_interest": 4737045.37,
"open_interest_usd": 4737045.37,
"index_price": 88456.83938131,
"creation_timestamp": 1758931461,
"expiry_timestamp": 1774658416,
"funding_rate": 89140.96237403,
"next_funding_rate": 89140.96237403,
"next_funding_rate_timestamp": 1766307424016,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 89140.96237403,
"contract_price_currency": "USD"
},
{
"ticker_id": "LINKUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "LINK",
"last_price": 12.52515726,
"base_volume": 197085.08,
"usd_volume": 197085.08,
"quote_volume": 197085.08,
"bid": 12.49886828,
"ask": 12.58819759,
"high": 12.52515726,
"low": 12.50379677,
"product_type": "Perpetual",
"open_interest": 197085.08,
"open_interest_usd": 197085.08,
"index_price": 12.59741061,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 12.52515726,
"next_funding_rate": 12.52515726,
"next_funding_rate_timestamp": 1766307424016,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 12.52515726,
"contract_price_currency": "USDT"
},
{
"ticker_id": "BTCUSD_251226",
"base_currency": "USD",
"quote_currency": "BTC",
"last_price": 88262.62640473,
"base_volume": 4629074.02,
"usd_volume": 4629074.02,
"quote_volume": 4629074.02,
"bid": 88241.88175161,
"ask": 88595.84769942,
"high": 88262.62640473,
"low": 88226.17710168,
"product_type": "Futures",
"open_interest": 4629074.02,
"open_interest_usd": 4629074.02,
"index_price": 88456.6003441,
"creation_timestamp": 1751070232,
"expiry_timestamp": 1766793600,
"funding_rate": 88262.62640473,
"next_funding_rate": 88262.62640473,
"next_funding_rate_timestamp": 1766307424016,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 88262.62640473,
"contract_price_currency": "USD"
}
]
The /orderbook/ticker_id endpoint is to provide order book information with at least depth = 100 (50 each side) returned for a given market pair/ticker. See below for specifications of data required for the /orderbook endpoint:
Sample request URL-
Response-
{
"bids": [
[
"12.50379677",
"143.3"
],
[
"12.50284971",
"84.6"
],
[
"12.50278191",
"200.8"
],
[
"12.50276626",
"39.9"
],
[
"12.50275952",
"128.8"
],
[
"12.5018154",
"226.5"
],
[
"12.50181075",
"258.3"
],
[
"12.50177032",
"283.2"
],
[
"12.50083757",
"32.9"
],
[
"12.5007918",
"128.8"
],
[
"12.50078995",
"27.6"
],
[
"12.50075177",
"31.1"
],
[
"12.49886828",
"300.6"
],
[
"12.49883073",
"68"
],
[
"12.49882946",
"207.8"
],
[
"12.49878914",
"230"
],
[
"12.49878565",
"116.1"
],
[
"12.49784731",
"244.6"
],
[
"12.49784004",
"219.8"
],
[
"12.49783783",
"4.8"
],
[
"12.49779179",
"136.8"
],
[
"12.49779044",
"240.5"
],
[
"12.4977764",
"14.9"
],
[
"12.49776499",
"61"
],
[
"12.49687261",
"148.9"
],
[
"12.496847",
"42.7"
],
[
"12.49683314",
"172.9"
],
[
"12.49679408",
"77.7"
],
[
"12.49678642",
"121.6"
],
[
"12.49676029",
"121.3"
],
[
"12.49675458",
"192.9"
],
[
"12.49576932",
"23.5"
],
[
"12.4948745",
"19.5"
],
[
"12.49485701",
"138.9"
],
[
"12.49485197",
"222.4"
],
[
"12.49483723",
"42.1"
],
[
"12.49483557",
"42.6"
],
[
"12.49482857",
"256.6"
],
[
"12.49482567",
"186"
],
[
"12.49479337",
"199.6"
],
[
"12.49479103",
"42.3"
],
[
"12.49478874",
"81.8"
],
[
"12.49478432",
"56.3"
],
[
"12.49478336",
"227.8"
],
[
"12.49477238",
"101.6"
],
[
"12.49476688",
"199.8"
],
[
"12.49476382",
"299.8"
],
[
"12.4947621",
"74.2"
],
[
"12.49475974",
"72.1"
],
[
"12.49475921",
"262"
],
[
"12.49475916",
"304"
],
[
"12.49475759",
"246.2"
],
[
"12.49475449",
"124.8"
],
[
"12.49384389",
"41.4"
],
[
"12.49382801",
"201.5"
],
[
"12.49382783",
"85.8"
],
[
"12.49382277",
"291.6"
],
[
"12.49380961",
"88.8"
],
[
"12.49380784",
"169.8"
],
[
"12.49378915",
"301.7"
],
[
"12.49378306",
"266.9"
],
[
"12.49378277",
"210.7"
],
[
"12.49287497",
"176.2"
],
[
"12.49282632",
"164"
],
[
"12.49277285",
"142.9"
],
[
"12.49275748",
"214.4"
],
[
"12.49275361",
"133.1"
],
[
"12.49186964",
"184.9"
],
[
"12.49185558",
"92.8"
],
[
"12.49185052",
"91.5"
],
[
"12.49184064",
"120.3"
],
[
"12.49181664",
"284.2"
],
[
"12.49180753",
"253.4"
],
[
"12.49180187",
"48.6"
],
[
"12.49180078",
"292.9"
],
[
"12.49179017",
"202.1"
],
[
"12.49175745",
"37.3"
],
[
"12.49175669",
"188.2"
],
[
"12.49175569",
"182.7"
],
[
"12.491754",
"166.8"
],
[
"12.49086508",
"108.6"
],
[
"12.49085647",
"161.5"
],
[
"12.49085366",
"199"
],
[
"12.49085152",
"97.6"
],
[
"12.49084037",
"155"
],
[
"12.49083282",
"103.9"
],
[
"12.49083102",
"144.1"
],
[
"12.49082593",
"227.4"
],
[
"12.49082517",
"17.2"
],
[
"12.49080997",
"150.5"
],
[
"12.49080699",
"13"
],
[
"12.49080547",
"95.6"
],
[
"12.49080494",
"263"
],
[
"12.49077544",
"234.1"
],
[
"12.49077395",
"287.3"
],
[
"12.49077306",
"266"
],
[
"12.49076186",
"103.2"
],
[
"12.49075521",
"13.6"
],
[
"12.48987297",
"275.1"
],
[
"12.48985448",
"34.9"
],
[
"12.48984487",
"59.8"
],
[
"12.48983829",
"272.3"
],
[
"12.48982748",
"215.7"
],
[
"12.48982234",
"91.2"
],
[
"12.48982217",
"51"
],
[
"12.48981461",
"62.3"
],
[
"12.48981324",
"82"
],
[
"12.48979754",
"142.3"
],
[
"12.48979157",
"129"
],
[
"12.48978942",
"204.2"
],
[
"12.48976366",
"251.5"
],
[
"12.48975754",
"139.5"
],
[
"12.48885555",
"125.9"
],
[
"12.48885194",
"269.5"
],
[
"12.4888433",
"243.6"
],
[
"12.48881111",
"220.8"
],
[
"12.48880845",
"277.3"
],
[
"12.48878614",
"230.6"
],
[
"12.48877599",
"238.8"
],
[
"12.48877418",
"31.1"
],
[
"12.48877237",
"12.1"
],
[
"12.48876387",
"250.6"
],
[
"12.48875748",
"183.8"
],
[
"12.48786231",
"217.9"
],
[
"12.48785306",
"223.1"
],
[
"12.48783216",
"56.1"
],
[
"12.48782544",
"174.7"
],
[
"12.48780408",
"230"
],
[
"12.48780224",
"243.4"
],
[
"12.48777923",
"65.2"
],
[
"12.48777676",
"36.6"
],
[
"12.48777018",
"288.2"
],
[
"12.48775894",
"188.6"
],
[
"12.48686637",
"135.5"
],
[
"12.48684647",
"217"
],
[
"12.48682922",
"190.4"
],
[
"12.48682813",
"283.5"
],
[
"12.48680921",
"110.9"
],
[
"12.48680828",
"131.9"
],
[
"12.48680607",
"144.1"
],
[
"12.48680193",
"199.7"
],
[
"12.48679464",
"165.5"
],
[
"12.48679346",
"90.4"
],
[
"12.48679173",
"281.2"
],
[
"12.48678202",
"296.9"
],
[
"12.48677432",
"100.3"
],
[
"12.48675041",
"67.4"
],
[
"12.48581323",
"52.2"
],
[
"12.48487333",
"3.9"
],
[
"12.48486711",
"294.1"
],
[
"12.48483106",
"203.5"
],
[
"12.48482879",
"129.7"
],
[
"12.48482694",
"83.5"
],
[
"12.48482354",
"255.2"
],
[
"12.48386417",
"154.7"
],
[
"12.48385749",
"77.4"
],
[
"12.48382414",
"189.3"
],
[
"12.48376107",
"164.8"
],
[
"12.48283616",
"95.2"
],
[
"12.48283606",
"287"
],
[
"12.48278706",
"185.2"
],
[
"12.48275036",
"269.8"
],
[
"12.48186686",
"243.7"
],
[
"12.48185072",
"103.5"
],
[
"12.48184543",
"13.3"
],
[
"12.48180445",
"71.1"
],
[
"12.48178801",
"100.5"
],
[
"12.48178305",
"265.3"
],
[
"12.48175343",
"27.6"
],
[
"12.48175068",
"284.2"
],
[
"12.4808609",
"242.3"
],
[
"12.48085756",
"146.8"
],
[
"12.48083266",
"127.5"
],
[
"12.48082324",
"160.1"
],
[
"12.48081765",
"141.5"
],
[
"12.48081649",
"65.6"
],
[
"12.48078588",
"164.6"
],
[
"12.48075391",
"293.9"
],
[
"12.47986844",
"204.6"
],
[
"12.47986426",
"23"
],
[
"12.47984084",
"36.8"
],
[
"12.47983754",
"253.8"
],
[
"12.47982546",
"215.1"
],
[
"12.47980788",
"191.9"
],
[
"12.4797717",
"109"
],
[
"12.4797642",
"134"
],
[
"12.47976134",
"172.9"
],
[
"12.47975732",
"267.9"
],
[
"12.47886899",
"266.7"
],
[
"12.47886745",
"209"
],
[
"12.47875439",
"151.6"
],
[
"12.47786371",
"63.2"
],
[
"12.47786302",
"281.9"
],
[
"12.47779805",
"89.3"
],
[
"12.47778829",
"181.9"
],
[
"12.47585527",
"162.5"
],
[
"12.47575918",
"126.6"
],
[
"12.47485292",
"76"
],
[
"12.47480854",
"118.8"
],
[
"12.47480143",
"100.7"
],
[
"12.46985315",
"28"
],
[
"12.46979261",
"53.3"
],
[
"12.46586401",
"18"
],
[
"12.4658204",
"72.3"
],
[
"12.46579227",
"52.4"
],
[
"12.46382891",
"226"
],
[
"12.46287065",
"29.1"
],
[
"12.46283353",
"274.2"
],
[
"12.46281443",
"165.7"
],
[
"12.46279011",
"273.4"
],
[
"12.4627867",
"244.1"
],
[
"12.46276081",
"122.5"
],
[
"12.46085802",
"107.8"
],
[
"12.46082518",
"83.7"
],
[
"12.46076855",
"59.7"
],
[
"12.46076628",
"145.7"
],
[
"12.45787484",
"161.7"
],
[
"12.45784571",
"277.4"
],
[
"12.45780253",
"165.5"
],
[
"12.45779503",
"3.6"
],
[
"12.45684622",
"16.5"
],
[
"12.45678999",
"59.8"
],
[
"12.45676446",
"79.1"
],
[
"12.45279187",
"176.7"
],
[
"12.45276135",
"45.1"
],
[
"12.45185096",
"17.4"
],
[
"12.45184438",
"220.6"
],
[
"12.45181237",
"244.3"
],
[
"12.45180543",
"166"
],
[
"12.44981288",
"75.6"
],
[
"12.44976263",
"232.2"
],
[
"12.44782065",
"221.9"
],
[
"12.44775467",
"176"
],
[
"12.44687439",
"286.1"
],
[
"12.44681799",
"230.9"
],
[
"12.44484271",
"191.6"
],
[
"12.44483545",
"100.1"
],
[
"12.44480711",
"119.3"
],
[
"12.44480644",
"41.3"
],
[
"12.44480124",
"117.4"
],
[
"12.43784468",
"167"
],
[
"12.43782477",
"59.2"
],
[
"12.43778684",
"50.1"
],
[
"12.4377596",
"214.6"
],
[
"12.43686005",
"170.1"
],
[
"12.43678309",
"125"
],
[
"12.43678025",
"145.3"
],
[
"12.43077551",
"55.8"
],
[
"12.43076411",
"226.6"
],
[
"12.42282738",
"9.3"
],
[
"12.42281719",
"56.9"
],
[
"12.42276438",
"298.4"
],
[
"12.4227543",
"165.5"
],
[
"12.42086126",
"300.6"
],
[
"12.42082285",
"51.8"
],
[
"12.42081475",
"144.6"
],
[
"12.42081307",
"183.2"
],
[
"12.42080316",
"159.8"
],
[
"12.40785522",
"196.1"
],
[
"12.40784772",
"291.2"
],
[
"12.40778984",
"224.6"
],
[
"12.40776863",
"3.1"
],
[
"12.40776344",
"40.5"
],
[
"12.40587038",
"288.8"
],
[
"12.40584256",
"182.6"
],
[
"12.40582277",
"172.2"
],
[
"12.40183546",
"303.7"
],
[
"12.4018211",
"86.4"
],
[
"12.40181375",
"174.5"
],
[
"12.40180736",
"114.7"
],
[
"12.40176726",
"57.5"
],
[
"12.39683156",
"44.2"
],
[
"12.39682946",
"213.1"
],
[
"12.39677371",
"97.9"
],
[
"12.39281492",
"179.2"
],
[
"12.3927681",
"94.1"
],
[
"12.39276768",
"297.9"
],
[
"12.38977264",
"105"
],
[
"12.38975483",
"207.5"
],
[
"12.38786327",
"263.2"
],
[
"12.38786327",
"16.3"
],
[
"12.38785009",
"42.8"
],
[
"12.38783367",
"59.9"
],
[
"12.38781732",
"297.4"
],
[
"12.38775909",
"237.7"
],
[
"12.38387206",
"82.6"
],
[
"12.38385286",
"113.5"
],
[
"12.38377979",
"134.9"
],
[
"12.38377133",
"1.2"
]
],
"asks": [
[
"12.52515726",
"285"
],
[
"12.52517444",
"296.5"
],
[
"12.52519684",
"34.5"
],
[
"12.52522686",
"290.8"
],
[
"12.52713438",
"99.8"
],
[
"12.52714405",
"40.7"
],
[
"12.52720484",
"297.5"
],
[
"12.52720504",
"160"
],
[
"12.52813817",
"256"
],
[
"12.52820086",
"209.4"
],
[
"12.52913084",
"83.8"
],
[
"12.52915811",
"216.8"
],
[
"12.52916814",
"200.4"
],
[
"12.52917149",
"209.1"
],
[
"12.52917644",
"156.2"
],
[
"12.52917717",
"77.4"
],
[
"12.52924213",
"146.1"
],
[
"12.53315631",
"80.6"
],
[
"12.53318436",
"209.1"
],
[
"12.53319343",
"261.6"
],
[
"12.53323239",
"31.8"
],
[
"12.53713609",
"148.4"
],
[
"12.53721858",
"172"
],
[
"12.53721883",
"263.3"
],
[
"12.54219037",
"207.2"
],
[
"12.54219753",
"285.8"
],
[
"12.54221102",
"121.4"
],
[
"12.54815276",
"185.6"
],
[
"12.54820557",
"301.8"
],
[
"12.56014039",
"286.8"
],
[
"12.56017597",
"74.1"
],
[
"12.56017672",
"52.1"
],
[
"12.56020178",
"83"
],
[
"12.57018932",
"7.9"
],
[
"12.57113188",
"56.7"
],
[
"12.57115538",
"197.9"
],
[
"12.57122727",
"130.5"
],
[
"12.57123774",
"71.8"
],
[
"12.58214817",
"9.5"
],
[
"12.58216109",
"47.3"
],
[
"12.58216903",
"96.3"
],
[
"12.5822049",
"166.9"
],
[
"12.58222422",
"239.3"
],
[
"12.58314728",
"49.8"
],
[
"12.58318907",
"102.9"
],
[
"12.58321925",
"10.1"
],
[
"12.58323777",
"279.4"
],
[
"12.58325039",
"120.9"
],
[
"12.58414397",
"286.4"
],
[
"12.58415808",
"128.5"
],
[
"12.58418471",
"272.4"
],
[
"12.58419688",
"45.1"
],
[
"12.58521718",
"50.7"
],
[
"12.58612616",
"241"
],
[
"12.58619992",
"107.5"
],
[
"12.58620426",
"43.9"
],
[
"12.58621757",
"220.8"
],
[
"12.58622196",
"105.6"
],
[
"12.58623109",
"17.2"
],
[
"12.58817016",
"117.3"
],
[
"12.58818526",
"137.5"
],
[
"12.58819759",
"28.2"
],
[
"12.59113355",
"103.3"
],
[
"12.59116707",
"115.3"
],
[
"12.59119462",
"8.6"
],
[
"12.59123147",
"75.1"
],
[
"12.59124912",
"98.1"
],
[
"12.59515981",
"99.8"
],
[
"12.59519451",
"94.2"
],
[
"12.59521275",
"216"
],
[
"12.59613668",
"199.7"
],
[
"12.5961829",
"228.4"
],
[
"12.59624933",
"145.8"
],
[
"12.59818578",
"34.3"
],
[
"12.59818596",
"30.3"
],
[
"12.59824153",
"136.8"
],
[
"12.60418902",
"266.2"
],
[
"12.60721598",
"130.6"
],
[
"12.60722408",
"299.5"
],
[
"12.60722475",
"54.3"
],
[
"12.60723248",
"43.9"
],
[
"12.60816417",
"246.7"
],
[
"12.60821704",
"162.4"
],
[
"12.60822368",
"154.4"
],
[
"12.6091426",
"241.5"
],
[
"12.60919739",
"61.6"
],
[
"12.60924063",
"24"
],
[
"12.61012827",
"46.5"
],
[
"12.61013263",
"51.3"
],
[
"12.61014399",
"126.2"
],
[
"12.61015483",
"72.5"
],
[
"12.61015494",
"192.4"
],
[
"12.61017128",
"81"
],
[
"12.61017839",
"9"
],
[
"12.61019763",
"192.8"
],
[
"12.61021622",
"287.9"
],
[
"12.61022763",
"100"
],
[
"12.61024187",
"266.5"
],
[
"12.61119707",
"301"
],
[
"12.61124352",
"76.3"
],
[
"12.61124825",
"124.9"
],
[
"12.61715286",
"211.7"
],
[
"12.61715933",
"50.6"
],
[
"12.6171717",
"278.5"
],
[
"12.61717358",
"237.9"
],
[
"12.61717882",
"288"
],
[
"12.61719278",
"6.9"
],
[
"12.61721084",
"213.2"
],
[
"12.61723065",
"235.4"
],
[
"12.61723233",
"273.2"
],
[
"12.61724468",
"59"
],
[
"12.61724648",
"133.7"
],
[
"12.61813105",
"294.2"
],
[
"12.6181369",
"198.6"
],
[
"12.61813921",
"305.7"
],
[
"12.61818771",
"91.4"
],
[
"12.61821333",
"250"
],
[
"12.6182244",
"116.3"
],
[
"12.61822556",
"1.3"
],
[
"12.6201342",
"77.3"
],
[
"12.62016128",
"50.2"
],
[
"12.62020907",
"37.6"
],
[
"12.62021799",
"160.2"
],
[
"12.62022455",
"214.5"
],
[
"12.62213596",
"155.6"
],
[
"12.62219485",
"38.9"
],
[
"12.6222468",
"28.2"
],
[
"12.62312786",
"47.2"
],
[
"12.62314947",
"169.3"
],
[
"12.62316509",
"28.3"
],
[
"12.62318804",
"225.7"
],
[
"12.62323293",
"293.5"
],
[
"12.62325159",
"183.8"
],
[
"12.62513419",
"231.8"
],
[
"12.6251515",
"6.9"
],
[
"12.62515222",
"129.3"
],
[
"12.62516655",
"117.2"
],
[
"12.62517353",
"102.8"
],
[
"12.62517579",
"296.6"
],
[
"12.62520634",
"243.4"
],
[
"12.62522196",
"72.9"
],
[
"12.62522319",
"129.4"
],
[
"12.62523014",
"41.8"
],
[
"12.62524491",
"236.2"
],
[
"12.62618186",
"104.6"
],
[
"12.62620921",
"65"
],
[
"12.62624577",
"28.2"
],
[
"12.62624809",
"135.5"
],
[
"12.62715735",
"288.8"
],
[
"12.62717416",
"23.9"
],
[
"12.62719091",
"236.7"
],
[
"12.62720519",
"272.8"
],
[
"12.62815273",
"300.9"
],
[
"12.62815556",
"51.6"
],
[
"12.62818082",
"135"
],
[
"12.6282089",
"271.8"
],
[
"12.63014677",
"88.7"
],
[
"12.63019939",
"218.3"
],
[
"12.63112799",
"54.5"
],
[
"12.63116461",
"292.6"
],
[
"12.63118621",
"134"
],
[
"12.6311994",
"116.7"
],
[
"12.63214443",
"128.6"
],
[
"12.63222347",
"158.9"
],
[
"12.6322396",
"4.3"
],
[
"12.63315792",
"212.3"
],
[
"12.63316759",
"89.3"
],
[
"12.63317705",
"100.9"
],
[
"12.63318054",
"96.3"
],
[
"12.63318216",
"258.4"
],
[
"12.63319285",
"207.5"
],
[
"12.635238",
"116.6"
],
[
"12.63918776",
"246.9"
],
[
"12.63920036",
"262.7"
],
[
"12.64113229",
"113.1"
],
[
"12.64119689",
"163.6"
],
[
"12.64123366",
"267.7"
],
[
"12.64521429",
"21.5"
],
[
"12.6452275",
"203.4"
],
[
"12.64622673",
"27.6"
],
[
"12.64717253",
"96.3"
],
[
"12.64722671",
"236.2"
],
[
"12.6472506",
"122.7"
],
[
"12.64816045",
"34.8"
],
[
"12.64819719",
"296.4"
],
[
"12.64820664",
"9.8"
],
[
"12.6482135",
"153.2"
],
[
"12.64821647",
"157.6"
],
[
"12.64822709",
"232.5"
],
[
"12.64914409",
"294.7"
],
[
"12.64914648",
"77.5"
],
[
"12.64914683",
"37.4"
],
[
"12.64915871",
"32.5"
],
[
"12.64916307",
"38.1"
],
[
"12.64917497",
"83.8"
],
[
"12.64918103",
"37.7"
],
[
"12.64919377",
"188.4"
],
[
"12.64919394",
"139.6"
],
[
"12.64921971",
"227.4"
],
[
"12.64923429",
"225.4"
],
[
"12.6501292",
"181.5"
],
[
"12.65017235",
"223.7"
],
[
"12.65018389",
"161.9"
],
[
"12.65018733",
"211.1"
],
[
"12.65019079",
"144.6"
],
[
"12.65019915",
"162.1"
],
[
"12.65112685",
"252.9"
],
[
"12.65112797",
"66.4"
],
[
"12.65113407",
"4.6"
],
[
"12.65115622",
"240.5"
],
[
"12.65117101",
"128.2"
],
[
"12.65117215",
"242.5"
],
[
"12.65119404",
"19.9"
],
[
"12.65120712",
"14.4"
],
[
"12.65121604",
"106.8"
],
[
"12.65121964",
"142.3"
],
[
"12.65122296",
"23.9"
],
[
"12.65122754",
"191"
],
[
"12.65512738",
"89.4"
],
[
"12.6551328",
"161.2"
],
[
"12.65516776",
"301.4"
],
[
"12.65521494",
"259.9"
],
[
"12.65521915",
"2.2"
],
[
"12.65612745",
"33.5"
],
[
"12.65613729",
"72.5"
],
[
"12.65615117",
"151.5"
],
[
"12.65617942",
"53.5"
],
[
"12.65618029",
"130"
],
[
"12.65618443",
"62.7"
],
[
"12.65618741",
"8.3"
],
[
"12.65624198",
"1.2"
],
[
"12.65624313",
"189.3"
],
[
"12.65715751",
"242.3"
],
[
"12.65716106",
"94.8"
],
[
"12.65716273",
"38.9"
],
[
"12.65717934",
"205.3"
],
[
"12.65718036",
"131.2"
],
[
"12.65718162",
"51.8"
],
[
"12.65718731",
"23.6"
],
[
"12.65721083",
"41.9"
],
[
"12.6572161",
"42.3"
],
[
"12.65722829",
"250.8"
],
[
"12.65723463",
"149.4"
],
[
"12.65724686",
"10.5"
],
[
"12.65817836",
"283.6"
],
[
"12.6581805",
"231.2"
],
[
"12.65818141",
"190.6"
],
[
"12.6581834",
"242.2"
],
[
"12.65820057",
"304"
],
[
"12.65820663",
"148.4"
],
[
"12.65824409",
"219"
],
[
"12.65824658",
"199.5"
],
[
"12.65913566",
"94.3"
],
[
"12.65914397",
"187.7"
],
[
"12.65916057",
"177.8"
],
[
"12.65917148",
"202.4"
],
[
"12.659181",
"172.8"
],
[
"12.65920013",
"155.4"
],
[
"12.65920264",
"98.5"
],
[
"12.65921006",
"14.5"
],
[
"12.65921203",
"147.5"
],
[
"12.65923585",
"14.9"
],
[
"12.66015355",
"237.5"
],
[
"12.66118702",
"82.1"
],
[
"12.66121797",
"171.9"
],
[
"12.66122195",
"57.8"
],
[
"12.66213097",
"301.7"
],
[
"12.66214585",
"27"
],
[
"12.66218583",
"151.8"
],
[
"12.66224438",
"159.9"
],
[
"12.66313534",
"55.5"
],
[
"12.66314483",
"127.9"
],
[
"12.66315206",
"49.8"
],
[
"12.66315417",
"260.8"
],
[
"12.66315496",
"114"
],
[
"12.66315932",
"96.7"
],
[
"12.66316894",
"106.2"
],
[
"12.66317074",
"165"
],
[
"12.66317422",
"152.3"
],
[
"12.66318826",
"174.8"
],
[
"12.66319515",
"38.8"
],
[
"12.66321564",
"73.7"
],
[
"12.66413491",
"113.1"
],
[
"12.66419195",
"97.6"
],
[
"12.66424373",
"39.5"
],
[
"12.66512877",
"140.7"
],
[
"12.6651407",
"147.5"
],
[
"12.66514171",
"108.9"
],
[
"12.66518793",
"1.5"
],
[
"12.66521137",
"71.1"
],
[
"12.66523845",
"249.5"
],
[
"12.66525295",
"60.9"
],
[
"12.66613368",
"300.3"
],
[
"12.66615455",
"262.6"
],
[
"12.66714935",
"289.1"
],
[
"12.66720399",
"51.7"
],
[
"12.66720854",
"47.3"
],
[
"12.66724093",
"153.5"
],
[
"12.66815432",
"132.5"
],
[
"12.66816575",
"211.6"
],
[
"12.66817514",
"276.7"
],
[
"12.66823721",
"254.9"
],
[
"12.66823853",
"175.5"
],
[
"12.66824519",
"127.7"
],
[
"12.668249",
"264.7"
],
[
"12.66913701",
"160.3"
],
[
"12.66913939",
"66.2"
],
[
"12.66916163",
"200.5"
],
[
"12.66918411",
"237.6"
],
[
"12.67013773",
"136.9"
],
[
"12.67023957",
"196.9"
],
[
"12.67115308",
"202.6"
],
[
"12.67120176",
"264.5"
],
[
"12.67121229",
"112.4"
],
[
"12.67122836",
"61.7"
],
[
"12.67122964",
"222.8"
],
[
"12.67124893",
"283.8"
],
[
"12.67125018",
"68"
],
[
"12.67213313",
"241.3"
],
[
"12.67214704",
"127.4"
],
[
"12.67216318",
"204.2"
],
[
"12.67218328",
"292.3"
],
[
"12.67221831",
"169.8"
],
[
"12.67221987",
"100.7"
],
[
"12.67222318",
"139.4"
],
[
"12.67224104",
"285.7"
],
[
"12.67312765",
"305.1"
],
[
"12.67315829",
"96.8"
],
[
"12.67317291",
"230"
],
[
"12.67317484",
"61.8"
],
[
"12.67319767",
"201.1"
],
[
"12.67322371",
"261.7"
],
[
"12.67414804",
"10.1"
],
[
"12.67415076",
"167.7"
],
[
"12.67415356",
"210.5"
],
[
"12.6741544",
"226.5"
],
[
"12.67415941",
"217.6"
],
[
"12.67416922",
"121"
],
[
"12.67416977",
"228.2"
],
[
"12.67416992",
"199.6"
],
[
"12.67417578",
"304.1"
],
[
"12.67419401",
"152.9"
],
[
"12.6741964",
"240.3"
],
[
"12.67419863",
"10.7"
],
[
"12.67420003",
"57.3"
],
[
"12.67421548",
"76.5"
],
[
"12.67421998",
"238.4"
],
[
"12.67422685",
"41.4"
],
[
"12.67515101",
"153.7"
],
[
"12.67515126",
"221.5"
],
[
"12.67515757",
"87.5"
],
[
"12.67516026",
"202.9"
],
[
"12.67516963",
"225.4"
],
[
"12.67520137",
"91.2"
],
[
"12.67522229",
"28.1"
],
[
"12.67523065",
"61.7"
],
[
"12.67613451",
"214.5"
],
[
"12.67616406",
"9.4"
],
[
"12.67617868",
"159.9"
],
[
"12.67622481",
"75.1"
],
[
"12.67623267",
"285.3"
],
[
"12.67623542",
"246.5"
],
[
"12.67914344",
"167"
],
[
"12.67915771",
"142.8"
],
[
"12.67916506",
"92.4"
],
[
"12.67918668",
"202.4"
],
[
"12.67919742",
"95.9"
],
[
"12.67919759",
"70.1"
],
[
"12.6791995",
"207.4"
],
[
"12.6792267",
"68.5"
],
[
"12.67922933",
"44.3"
],
[
"12.6792428",
"69.3"
],
[
"12.67924694",
"250.4"
],
[
"12.68022431",
"18.4"
],
[
"12.68023048",
"192.2"
],
[
"12.68024823",
"303.6"
],
[
"12.68025346",
"57.1"
],
[
"12.68114816",
"106.8"
],
[
"12.68116581",
"189.3"
],
[
"12.68120122",
"198"
],
[
"12.68121234",
"263.5"
],
[
"12.68122817",
"17.3"
],
[
"12.6812364",
"170.2"
],
[
"12.68216972",
"100.2"
],
[
"12.68218647",
"188.9"
],
[
"12.68220173",
"297.9"
],
[
"12.6822123",
"171.3"
],
[
"12.68221407",
"109.4"
],
[
"12.6851587",
"198.7"
],
[
"12.68524213",
"104.7"
],
[
"12.68621427",
"237.6"
],
[
"12.68624916",
"17.5"
],
[
"12.68822602",
"83"
],
[
"12.69214658",
"294.5"
],
[
"12.6921541",
"55.9"
],
[
"12.69216318",
"151.4"
],
[
"12.69417788",
"157.9"
],
[
"12.69419691",
"153.9"
],
[
"12.69420894",
"14.9"
],
[
"12.69513333",
"175.7"
],
[
"12.69515523",
"60"
],
[
"12.69522324",
"268.4"
],
[
"12.69522536",
"267.2"
],
[
"12.69523884",
"133.5"
],
[
"12.70017272",
"165.1"
],
[
"12.70017354",
"124.4"
],
[
"12.70021935",
"83.8"
],
[
"12.70023302",
"73.2"
]
],
"timestamp": "1766307424",
"ticker_id": "LINKUSDT_PERP"
}

