aws / aws-sdk-net

The official AWS SDK for .NET. For more information on the AWS SDK for .NET, see our web site:

Home Page:http://aws.amazon.com/sdkfornet/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Amazon.S3.AmazonS3Exception (Error making request with Error Code Forbidden and Http Status Code Forbidden) with Polygon.io

vicsharp-shibusa opened this issue · comments

Describe the bug

I've got an Xunit test below that demonstrates the problem. The code to list the objects in the S3 bucket works fine - I get the list of keys, but when I go to get the object, I get the following error:

Amazon.S3.AmazonS3Exception: Error making request with Error Code Forbidden and Http Status Code Forbidden. No further error information was returned by the service.

If I use the aws CLI, it works fine.

aws configure set aws_access_key_id access_key
aws configure set aws_secret_access_key secret_key

aws s3 ls s3://bucketname/ --endpoint-url https://files.url.io

aws s3 cp s3://bucketname/prefix/file.gz . --endpoint-url https://files.url.io

I'm not sure what I'm missing; can someone help me understand what I've done wrong here?

using Amazon.S3;
using Amazon.S3.Model;
using Xunit.Abstractions;

...

    [Fact]
    public async Task Test2()
    {
        var credentials = new Amazon.Runtime.BasicAWSCredentials("access_key", "secret_key");
        var config = new AmazonS3Config
        {
            ServiceURL = "https://files.url.io/",
            UseHttp = true,
            ForcePathStyle = true,
            SignatureVersion = "V4"
        };

        var s3Client = new AmazonS3Client(credentials, config);

        List<string> keys = new(500);

        // this block works as expected
        try
        {
            ListObjectsV2Request request = new ListObjectsV2Request
            {
                BucketName = "bucketname"
            };

            ListObjectsV2Response response;
            do
            {
                response = await s3Client.ListObjectsV2Async(request);

                foreach (S3Object obj in response.S3Objects)
                {
                    if (!obj.Key.StartsWith("prefix"))
                    {
                        continue;
                    }
                    keys.Add(obj.Key);
                }

                request.ContinuationToken = response.NextContinuationToken;
            } while (response.IsTruncated);
        }
        catch (AmazonS3Exception e)
        {
            _output.WriteLine("Error encountered: {0}", e.ToString());
        }
        catch (Exception e)
        {
            _output.WriteLine("Unknown error encountered: {0}", e.ToString());
        }

        foreach (var key in keys)
        {
            // this block fails with the error identified above.
            try
            {
                GetObjectRequest request = new GetObjectRequest
                {
                    BucketName = "bucketname",
                    Key = key
                };

                var targetFileName = key.Split('/').Last();

                //using (GetObjectResponse response = await s3Client.GetObjectAsync(request)

                // THIS IS WHERE THE ERROR OCCURS
                using (GetObjectResponse response = await s3Client.GetObjectAsync(request.BucketName,
                    request.Key, CancellationToken.None))
                using (Stream responseStream = response.ResponseStream)
                using (FileStream fileStream = File.Create(targetFileName))
                {
                    await responseStream.CopyToAsync(fileStream);
                }

                _output.WriteLine($"File downloaded successfully.");
            }
            catch (AmazonS3Exception e)
            {
                _output.WriteLine("Error encountered: {0}", e.ToString());
                break;
            }
            catch (Exception e)
            {
                _output.WriteLine("Unknown error encountered: {0}", e.ToString());
                break;
            }
        }
    }

Expected Behavior

I expect the object to be downloaded.

Current Behavior

Amazon.S3.AmazonS3Exception: Error making request with Error Code Forbidden and Http Status Code Forbidden. No further error information was returned by the service.

Reproduction Steps

Run the test above with appropriate keys.

Possible Solution

No response

Additional Information/Context

No response

AWS .NET SDK and/or Package version used

Targeted .NET Platform

.NET 8

Operating System and version

Windows 11

What's is https://files.url.io? I assume it's not the actual S3 endpoint, so could you confirm the error happens if no custom service URL is specified? (By the way, in your example UseHttp will have no effect - it's ignored if an explicit ServiceURL is specified).

You can also enable detailed logging (if sharing those logs here, please make sure not to include any sensitive data):

AWSConfigs.LoggingConfig.LogTo = LoggingOptions.Console;
AWSConfigs.LoggingConfig.LogMetricsFormat = LogMetricsFormatOption.JSON;
AWSConfigs.LoggingConfig.LogResponses = ResponseLoggingOption.Always;
AWSConfigs.LoggingConfig.LogMetrics = true;

var config = new AmazonS3Config { ... };
var s3Client = new AmazonS3Client(credentials, config);

@dscpinheiro The url is actually https://files.polygon.io

@dscpinheiro Here are the logs. Looks like it might be an issue with the Region . . . ?? Polygon.io doesn't specify a region in their instructions.

EnvironmentVariableInternalConfiguration 1|2024-04-08T22:57:33.734Z|INFO|The environment variable AWS_ENABLE_ENDPOINT_DISCOVERY was not set with a value.
EnvironmentVariableInternalConfiguration 2|2024-04-08T22:57:33.747Z|INFO|The environment variable AWS_MAX_ATTEMPTS was not set with a value.
EnvironmentVariableInternalConfiguration 3|2024-04-08T22:57:33.747Z|INFO|The environment variable AWS_RETRY_MODE was not set with a value.
EnvironmentVariableInternalConfiguration 4|2024-04-08T22:57:33.748Z|INFO|The environment variable AWS_EC2_METADATA_SERVICE_ENDPOINT was not set with a value.
EnvironmentVariableInternalConfiguration 5|2024-04-08T22:57:33.748Z|INFO|The environment variable AWS_EC2_METADATA_SERVICE_ENDPOINT_MODE was not set with a value.
EnvironmentVariableInternalConfiguration 6|2024-04-08T22:57:33.750Z|INFO|The environment variable AWS_EC2_METADATA_V1_DISABLED was not set with a value.
EnvironmentVariableInternalConfiguration 7|2024-04-08T22:57:33.750Z|INFO|The environment variable AWS_USE_DUALSTACK_ENDPOINT was not set with a value.
EnvironmentVariableInternalConfiguration 8|2024-04-08T22:57:33.750Z|INFO|The environment variable AWS_USE_FIPS_ENDPOINT was not set with a value.
EnvironmentVariableInternalConfiguration 9|2024-04-08T22:57:33.750Z|INFO|The environment variable AWS_IGNORE_CONFIGURED_ENDPOINT_URLS was not set with a value.
EnvironmentVariableInternalConfiguration 10|2024-04-08T22:57:33.750Z|INFO|The environment variable AWS_DISABLE_REQUEST_COMPRESSION was not set with a value.
EnvironmentVariableInternalConfiguration 11|2024-04-08T22:57:33.750Z|INFO|The environment variable AWS_REQUEST_MIN_COMPRESSION_SIZE_BYTES was not set with a value.
EnvironmentVariableInternalConfiguration 12|2024-04-08T22:57:33.750Z|INFO|The environment variable AWS_SDK_UA_APP_ID was not set with a value.
ProfileInternalConfiguration 13|2024-04-08T22:57:33.764Z|INFO|There is no defaults_mode set in the profile named 'default' in store Amazon.Runtime.CredentialManagement.CredentialProfileStoreChain
ProfileInternalConfiguration 14|2024-04-08T22:57:33.764Z|INFO|There is no endpoint_discovery_enabled set in the profile named 'default' in store Amazon.Runtime.CredentialManagement.CredentialProfileStoreChain
ProfileInternalConfiguration 15|2024-04-08T22:57:33.764Z|INFO|There is no retry_mode set in the profile named 'default' in store Amazon.Runtime.CredentialManagement.CredentialProfileStoreChain
ProfileInternalConfiguration 16|2024-04-08T22:57:33.764Z|INFO|There is no max_attempts set in the profile named 'default' in store Amazon.Runtime.CredentialManagement.CredentialProfileStoreChain
ProfileInternalConfiguration 17|2024-04-08T22:57:33.764Z|INFO|There is no ec2_metadata_service_endpoint set in the profile named 'default' in store Amazon.Runtime.CredentialManagement.CredentialProfileStoreChain
ProfileInternalConfiguration 18|2024-04-08T22:57:33.764Z|INFO|There is no ec2_metadata_service_endpoint_mode set in the profile named 'default' in store Amazon.Runtime.CredentialManagement.CredentialProfileStoreChain
ProfileInternalConfiguration 19|2024-04-08T22:57:33.764Z|INFO|There is no ec2_metadata_v1_disabled set in the profile named 'default' in store Amazon.Runtime.CredentialManagement.CredentialProfileStoreChain
ProfileInternalConfiguration 20|2024-04-08T22:57:33.764Z|INFO|There is no use_dualstack_endpoint set in the profile named 'default' in store Amazon.Runtime.CredentialManagement.CredentialProfileStoreChain
ProfileInternalConfiguration 21|2024-04-08T22:57:33.764Z|INFO|There is no use_fips_endpoint set in the profile named 'default' in store Amazon.Runtime.CredentialManagement.CredentialProfileStoreChain
ProfileInternalConfiguration 22|2024-04-08T22:57:33.764Z|INFO|ignore_configured_endpoint_urls found in profile 'default' in store Amazon.Runtime.CredentialManagement.CredentialProfileStoreChain
ProfileInternalConfiguration 23|2024-04-08T22:57:33.764Z|INFO|There is no endpoint_url set in the profile named 'default' in store Amazon.Runtime.CredentialManagement.CredentialProfileStoreChain
ProfileInternalConfiguration 24|2024-04-08T22:57:33.764Z|INFO|There is no disable_request_compression set in the profile named 'default' in store Amazon.Runtime.CredentialManagement.CredentialProfileStoreChain
ProfileInternalConfiguration 25|2024-04-08T22:57:33.764Z|INFO|There is no request_min_compression_size_bytes set in the profile named 'default' in store Amazon.Runtime.CredentialManagement.CredentialProfileStoreChain
ProfileInternalConfiguration 26|2024-04-08T22:57:33.764Z|INFO|There is no sdk_ua_app_id set in the profile named 'default' in store Amazon.Runtime.CredentialManagement.CredentialProfileStoreChain
DefaultConfigurationProvider 27|2024-04-08T22:57:33.765Z|INFO|Resolved DefaultConfigurationMode for RegionEndpoint [] to [Legacy].
RegionFinder 28|2024-04-08T22:57:33.815Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 29|2024-04-08T22:57:33.822Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 30|2024-04-08T22:57:33.846Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 31|2024-04-08T22:57:42.619Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_crypto/day_aggs_v1/2013/11/2013-11-04.csv.gz</Key><LastModified>2023-10-18T01:50:32.298Z</LastModified><ETag>&quot;02ba41035d34cd5df30c5ee2564df075&quot;</ETag><Size>160</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/day_aggs_v1/2013/11/2013-11-05.csv.gz</Key><LastModified>2023-10-18T01:50:31.617Z</LastModified><ETag>&quot;d151e8977326d4fa7b606739439b7efd&quot;</ETag><Size>148</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/day_aggs_v1/2013/11/2013-11-06.csv.gz</Key><LastModified>2023-10-18T01:50:31.201Z</LastModified><ETag>&quot;d78cbf531d02459998d295d65ce3504e&quot;</ETag><Size>143</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/day]
AmazonS3Client 32|2024-04-08T22:57:42.628Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\nlist-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035733Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035733Z\n20240409/us-east-1/s3/aws4_request\n69467e7269b15f8cfcbadf9922ca911daceb54bc5020ee8d06f821e7ec16ee2f","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx0000000f4b6b4803b704e-006614bcad-3cc386df-us-east-1"},"timings":{"CredentialsRequestTime":0.4627,"RequestSigningTime":10.7743,"HttpRequestTime":8652.7196,"ResponseUnmarshallTime":101.7004,"ResponseProcessingTime":109.1905,"ClientExecuteTime":8850.5944},"counters":{}}
RegionFinder 33|2024-04-08T22:57:42.629Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 34|2024-04-08T22:57:42.629Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 35|2024-04-08T22:57:42.630Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 36|2024-04-08T22:57:42.734Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_crypto/day_aggs_v1/2016/04/2016-04-02.csv.gz</Key><LastModified>2023-10-18T01:39:30.940Z</LastModified><ETag>&quot;a0645205b19d0ef765b7d4ae5f72ccde&quot;</ETag><Size>211</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/day_aggs_v1/2016/04/2016-04-03.csv.gz</Key><LastModified>2023-10-18T01:39:29.820Z</LastModified><ETag>&quot;022daadf2d757edc41006d703585b511&quot;</ETag><Size>212</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/day_aggs_v1/2016/04/2016-04-04.csv.gz</Key><LastModified>2023-10-18T01:39:29.648Z</LastModified><ETag>&quot;0f78f2f2331a46c8d1a606c80c3f394f&quot;</ETag><Size>212</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/day]
AmazonS3Client 37|2024-04-08T22:57:42.734Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_crypto%2Fday_aggs_v1%2F2016%2F04%2F2016-04-01.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035742Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035742Z\n20240409/us-east-1/s3/aws4_request\n91016beecb99f0558751bd1fe0a86722a618259c18554bb9a06d7e200ca1b280","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000f94578109a88f817-006614bcb6-3cc386df-us-east-1"},"timings":{"CredentialsRequestTime":0.004,"RequestSigningTime":0.502,"HttpRequestTime":51.9706,"ResponseUnmarshallTime":51.7244,"ResponseProcessingTime":52.054,"ClientExecuteTime":105.812},"counters":{}}
RegionFinder 38|2024-04-08T22:57:42.734Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 39|2024-04-08T22:57:42.734Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 40|2024-04-08T22:57:42.735Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 41|2024-04-08T22:57:42.823Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_crypto/day_aggs_v1/2018/12/2018-12-28.csv.gz</Key><LastModified>2023-12-07T15:00:26.105Z</LastModified><ETag>&quot;0c91053fa34dce46f684e3f9cd94a4df&quot;</ETag><Size>4002</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/day_aggs_v1/2018/12/2018-12-29.csv.gz</Key><LastModified>2023-12-07T15:00:27.316Z</LastModified><ETag>&quot;c6d5f5d5a44464dd54767e221843e523&quot;</ETag><Size>3880</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/day_aggs_v1/2018/12/2018-12-30.csv.gz</Key><LastModified>2023-12-07T15:00:25.179Z</LastModified><ETag>&quot;1a0de434af9bb23e29290de0973f2575&quot;</ETag><Size>3734</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/]
AmazonS3Client 42|2024-04-08T22:57:42.823Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_crypto%2Fday_aggs_v1%2F2018%2F12%2F2018-12-27.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035742Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035742Z\n20240409/us-east-1/s3/aws4_request\ne96d9034780f241ffad5c0f50b7af55d7978dfc393092f2276b33d91c1238e3b","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000ce2f4d7fce584afb-006614bcb6-3cc386df-us-east-1"},"timings":{"CredentialsRequestTime":0.0036,"RequestSigningTime":0.2226,"HttpRequestTime":36.6096,"ResponseUnmarshallTime":50.9862,"ResponseProcessingTime":51.1882,"ClientExecuteTime":88.4987},"counters":{}}
RegionFinder 43|2024-04-08T22:57:42.823Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 44|2024-04-08T22:57:42.823Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 45|2024-04-08T22:57:42.823Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 46|2024-04-08T22:57:42.911Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_crypto/day_aggs_v1/2021/09/2021-09-23.csv.gz</Key><LastModified>2023-12-07T07:10:13.647Z</LastModified><ETag>&quot;006bf32c8e3022546d7bc2e99da80d97&quot;</ETag><Size>4915</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/day_aggs_v1/2021/09/2021-09-24.csv.gz</Key><LastModified>2023-12-07T07:10:13.210Z</LastModified><ETag>&quot;767c289bd8d5bb9afe0cce802d3e4235&quot;</ETag><Size>4974</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/day_aggs_v1/2021/09/2021-09-25.csv.gz</Key><LastModified>2023-12-07T07:00:22.759Z</LastModified><ETag>&quot;108572d12b40053a992b04b5f0fc9e56&quot;</ETag><Size>4882</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/]
AmazonS3Client 47|2024-04-08T22:57:42.911Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_crypto%2Fday_aggs_v1%2F2021%2F09%2F2021-09-22.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035742Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035742Z\n20240409/us-east-1/s3/aws4_request\n168531ce0dd64db6bd5382d8a262540911ffc491d3034927c50f31ae80bb6a1b","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000d8bdc42ec2423165-006614bcb5-3c9fcc19-us-east-1"},"timings":{"CredentialsRequestTime":0.0036,"RequestSigningTime":0.2247,"HttpRequestTime":41.1833,"ResponseUnmarshallTime":45.8016,"ResponseProcessingTime":45.9973,"ClientExecuteTime":87.8903},"counters":{}}
RegionFinder 48|2024-04-08T22:57:42.911Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 49|2024-04-08T22:57:42.911Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 50|2024-04-08T22:57:42.912Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 51|2024-04-08T22:57:42.993Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_crypto/minute_aggs_v1/2014/01/2014-01-14.csv.gz</Key><LastModified>2023-10-18T02:55:03.476Z</LastModified><ETag>&quot;dc119da98bd5455052ae05fd4b2f1dab&quot;</ETag><Size>1012</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/minute_aggs_v1/2014/01/2014-01-15.csv.gz</Key><LastModified>2023-10-18T02:55:03.252Z</LastModified><ETag>&quot;cf45a3317be221dffe62d4a1b337c666&quot;</ETag><Size>635</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/minute_aggs_v1/2014/01/2014-01-16.csv.gz</Key><LastModified>2023-10-18T02:55:02.946Z</LastModified><ETag>&quot;3c76c421c3094f92acae579a6ec631aa&quot;</ETag><Size>1967</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global]
AmazonS3Client 52|2024-04-08T22:57:42.993Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_crypto%2Fminute_aggs_v1%2F2014%2F01%2F2014-01-13.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035742Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035742Z\n20240409/us-east-1/s3/aws4_request\nf0d2e91a20140ae8de1dfce17a56416fa80dae799f915e1c77d5d9de60306db5","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000351ab63884f84f99-006614bcb6-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.0038,"RequestSigningTime":0.2484,"HttpRequestTime":35.9333,"ResponseUnmarshallTime":45.0393,"ResponseProcessingTime":45.2804,"ClientExecuteTime":81.9436},"counters":{}}
RegionFinder 53|2024-04-08T22:57:42.993Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 54|2024-04-08T22:57:42.993Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 55|2024-04-08T22:57:42.994Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 56|2024-04-08T22:57:43.080Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_crypto/minute_aggs_v1/2016/10/2016-10-17.csv.gz</Key><LastModified>2023-10-18T02:48:21.158Z</LastModified><ETag>&quot;65ae86472e200899cb9d517a275eccaf&quot;</ETag><Size>10250</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/minute_aggs_v1/2016/10/2016-10-18.csv.gz</Key><LastModified>2023-10-18T02:48:21.302Z</LastModified><ETag>&quot;ce9c6975b316278c99bbe512584d70e7&quot;</ETag><Size>7987</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/minute_aggs_v1/2016/10/2016-10-19.csv.gz</Key><LastModified>2023-10-18T02:48:20.474Z</LastModified><ETag>&quot;7984dab155302011880744bc2b4c8693&quot;</ETag><Size>8969</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>glob]
AmazonS3Client 57|2024-04-08T22:57:43.081Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_crypto%2Fminute_aggs_v1%2F2016%2F10%2F2016-10-16.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035742Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035742Z\n20240409/us-east-1/s3/aws4_request\nf56dced1885a6b9c211bbfa92a6cf05fa372b0397f2dce5fbfdb454a0016983c","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000d29751e34ea87ec3-006614bcb6-3cf5d91c-us-east-1"},"timings":{"CredentialsRequestTime":0.0034,"RequestSigningTime":0.2111,"HttpRequestTime":38.5395,"ResponseUnmarshallTime":47.8217,"ResponseProcessingTime":48.0025,"ClientExecuteTime":87.1981},"counters":{}}
RegionFinder 58|2024-04-08T22:57:43.081Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 59|2024-04-08T22:57:43.081Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 60|2024-04-08T22:57:43.081Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 61|2024-04-08T22:57:43.214Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_crypto/minute_aggs_v1/2019/07/2019-07-14.csv.gz</Key><LastModified>2023-12-07T13:30:19.926Z</LastModified><ETag>&quot;35b3562f322821cd7be67893649329d6&quot;</ETag><Size>1151779</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/minute_aggs_v1/2019/07/2019-07-15.csv.gz</Key><LastModified>2023-12-07T13:30:19.099Z</LastModified><ETag>&quot;b4018968777b14592c24039b36b6710d&quot;</ETag><Size>1194899</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/minute_aggs_v1/2019/07/2019-07-16.csv.gz</Key><LastModified>2023-12-07T13:30:20.364Z</LastModified><ETag>&quot;77687223f4ebc61014aebf6bf9e9c911&quot;</ETag><Size>1213245</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><]
AmazonS3Client 62|2024-04-08T22:57:43.214Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_crypto%2Fminute_aggs_v1%2F2019%2F07%2F2019-07-13.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035743Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035743Z\n20240409/us-east-1/s3/aws4_request\n532fc4585f6f018e4fb6b3783f11cb24051451754030247340027fabbbb91806","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000cfafa41669c05786-006614bcb6-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.0035,"RequestSigningTime":0.2091,"HttpRequestTime":90.8118,"ResponseUnmarshallTime":41.4944,"ResponseProcessingTime":41.6446,"ClientExecuteTime":133.0822},"counters":{}}
RegionFinder 63|2024-04-08T22:57:43.214Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 64|2024-04-08T22:57:43.214Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 65|2024-04-08T22:57:43.215Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 66|2024-04-08T22:57:43.373Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_crypto/minute_aggs_v1/2022/04/2022-04-09.csv.gz</Key><LastModified>2024-03-01T02:10:23.764Z</LastModified><ETag>&quot;175e89354c165accd029ec742e4d2edc&quot;</ETag><Size>2270923</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/minute_aggs_v1/2022/04/2022-04-10.csv.gz</Key><LastModified>2024-03-01T02:10:23.553Z</LastModified><ETag>&quot;7b00ac6277657838dc9f9975a4244c80&quot;</ETag><Size>2202663</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/minute_aggs_v1/2022/04/2022-04-11.csv.gz</Key><LastModified>2024-03-01T02:10:23.063Z</LastModified><ETag>&quot;887dca76d9b04919acfbbc14243f4b5a&quot;</ETag><Size>2629473</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><]
AmazonS3Client 67|2024-04-08T22:57:43.373Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_crypto%2Fminute_aggs_v1%2F2022%2F04%2F2022-04-08.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035743Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035743Z\n20240409/us-east-1/s3/aws4_request\n5b7a40af1ad5f9ef1ee521a39018ff6885efafa89eef6da547746eb0765075d2","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000003dbd8d1857ff1535-006614bcb6-3c9fcc19-us-east-1"},"timings":{"CredentialsRequestTime":0.0047,"RequestSigningTime":0.2119,"HttpRequestTime":124.603,"ResponseUnmarshallTime":33.1861,"ResponseProcessingTime":33.3734,"ClientExecuteTime":158.6635},"counters":{}}
RegionFinder 68|2024-04-08T22:57:43.373Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 69|2024-04-08T22:57:43.373Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 70|2024-04-08T22:57:43.373Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 71|2024-04-08T22:57:43.450Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_crypto/trades_v1/2014/07/2014-07-31.csv.gz</Key><LastModified>2024-03-14T17:09:33.221Z</LastModified><ETag>&quot;8113932d68c0eb79ca3515fc31f1f306&quot;</ETag><Size>1012</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/trades_v1/2014/08/2014-08-01.csv.gz</Key><LastModified>2024-03-14T17:09:33.026Z</LastModified><ETag>&quot;01efffbbc25dce43789f8532d8b1a790&quot;</ETag><Size>337</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/trades_v1/2014/08/2014-08-02.csv.gz</Key><LastModified>2024-03-14T17:09:34.030Z</LastModified><ETag>&quot;b4ed5f2e0cb832ff4ba384afd741933f&quot;</ETag><Size>447</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/trades_v]
AmazonS3Client 72|2024-04-08T22:57:43.451Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_crypto%2Ftrades_v1%2F2014%2F07%2F2014-07-30.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035743Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035743Z\n20240409/us-east-1/s3/aws4_request\n4b0621c88de6cdaa78d7b3014445fb84cfb3af96a381d3bf3e4c76429eba173f","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000646bacec209e6f77-006614bcb7-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.003,"RequestSigningTime":0.2058,"HttpRequestTime":37.2418,"ResponseUnmarshallTime":39.4883,"ResponseProcessingTime":39.6642,"ClientExecuteTime":77.5788},"counters":{}}
RegionFinder 73|2024-04-08T22:57:43.451Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 74|2024-04-08T22:57:43.451Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 75|2024-04-08T22:57:43.451Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 76|2024-04-08T22:57:43.521Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_crypto/trades_v1/2017/05/2017-05-03.csv.gz</Key><LastModified>2024-03-22T09:00:16.222Z</LastModified><ETag>&quot;42a08c2512223c2c764f2cb4efa7c6f2&quot;</ETag><Size>3804266</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/trades_v1/2017/05/2017-05-04.csv.gz</Key><LastModified>2024-03-22T09:00:17.748Z</LastModified><ETag>&quot;92d302c8b55c1d7a80b8d89a706d3d4d&quot;</ETag><Size>5576130</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/trades_v1/2017/05/2017-05-05.csv.gz</Key><LastModified>2024-03-22T09:00:16.941Z</LastModified><ETag>&quot;75d9c3d3e342b132a42b44ad1bac0b86&quot;</ETag><Size>4770028</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_cryp]
AmazonS3Client 77|2024-04-08T22:57:43.522Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_crypto%2Ftrades_v1%2F2017%2F05%2F2017-05-02.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035743Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035743Z\n20240409/us-east-1/s3/aws4_request\n775a24a8ffdf9c9520fa8bfa94ebf69cdfb65f4f01494543e8ee29524534df7b","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx0000084273e7fc855a273-006614bcb7-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.0033,"RequestSigningTime":0.215,"HttpRequestTime":38.0171,"ResponseUnmarshallTime":31.8747,"ResponseProcessingTime":32.0191,"ClientExecuteTime":70.6878},"counters":{}}
RegionFinder 78|2024-04-08T22:57:43.522Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 79|2024-04-08T22:57:43.522Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 80|2024-04-08T22:57:43.522Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 81|2024-04-08T22:57:43.602Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_crypto/trades_v1/2020/01/2020-01-28.csv.gz</Key><LastModified>2024-03-22T01:10:25.275Z</LastModified><ETag>&quot;5b77c2b35f75114ea85132ee34b66616&quot;</ETag><Size>9724449</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/trades_v1/2020/01/2020-01-29.csv.gz</Key><LastModified>2024-03-22T01:10:24.401Z</LastModified><ETag>&quot;87bb422d8e0382e8f504a6654d523449&quot;</ETag><Size>8633976</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/trades_v1/2020/01/2020-01-30.csv.gz</Key><LastModified>2024-03-22T01:10:24.001Z</LastModified><ETag>&quot;ccf326818241681c7a1218569a44d52d&quot;</ETag><Size>9551567</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_cryp]
AmazonS3Client 82|2024-04-08T22:57:43.602Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_crypto%2Ftrades_v1%2F2020%2F01%2F2020-01-27.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035743Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035743Z\n20240409/us-east-1/s3/aws4_request\n7a3d840aee74972cdce5212654487597065277720feac01fb6c0c959d260cb8b","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000006c2ed7a33de47553-006614bcb7-3cc386df-us-east-1"},"timings":{"CredentialsRequestTime":0.004,"RequestSigningTime":0.1908,"HttpRequestTime":37.2652,"ResponseUnmarshallTime":42.0957,"ResponseProcessingTime":42.2546,"ClientExecuteTime":80.181},"counters":{}}
RegionFinder 83|2024-04-08T22:57:43.605Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 84|2024-04-08T22:57:43.605Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 85|2024-04-08T22:57:43.606Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 86|2024-04-08T22:57:43.666Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_crypto/trades_v1/2022/10/2022-10-24.csv.gz</Key><LastModified>2024-03-14T16:49:56.351Z</LastModified><ETag>&quot;90ba16b604c7e88168106fcd124f9971&quot;</ETag><Size>26325459</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/trades_v1/2022/10/2022-10-25.csv.gz</Key><LastModified>2024-03-14T16:50:04.420Z</LastModified><ETag>&quot;ad9efe20ad17c60cf979c9602d0b495e&quot;</ETag><Size>34738989</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_crypto/trades_v1/2022/10/2022-10-26.csv.gz</Key><LastModified>2024-03-14T16:50:07.533Z</LastModified><ETag>&quot;4cd4e3c4ca8c1071f3eb6af459984654&quot;</ETag><Size>38742454</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_c]
AmazonS3Client 87|2024-04-08T22:57:43.666Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_crypto%2Ftrades_v1%2F2022%2F10%2F2022-10-23.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035743Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035743Z\n20240409/us-east-1/s3/aws4_request\n943acf94f6e04864888a0d83b62e58ba70c890f53f420ee7ca7be87ee273262a","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000eb55662eb9fd1877-006614bcb7-3cc386df-us-east-1"},"timings":{"CredentialsRequestTime":0.0037,"RequestSigningTime":0.185,"HttpRequestTime":36.3184,"ResponseUnmarshallTime":23.472,"ResponseProcessingTime":23.6792,"ClientExecuteTime":60.6398},"counters":{}}
RegionFinder 88|2024-04-08T22:57:43.667Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 89|2024-04-08T22:57:43.667Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 90|2024-04-08T22:57:43.668Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 91|2024-04-08T22:57:43.743Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_forex/day_aggs_v1/2011/03/2011-03-23.csv.gz</Key><LastModified>2023-10-28T20:39:33.595Z</LastModified><ETag>&quot;bddf917ef743a12986a995284a66a1fa&quot;</ETag><Size>18210</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/day_aggs_v1/2011/03/2011-03-24.csv.gz</Key><LastModified>2023-10-28T20:39:32.992Z</LastModified><ETag>&quot;a067cfcbb9f0a5c258afd601a7ac4783&quot;</ETag><Size>17544</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/day_aggs_v1/2011/03/2011-03-25.csv.gz</Key><LastModified>2023-10-28T20:39:32.351Z</LastModified><ETag>&quot;f7d0169b6ebf9c66fd7898c0adf9e8a7&quot;</ETag><Size>18030</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/d]
AmazonS3Client 92|2024-04-08T22:57:43.743Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_forex%2Fday_aggs_v1%2F2011%2F03%2F2011-03-22.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035743Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035743Z\n20240409/us-east-1/s3/aws4_request\nbb4e9acae6243d1b47c6dfbf48e5c23105b3ba70bd9fb775acea7e192ead0617","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000f8de0d9a9129cf91-006614bcb7-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.0115,"RequestSigningTime":0.2613,"HttpRequestTime":39.3613,"ResponseUnmarshallTime":35.5465,"ResponseProcessingTime":35.7443,"ClientExecuteTime":76.317},"counters":{}}
RegionFinder 93|2024-04-08T22:57:43.744Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 94|2024-04-08T22:57:43.744Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 95|2024-04-08T22:57:43.744Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 96|2024-04-08T22:57:43.827Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_forex/day_aggs_v1/2014/06/2014-06-01.csv.gz</Key><LastModified>2023-10-28T20:32:53.886Z</LastModified><ETag>&quot;fff011b29d6fdf9aa2a1b6ab61d0b917&quot;</ETag><Size>11303</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/day_aggs_v1/2014/06/2014-06-02.csv.gz</Key><LastModified>2023-10-28T20:32:52.786Z</LastModified><ETag>&quot;27715fca4ced19309f787d9d6a41220c&quot;</ETag><Size>19906</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/day_aggs_v1/2014/06/2014-06-03.csv.gz</Key><LastModified>2023-10-28T20:32:52.715Z</LastModified><ETag>&quot;66d4c65b4e0f9f3ffae2c294bbf8a980&quot;</ETag><Size>19797</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/d]
AmazonS3Client 97|2024-04-08T22:57:43.828Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_forex%2Fday_aggs_v1%2F2014%2F05%2F2014-05-30.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035743Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035743Z\n20240409/us-east-1/s3/aws4_request\n48299b1e1c091c00d5fb6d2a3ae4f8a35cf8cdd813c6dfbf2298be9f475475ab","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000c8c6281fefd357ae-006614bcb7-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.004,"RequestSigningTime":0.2304,"HttpRequestTime":39.0093,"ResponseUnmarshallTime":44.1464,"ResponseProcessingTime":44.3056,"ClientExecuteTime":84.0289},"counters":{}}
RegionFinder 98|2024-04-08T22:57:43.828Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 99|2024-04-08T22:57:43.828Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 100|2024-04-08T22:57:43.828Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 101|2024-04-08T22:57:43.896Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_forex/day_aggs_v1/2017/08/2017-08-08.csv.gz</Key><LastModified>2023-10-28T20:26:13.490Z</LastModified><ETag>&quot;bf73c3dfa1706f1f429c06208be8d044&quot;</ETag><Size>21454</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/day_aggs_v1/2017/08/2017-08-09.csv.gz</Key><LastModified>2023-10-28T20:26:13.151Z</LastModified><ETag>&quot;42b46a08ecf375da6842f45d6de2a7f4&quot;</ETag><Size>20908</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/day_aggs_v1/2017/08/2017-08-10.csv.gz</Key><LastModified>2023-10-28T20:26:13.368Z</LastModified><ETag>&quot;96016278347961fe56dfc2981a984333&quot;</ETag><Size>20963</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/d]
AmazonS3Client 102|2024-04-08T22:57:43.897Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_forex%2Fday_aggs_v1%2F2017%2F08%2F2017-08-07.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035743Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035743Z\n20240409/us-east-1/s3/aws4_request\n50e1a37b5bccff7c8d81b3d58c982aed0843534f938bfb40cdd039accd31d5d4","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000d89e1ccc067425a6-006614bcb7-3cc386df-us-east-1"},"timings":{"CredentialsRequestTime":0.003,"RequestSigningTime":0.1757,"HttpRequestTime":40.3097,"ResponseUnmarshallTime":27.7272,"ResponseProcessingTime":27.915,"ClientExecuteTime":68.8037},"counters":{}}
RegionFinder 103|2024-04-08T22:57:43.897Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 104|2024-04-08T22:57:43.897Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 105|2024-04-08T22:57:43.897Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 106|2024-04-08T22:57:43.961Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_forex/day_aggs_v1/2020/10/2020-10-16.csv.gz</Key><LastModified>2023-10-28T20:19:33.331Z</LastModified><ETag>&quot;2d2972f6bf0a28f4e62337ab55810edd&quot;</ETag><Size>13937</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/day_aggs_v1/2020/10/2020-10-18.csv.gz</Key><LastModified>2023-10-28T20:19:32.910Z</LastModified><ETag>&quot;433fb5545d3bb523031b2dd2ee1b4d0b&quot;</ETag><Size>7609</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/day_aggs_v1/2020/10/2020-10-19.csv.gz</Key><LastModified>2023-10-28T20:19:32.898Z</LastModified><ETag>&quot;06f6863f17f30515cba87c470763f487&quot;</ETag><Size>14266</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/da]
AmazonS3Client 107|2024-04-08T22:57:43.962Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_forex%2Fday_aggs_v1%2F2020%2F10%2F2020-10-15.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035743Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035743Z\n20240409/us-east-1/s3/aws4_request\n4bc9a9e03dcd95e4c1bdbde3857cde25e61477d5400dea613d9f4608128cec06","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx0000032f8ded395f75b37-006614bcb7-3cf5d91c-us-east-1"},"timings":{"CredentialsRequestTime":0.0038,"RequestSigningTime":0.1783,"HttpRequestTime":37.7022,"ResponseUnmarshallTime":25.9413,"ResponseProcessingTime":26.1562,"ClientExecuteTime":64.5416},"counters":{}}
RegionFinder 108|2024-04-08T22:57:43.962Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 109|2024-04-08T22:57:43.962Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 110|2024-04-08T22:57:43.962Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 111|2024-04-08T22:57:44.036Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_forex/day_aggs_v1/2023/07/2023-07-29.csv.gz</Key><LastModified>2023-10-28T20:12:53.430Z</LastModified><ETag>&quot;09f37b573591a78e4d6412919ae614eb&quot;</ETag><Size>8269</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/day_aggs_v1/2023/07/2023-07-30.csv.gz</Key><LastModified>2023-10-28T20:12:53.433Z</LastModified><ETag>&quot;064784187aa770820d099c669d8954cf&quot;</ETag><Size>22045</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/day_aggs_v1/2023/07/2023-07-31.csv.gz</Key><LastModified>2023-10-28T20:12:53.489Z</LastModified><ETag>&quot;8a3020c25039dffaa86ff912fb5bca79&quot;</ETag><Size>28300</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/da]
AmazonS3Client 112|2024-04-08T22:57:44.036Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_forex%2Fday_aggs_v1%2F2023%2F07%2F2023-07-28.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035743Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035743Z\n20240409/us-east-1/s3/aws4_request\nc0af98881cf544da9b7ab7ffc2a58e0f6c5f742f8c6e0dec78311bc50269c927","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000b4db1bc7e6902683-006614bcb7-3c9fcc19-us-east-1"},"timings":{"CredentialsRequestTime":0.0049,"RequestSigningTime":0.2267,"HttpRequestTime":42.6996,"ResponseUnmarshallTime":31.1301,"ResponseProcessingTime":31.2769,"ClientExecuteTime":74.7095},"counters":{}}
RegionFinder 113|2024-04-08T22:57:44.037Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 114|2024-04-08T22:57:44.037Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 115|2024-04-08T22:57:44.038Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 116|2024-04-08T22:57:44.101Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_forex/minute_aggs_v1/2012/02/2012-02-28.csv.gz</Key><LastModified>2023-10-28T17:08:42.389Z</LastModified><ETag>&quot;f7ff78306464408d635aaea77e25adf9&quot;</ETag><Size>4767643</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/minute_aggs_v1/2012/02/2012-02-29.csv.gz</Key><LastModified>2023-10-28T17:08:42.751Z</LastModified><ETag>&quot;4550df869f1fff8b7acdb0e6cb69e0d7&quot;</ETag><Size>4995310</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/minute_aggs_v1/2012/03/2012-03-01.csv.gz</Key><LastModified>2023-10-28T17:08:41.632Z</LastModified><ETag>&quot;d97d812f5099072f68e5cf6c4f34c2e3&quot;</ETag><Size>4840605</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key]
AmazonS3Client 117|2024-04-08T22:57:44.102Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_forex%2Fminute_aggs_v1%2F2012%2F02%2F2012-02-27.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035744Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035744Z\n20240409/us-east-1/s3/aws4_request\n40289851fe56dc297c035efc853bf1bcfb21a981fcce69a24601ff876615488a","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000000320bf07293811e1-006614bcb7-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.0033,"RequestSigningTime":0.2091,"HttpRequestTime":36.0385,"ResponseUnmarshallTime":26.6325,"ResponseProcessingTime":26.8035,"ClientExecuteTime":64.8812},"counters":{}}
RegionFinder 118|2024-04-08T22:57:44.102Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 119|2024-04-08T22:57:44.102Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 120|2024-04-08T22:57:44.102Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 121|2024-04-08T22:57:44.177Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_forex/minute_aggs_v1/2015/05/2015-05-06.csv.gz</Key><LastModified>2023-10-28T17:02:16.012Z</LastModified><ETag>&quot;272ac491c42f4e68328d468d883130c4&quot;</ETag><Size>6123160</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/minute_aggs_v1/2015/05/2015-05-07.csv.gz</Key><LastModified>2023-10-28T17:02:15.693Z</LastModified><ETag>&quot;1ae4349555574bfe26c59640a44a213a&quot;</ETag><Size>6264835</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/minute_aggs_v1/2015/05/2015-05-08.csv.gz</Key><LastModified>2023-10-28T17:02:12.687Z</LastModified><ETag>&quot;0b2c5e014ba411919ce160d78d595ac2&quot;</ETag><Size>5567037</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key]
AmazonS3Client 122|2024-04-08T22:57:44.177Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_forex%2Fminute_aggs_v1%2F2015%2F05%2F2015-05-05.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035744Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035744Z\n20240409/us-east-1/s3/aws4_request\n5566073c25d68eb7075a42da7eac6ef672fbb6db0789a22f89a9875f3ff45b8b","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000b460023f44e9eb10-006614bcb7-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.0042,"RequestSigningTime":0.2818,"HttpRequestTime":41.7741,"ResponseUnmarshallTime":32.6943,"ResponseProcessingTime":32.8491,"ClientExecuteTime":75.4246},"counters":{}}
RegionFinder 123|2024-04-08T22:57:44.178Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 124|2024-04-08T22:57:44.178Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 125|2024-04-08T22:57:44.178Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 126|2024-04-08T22:57:44.251Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_forex/minute_aggs_v1/2018/07/2018-07-16.csv.gz</Key><LastModified>2023-10-28T16:55:29.363Z</LastModified><ETag>&quot;c062cbe305f4475162697390e7b42f6b&quot;</ETag><Size>7171316</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/minute_aggs_v1/2018/07/2018-07-17.csv.gz</Key><LastModified>2023-10-28T16:55:30.283Z</LastModified><ETag>&quot;ca8d8877ead062b2f29370fd37c80d0d&quot;</ETag><Size>7543064</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/minute_aggs_v1/2018/07/2018-07-18.csv.gz</Key><LastModified>2023-10-28T16:55:28.940Z</LastModified><ETag>&quot;6947aa0e314dcc1b69f8bb87cb17b0dc&quot;</ETag><Size>7573300</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key]
AmazonS3Client 127|2024-04-08T22:57:44.252Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_forex%2Fminute_aggs_v1%2F2018%2F07%2F2018-07-15.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035744Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035744Z\n20240409/us-east-1/s3/aws4_request\n62ab41e692f9193a8de70f7bd7b4af96a744c8c06370a83e808f98e45287c47b","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000570fd954c6ccb178-006614bcb7-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.0031,"RequestSigningTime":0.1786,"HttpRequestTime":39.2312,"ResponseUnmarshallTime":34.0513,"ResponseProcessingTime":34.2072,"ClientExecuteTime":73.9987},"counters":{}}
RegionFinder 128|2024-04-08T22:57:44.252Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 129|2024-04-08T22:57:44.252Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 130|2024-04-08T22:57:44.252Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 131|2024-04-08T22:57:44.334Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_forex/minute_aggs_v1/2021/08/2021-08-18.csv.gz</Key><LastModified>2023-10-28T16:48:48.799Z</LastModified><ETag>&quot;02d3de91278a00d21fbb66f875e04ffa&quot;</ETag><Size>10960681</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/minute_aggs_v1/2021/08/2021-08-19.csv.gz</Key><LastModified>2023-10-28T16:48:48.730Z</LastModified><ETag>&quot;84fd43524ddb29f2eef680c6a40dc1fa&quot;</ETag><Size>11148063</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/minute_aggs_v1/2021/08/2021-08-20.csv.gz</Key><LastModified>2023-10-28T16:48:44.815Z</LastModified><ETag>&quot;de0fccb7c384c8b277846bdf91adede9&quot;</ETag><Size>9909698</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><K]
AmazonS3Client 132|2024-04-08T22:57:44.334Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_forex%2Fminute_aggs_v1%2F2021%2F08%2F2021-08-17.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035744Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035744Z\n20240409/us-east-1/s3/aws4_request\n1b5b8d3eafc5d183ae30c93f153f7cf0c3a952f2c414be4e8eb4be746281d0be","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx0000044096fedff02712e-006614bcb7-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.0034,"RequestSigningTime":0.1685,"HttpRequestTime":48.0187,"ResponseUnmarshallTime":33.2515,"ResponseProcessingTime":33.4291,"ClientExecuteTime":82.0052},"counters":{}}
RegionFinder 133|2024-04-08T22:57:44.334Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 134|2024-04-08T22:57:44.334Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 135|2024-04-08T22:57:44.334Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 136|2024-04-08T22:57:44.400Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_forex/quotes_v1/2009/11/2009-11-26.csv.gz</Key><LastModified>2023-10-28T16:33:49.253Z</LastModified><ETag>&quot;df01371ae28a808355dbd846a13deb4c&quot;</ETag><Size>22316725</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/quotes_v1/2009/11/2009-11-27.csv.gz</Key><LastModified>2023-10-28T16:33:41.322Z</LastModified><ETag>&quot;ccd868e6d5b70873e18a03e01e200b03&quot;</ETag><Size>21008348</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/quotes_v1/2009/11/2009-11-29.csv.gz</Key><LastModified>2023-10-28T16:32:37.897Z</LastModified><ETag>&quot;505870c1d63bc1c4c23d28652b56272d&quot;</ETag><Size>4783576</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex]
AmazonS3Client 137|2024-04-08T22:57:44.400Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_forex%2Fquotes_v1%2F2009%2F11%2F2009-11-25.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035744Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035744Z\n20240409/us-east-1/s3/aws4_request\n058829c08e80445db837326fbc27858acbdf84b015574e6535a09d6690974ea1","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000005d4ddd7050d3fa52-006614bcb7-3c9fcc19-us-east-1"},"timings":{"CredentialsRequestTime":0.0034,"RequestSigningTime":0.1677,"HttpRequestTime":44.5922,"ResponseUnmarshallTime":20.7136,"ResponseProcessingTime":20.8757,"ClientExecuteTime":66.0002},"counters":{}}
RegionFinder 138|2024-04-08T22:57:44.400Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 139|2024-04-08T22:57:44.401Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 140|2024-04-08T22:57:44.401Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 141|2024-04-08T22:57:44.457Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_forex/quotes_v1/2013/02/2013-02-05.csv.gz</Key><LastModified>2023-10-28T15:31:10.289Z</LastModified><ETag>&quot;57bf4d642fc6ed3b1604953377a7fe47-2&quot;</ETag><Size>110177456</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/quotes_v1/2013/02/2013-02-06.csv.gz</Key><LastModified>2023-10-28T15:30:22.731Z</LastModified><ETag>&quot;b6bd71ede58714f947030545d92f3db3-2&quot;</ETag><Size>101748301</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/quotes_v1/2013/02/2013-02-07.csv.gz</Key><LastModified>2023-10-28T15:15:35.883Z</LastModified><ETag>&quot;574612fde0f64ae086b58f90cb5f84d7-2&quot;</ETag><Size>111687410</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>gl]
AmazonS3Client 142|2024-04-08T22:57:44.457Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_forex%2Fquotes_v1%2F2013%2F02%2F2013-02-04.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035744Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035744Z\n20240409/us-east-1/s3/aws4_request\n989b071ea027bf6a5810ab4de478377ca70ff6904a5ddc8ba7eabe911eb1be3b","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000200c359082f11170-006614bcb8-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.0045,"RequestSigningTime":0.1683,"HttpRequestTime":35.8394,"ResponseUnmarshallTime":20.1138,"ResponseProcessingTime":20.257,"ClientExecuteTime":56.6516},"counters":{}}
RegionFinder 143|2024-04-08T22:57:44.457Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 144|2024-04-08T22:57:44.457Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 145|2024-04-08T22:57:44.458Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 146|2024-04-08T22:57:44.522Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_forex/quotes_v1/2016/04/2016-04-17.csv.gz</Key><LastModified>2023-10-28T14:05:05.055Z</LastModified><ETag>&quot;50a70bb670c5030b2cf643cd2519613f&quot;</ETag><Size>18484950</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/quotes_v1/2016/04/2016-04-18.csv.gz</Key><LastModified>2023-10-28T14:10:27.696Z</LastModified><ETag>&quot;68b0d62fc62c6ddf41a076860d24448b&quot;</ETag><Size>90338339</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/quotes_v1/2016/04/2016-04-19.csv.gz</Key><LastModified>2023-10-28T14:10:34.911Z</LastModified><ETag>&quot;0a20e9934e688d94c036789a08d613c1&quot;</ETag><Size>93451018</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_fore]
AmazonS3Client 147|2024-04-08T22:57:44.522Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_forex%2Fquotes_v1%2F2016%2F04%2F2016-04-15.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035744Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035744Z\n20240409/us-east-1/s3/aws4_request\n0041d8e746ebddd5d5662853f751c86c5dd98e61c5b81d708ab6ca8dd39504c4","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000004155b2c0bd3f76c1-006614bcb8-3cc386df-us-east-1"},"timings":{"CredentialsRequestTime":0.0037,"RequestSigningTime":0.1769,"HttpRequestTime":36.4776,"ResponseUnmarshallTime":27.3023,"ResponseProcessingTime":27.4883,"ClientExecuteTime":64.5511},"counters":{}}
RegionFinder 148|2024-04-08T22:57:44.522Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 149|2024-04-08T22:57:44.522Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 150|2024-04-08T22:57:44.522Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 151|2024-04-08T22:57:44.613Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_forex/quotes_v1/2019/06/2019-06-27.csv.gz</Key><LastModified>2023-10-28T05:43:28.729Z</LastModified><ETag>&quot;17fcec4976749994e3fe574d64b80ed8-2&quot;</ETag><Size>108078316</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/quotes_v1/2019/06/2019-06-28.csv.gz</Key><LastModified>2023-10-28T05:42:27.469Z</LastModified><ETag>&quot;24b7a2855d7f337165ade6f9b3f89b84&quot;</ETag><Size>91112791</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/quotes_v1/2019/06/2019-06-30.csv.gz</Key><LastModified>2023-10-28T05:36:38.496Z</LastModified><ETag>&quot;6c0bd645b0a883d89419a7bf75890764&quot;</ETag><Size>19227404</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_f]
AmazonS3Client 152|2024-04-08T22:57:44.613Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_forex%2Fquotes_v1%2F2019%2F06%2F2019-06-26.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035744Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035744Z\n20240409/us-east-1/s3/aws4_request\n34531b33f4d6087702c935e165ea53011a630b8e984b9e93611f92baf3a682db","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000004248b037db30a120-006614bcb8-3cf5d91c-us-east-1"},"timings":{"CredentialsRequestTime":0.0036,"RequestSigningTime":0.1666,"HttpRequestTime":37.0767,"ResponseUnmarshallTime":53.3512,"ResponseProcessingTime":53.4978,"ClientExecuteTime":91.1284},"counters":{}}
RegionFinder 153|2024-04-08T22:57:44.614Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 154|2024-04-08T22:57:44.614Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 155|2024-04-08T22:57:44.614Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 156|2024-04-08T22:57:44.678Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>global_forex/quotes_v1/2022/06/2022-06-15.csv.gz</Key><LastModified>2023-10-27T21:16:31.434Z</LastModified><ETag>&quot;23c6528db4f189f794b69f62676a5057-3&quot;</ETag><Size>298612536</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/quotes_v1/2022/06/2022-06-16.csv.gz</Key><LastModified>2023-10-27T21:16:42.123Z</LastModified><ETag>&quot;eede7444f53da409ac03af5623776b77-3&quot;</ETag><Size>299938460</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>global_forex/quotes_v1/2022/06/2022-06-17.csv.gz</Key><LastModified>2023-10-27T21:14:27.846Z</LastModified><ETag>&quot;d334c2c2dd9730a5df50266bf36d55b4-3&quot;</ETag><Size>257047480</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>gl]
AmazonS3Client 157|2024-04-08T22:57:44.679Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=global_forex%2Fquotes_v1%2F2022%2F06%2F2022-06-14.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035744Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035744Z\n20240409/us-east-1/s3/aws4_request\nb9fe597d0723902a39c2cfbd073237fe2ab093e4e3b844d9c2bc344ca2467dc2","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000005e2a840379d95ab2-006614bcb8-3cf5d91c-us-east-1"},"timings":{"CredentialsRequestTime":0.0035,"RequestSigningTime":0.1575,"HttpRequestTime":38.6932,"ResponseUnmarshallTime":25.7559,"ResponseProcessingTime":25.9167,"ClientExecuteTime":65.1205},"counters":{}}
RegionFinder 158|2024-04-08T22:57:44.679Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 159|2024-04-08T22:57:44.679Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 160|2024-04-08T22:57:44.679Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 161|2024-04-08T22:57:44.732Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_indices/minute_aggs_v1/2023/06/2023-06-16.csv.gz</Key><LastModified>2023-10-18T02:05:29.122Z</LastModified><ETag>&quot;b83f71963d0d1c9b779cf5bff213c63e-2&quot;</ETag><Size>120263703</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_indices/minute_aggs_v1/2023/06/2023-06-20.csv.gz</Key><LastModified>2023-10-18T02:05:38.743Z</LastModified><ETag>&quot;0bf50692887fbe0a92fad75d15679a35-2&quot;</ETag><Size>120669242</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_indices/minute_aggs_v1/2023/06/2023-06-21.csv.gz</Key><LastModified>2023-10-18T02:05:26.716Z</LastModified><ETag>&quot;c1ea5d3eaa96795252349471f5b577e8-2&quot;</ETag><Size>120538142</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Content]
AmazonS3Client 162|2024-04-08T22:57:44.733Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_indices%2Fminute_aggs_v1%2F2023%2F06%2F2023-06-15.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035744Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035744Z\n20240409/us-east-1/s3/aws4_request\n6ab1702ff9e5c9f8437e5de607836868137e93898b143d98b6407866a29f3c43","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000fa7c26216f69fd40-006614bcb8-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.0036,"RequestSigningTime":0.1696,"HttpRequestTime":35.6121,"ResponseUnmarshallTime":17.4285,"ResponseProcessingTime":17.5713,"ClientExecuteTime":53.7159},"counters":{}}
RegionFinder 163|2024-04-08T22:57:44.733Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 164|2024-04-08T22:57:44.733Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 165|2024-04-08T22:57:44.733Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 166|2024-04-08T22:57:44.785Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_options_opra/day_aggs_v1/2016/05/2016-05-31.csv.gz</Key><LastModified>2023-11-03T17:23:08.966Z</LastModified><ETag>&quot;aea8001aa4521c7c405a5d6b8b0ae889&quot;</ETag><Size>913396</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_options_opra/day_aggs_v1/2016/06/2016-06-01.csv.gz</Key><LastModified>2023-11-03T17:23:09.086Z</LastModified><ETag>&quot;ad84beb1082b35b5c744c83ca460dc10&quot;</ETag><Size>826097</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_options_opra/day_aggs_v1/2016/06/2016-06-02.csv.gz</Key><LastModified>2023-11-03T17:23:09.609Z</LastModified><ETag>&quot;39e58f5703f0f170c4687bc1f9cf3a46&quot;</ETag><Size>853931</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us]
AmazonS3Client 167|2024-04-08T22:57:44.785Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_options_opra%2Fday_aggs_v1%2F2016%2F05%2F2016-05-27.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035744Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035744Z\n20240409/us-east-1/s3/aws4_request\n7f3d6b7e04672677bd1c88e159f2cb322b1d1456ee1128d4b8d4acc5dbeae536","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx0000002ab857b8ae30c96-006614bcb7-3c9fcc19-us-east-1"},"timings":{"CredentialsRequestTime":0.0031,"RequestSigningTime":0.1572,"HttpRequestTime":35.5956,"ResponseUnmarshallTime":16.4244,"ResponseProcessingTime":16.5475,"ClientExecuteTime":52.6333},"counters":{}}
RegionFinder 168|2024-04-08T22:57:44.786Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 169|2024-04-08T22:57:44.786Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 170|2024-04-08T22:57:44.786Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 171|2024-04-08T22:57:44.841Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_options_opra/day_aggs_v1/2020/05/2020-05-21.csv.gz</Key><LastModified>2023-11-02T15:37:17.614Z</LastModified><ETag>&quot;44f2648471382d007af3c9a2d2e538a6&quot;</ETag><Size>1984399</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_options_opra/day_aggs_v1/2020/05/2020-05-22.csv.gz</Key><LastModified>2023-11-02T15:37:17.852Z</LastModified><ETag>&quot;4a784a39ea3361ea2c06c731fca37193&quot;</ETag><Size>2001279</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_options_opra/day_aggs_v1/2020/05/2020-05-26.csv.gz</Key><LastModified>2023-11-02T15:37:15.957Z</LastModified><ETag>&quot;7f0ec1263b0979f18575dff03935241b&quot;</ETag><Size>2409956</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key]
AmazonS3Client 172|2024-04-08T22:57:44.841Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_options_opra%2Fday_aggs_v1%2F2020%2F05%2F2020-05-20.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035744Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035744Z\n20240409/us-east-1/s3/aws4_request\n0b712311d19fe7629a0d85e19136a6ae7ca12bd68da3ef4165cffdd5718d47ad","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000ef457a4ab7ad4099-006614bcb8-3cc386df-us-east-1"},"timings":{"CredentialsRequestTime":0.0035,"RequestSigningTime":0.1482,"HttpRequestTime":37.12,"ResponseUnmarshallTime":18.0069,"ResponseProcessingTime":18.1451,"ClientExecuteTime":55.7298},"counters":{}}
RegionFinder 173|2024-04-08T22:57:44.841Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 174|2024-04-08T22:57:44.842Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 175|2024-04-08T22:57:44.842Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 176|2024-04-08T22:57:44.895Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_options_opra/minute_aggs_v1/2014/07/2014-07-24.csv.gz</Key><LastModified>2023-11-04T10:18:19.334Z</LastModified><ETag>&quot;fe1d4c8056be1039f9faaa0f610fd7ac&quot;</ETag><Size>4291814</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_options_opra/minute_aggs_v1/2014/07/2014-07-25.csv.gz</Key><LastModified>2023-11-04T09:57:51.887Z</LastModified><ETag>&quot;465fd8a6407b3008d47755bc9c910b8b&quot;</ETag><Size>4300175</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_options_opra/minute_aggs_v1/2014/07/2014-07-28.csv.gz</Key><LastModified>2023-11-04T09:57:51.922Z</LastModified><ETag>&quot;9eecb2630ad92950c56cff4665942607&quot;</ETag><Size>3861673</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Cont]
AmazonS3Client 177|2024-04-08T22:57:44.896Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_options_opra%2Fminute_aggs_v1%2F2014%2F07%2F2014-07-23.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035744Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035744Z\n20240409/us-east-1/s3/aws4_request\n1d8660ec66cdb3040a6055df980e98a2e989a1bb2c11befe7f30ddee985be9f6","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000837e86964173fbc7-006614bcb8-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.003,"RequestSigningTime":0.1423,"HttpRequestTime":34.9244,"ResponseUnmarshallTime":18.6744,"ResponseProcessingTime":18.8225,"ClientExecuteTime":54.2002},"counters":{}}
RegionFinder 178|2024-04-08T22:57:44.896Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 179|2024-04-08T22:57:44.896Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 180|2024-04-08T22:57:44.896Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 181|2024-04-08T22:57:44.948Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_options_opra/minute_aggs_v1/2018/07/2018-07-13.csv.gz</Key><LastModified>2023-11-03T02:32:49.731Z</LastModified><ETag>&quot;6cabb8445f8fec2f94fa1b8f0ee59f8e&quot;</ETag><Size>6174953</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_options_opra/minute_aggs_v1/2018/07/2018-07-16.csv.gz</Key><LastModified>2023-11-04T05:26:46.471Z</LastModified><ETag>&quot;97ea070fe207d6b859f8e45acce0a4d5&quot;</ETag><Size>5667419</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_options_opra/minute_aggs_v1/2018/07/2018-07-17.csv.gz</Key><LastModified>2023-11-03T02:32:50.720Z</LastModified><ETag>&quot;f1bb319fe2f3df197a5500a56025de8a&quot;</ETag><Size>6336515</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Cont]
AmazonS3Client 182|2024-04-08T22:57:44.949Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_options_opra%2Fminute_aggs_v1%2F2018%2F07%2F2018-07-12.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035744Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035744Z\n20240409/us-east-1/s3/aws4_request\n227f881c099c736b5b516a10fae3fd280f757f2c62395301f42c965f14ef27b2","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000d61fdbacb2a27322-006614bcb8-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.0049,"RequestSigningTime":0.1722,"HttpRequestTime":40.2963,"ResponseUnmarshallTime":11.7126,"ResponseProcessingTime":11.8562,"ClientExecuteTime":52.7982},"counters":{}}
RegionFinder 183|2024-04-08T22:57:44.949Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 184|2024-04-08T22:57:44.949Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 185|2024-04-08T22:57:44.949Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 186|2024-04-08T22:57:45.008Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_options_opra/minute_aggs_v1/2022/07/2022-07-06.csv.gz</Key><LastModified>2023-11-02T08:47:15.224Z</LastModified><ETag>&quot;bfb4d850e020675d7fd6af467acae1db&quot;</ETag><Size>12689314</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_options_opra/minute_aggs_v1/2022/07/2022-07-07.csv.gz</Key><LastModified>2023-11-02T08:47:17.692Z</LastModified><ETag>&quot;8063254dd8b412651535f4a63ed1c3b9&quot;</ETag><Size>14249873</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_options_opra/minute_aggs_v1/2022/07/2022-07-08.csv.gz</Key><LastModified>2023-11-02T08:47:14.461Z</LastModified><ETag>&quot;4cd330adeae6f9517c711964d966bff2&quot;</ETag><Size>13830822</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><C]
AmazonS3Client 187|2024-04-08T22:57:45.009Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_options_opra%2Fminute_aggs_v1%2F2022%2F07%2F2022-07-05.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035744Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035744Z\n20240409/us-east-1/s3/aws4_request\n2c7ecee90e0f3eb072ab6517bc49f0f04f7c632d3558c76715b807576c5d040f","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000b0a3d967679f90cb-006614bcb8-3c9fcc19-us-east-1"},"timings":{"CredentialsRequestTime":0.0029,"RequestSigningTime":0.1437,"HttpRequestTime":36.6002,"ResponseUnmarshallTime":22.6574,"ResponseProcessingTime":22.7992,"ClientExecuteTime":59.8235},"counters":{}}
RegionFinder 188|2024-04-08T22:57:45.009Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 189|2024-04-08T22:57:45.009Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 190|2024-04-08T22:57:45.009Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 191|2024-04-08T22:57:45.087Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_options_opra/trades_v1/2014/07/2014-07-16.csv.gz</Key><LastModified>2023-09-02T17:44:38.050Z</LastModified><ETag>&quot;59c5073ef10e07e1817b313b83f0fc27&quot;</ETag><Size>7212421</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_options_opra/trades_v1/2014/07/2014-07-17.csv.gz</Key><LastModified>2023-09-02T17:44:38.777Z</LastModified><ETag>&quot;0679f4d5805746fb42e173a463c4466b&quot;</ETag><Size>9632001</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_options_opra/trades_v1/2014/07/2014-07-18.csv.gz</Key><LastModified>2023-09-02T17:44:39.130Z</LastModified><ETag>&quot;61f21243f3e4d26de82dc2c47f7e4faa&quot;</ETag><Size>9052868</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_op]
AmazonS3Client 192|2024-04-08T22:57:45.087Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_options_opra%2Ftrades_v1%2F2014%2F07%2F2014-07-15.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\n5892e139f1f06ab9d89fc1efdf6569248cc27b8240f5a08033a02936e6b56480","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000003192d37376a5f008-006614bcb8-3c9fcc19-us-east-1"},"timings":{"CredentialsRequestTime":0.0023,"RequestSigningTime":0.1359,"HttpRequestTime":65.3135,"ResponseUnmarshallTime":12.2517,"ResponseProcessingTime":12.3621,"ClientExecuteTime":78.0925},"counters":{}}
RegionFinder 193|2024-04-08T22:57:45.087Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 194|2024-04-08T22:57:45.087Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 195|2024-04-08T22:57:45.087Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 196|2024-04-08T22:57:45.142Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_options_opra/trades_v1/2018/07/2018-07-05.csv.gz</Key><LastModified>2023-09-01T12:38:35.656Z</LastModified><ETag>&quot;d83d2cbac2b74e54d50ee5f4908a86e6&quot;</ETag><Size>9330521</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_options_opra/trades_v1/2018/07/2018-07-06.csv.gz</Key><LastModified>2023-09-01T12:38:36.478Z</LastModified><ETag>&quot;2ed0dee4bab82e10b2cd93e8b84f3eab&quot;</ETag><Size>11300805</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_options_opra/trades_v1/2018/07/2018-07-09.csv.gz</Key><LastModified>2023-09-01T12:08:18.098Z</LastModified><ETag>&quot;64560be1fb3e10ab75404c175577a22a&quot;</ETag><Size>11265752</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_]
AmazonS3Client 197|2024-04-08T22:57:45.142Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_options_opra%2Ftrades_v1%2F2018%2F07%2F2018-07-03.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\n22527b196cbad49c2a117d8ce609c8da657f57ac98c425c1b875626592b29f7d","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000002447ba8ab131740b-006614bcb8-3cf5d91c-us-east-1"},"timings":{"CredentialsRequestTime":0.0024,"RequestSigningTime":0.1212,"HttpRequestTime":37.7195,"ResponseUnmarshallTime":16.8445,"ResponseProcessingTime":17.0103,"ClientExecuteTime":55.1444},"counters":{}}
RegionFinder 198|2024-04-08T22:57:45.142Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 199|2024-04-08T22:57:45.142Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 200|2024-04-08T22:57:45.143Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 201|2024-04-08T22:57:45.200Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_options_opra/trades_v1/2022/06/2022-06-20.csv.gz</Key><LastModified>2023-08-31T21:36:03.754Z</LastModified><ETag>&quot;f542cc3ed6e735cd38b87b22a78a5f42&quot;</ETag><Size>10675</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_options_opra/trades_v1/2022/06/2022-06-21.csv.gz</Key><LastModified>2023-08-31T21:36:24.321Z</LastModified><ETag>&quot;12db859f771e28a26e3f2fca7b5a5d69&quot;</ETag><Size>37886395</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_options_opra/trades_v1/2022/06/2022-06-22.csv.gz</Key><LastModified>2023-08-31T21:36:23.004Z</LastModified><ETag>&quot;bd6cfecf89ea212a0ff10bcde0d16639&quot;</ETag><Size>35223175</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_op]
AmazonS3Client 202|2024-04-08T22:57:45.200Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_options_opra%2Ftrades_v1%2F2022%2F06%2F2022-06-17.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\n57d3ed41641c001bbde128b2d3c7c1b3a88bc84dc17c19b018dff511f9c55a0b","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx0000011daec8f3055e24c-006614bcb8-3cf5d91c-us-east-1"},"timings":{"CredentialsRequestTime":0.0027,"RequestSigningTime":0.1679,"HttpRequestTime":40.2708,"ResponseUnmarshallTime":16.4376,"ResponseProcessingTime":16.6039,"ClientExecuteTime":57.4126},"counters":{}}
RegionFinder 203|2024-04-08T22:57:45.200Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 204|2024-04-08T22:57:45.200Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 205|2024-04-08T22:57:45.200Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 206|2024-04-08T22:57:45.249Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/day_aggs_v1/2005/11/2005-11-09.csv.gz</Key><LastModified>2023-10-18T00:54:12.843Z</LastModified><ETag>&quot;0069905878de44d3a84ac7614b1fbc66&quot;</ETag><Size>132907</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/day_aggs_v1/2005/11/2005-11-10.csv.gz</Key><LastModified>2023-10-18T00:54:12.630Z</LastModified><ETag>&quot;025a423b6c9448c6199c3c58f3db828b&quot;</ETag><Size>132488</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/day_aggs_v1/2005/11/2005-11-11.csv.gz</Key><LastModified>2023-10-18T00:54:12.350Z</LastModified><ETag>&quot;30104c537161c7fe1b58ef8008cbf121&quot;</ETag><Size>130394</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stock]
AmazonS3Client 207|2024-04-08T22:57:45.249Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Fday_aggs_v1%2F2005%2F11%2F2005-11-08.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\n223598c9c10e28eddd22ffe03517bb19ca126edeca6ec4aadf1bcb1ecf96b7f2","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000f25f24583f1d95d4-006614bcb8-3c9fcc19-us-east-1"},"timings":{"CredentialsRequestTime":0.0025,"RequestSigningTime":0.1538,"HttpRequestTime":37.8593,"ResponseUnmarshallTime":10.555,"ResponseProcessingTime":10.6808,"ClientExecuteTime":49.0532},"counters":{}}
RegionFinder 208|2024-04-08T22:57:45.249Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 209|2024-04-08T22:57:45.249Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 210|2024-04-08T22:57:45.249Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 211|2024-04-08T22:57:45.301Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/day_aggs_v1/2009/10/2009-10-30.csv.gz</Key><LastModified>2023-10-18T00:47:32.864Z</LastModified><ETag>&quot;b965daaa2e02ec4d2690d48f4ae395c9&quot;</ETag><Size>137807</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/day_aggs_v1/2009/11/2009-11-02.csv.gz</Key><LastModified>2023-10-18T00:47:32.386Z</LastModified><ETag>&quot;7ed9f12a6b74216125e3da31dde191a6&quot;</ETag><Size>138486</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/day_aggs_v1/2009/11/2009-11-03.csv.gz</Key><LastModified>2023-10-18T00:47:33.015Z</LastModified><ETag>&quot;b5bc8cee67b48e2dfb4a82707fad2da2&quot;</ETag><Size>136225</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stock]
AmazonS3Client 212|2024-04-08T22:57:45.301Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Fday_aggs_v1%2F2009%2F10%2F2009-10-29.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\ncec802ba72f9acf0f6e2b65ed337e2b7a7064e4ab3b25f8889a2c0a0f8638830","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000009dc47b2425d1b36c-006614bcb8-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.0022,"RequestSigningTime":0.1256,"HttpRequestTime":35.1121,"ResponseUnmarshallTime":16.2782,"ResponseProcessingTime":16.4475,"ClientExecuteTime":51.9604},"counters":{}}
RegionFinder 213|2024-04-08T22:57:45.302Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 214|2024-04-08T22:57:45.302Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 215|2024-04-08T22:57:45.302Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 216|2024-04-08T22:57:45.374Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/day_aggs_v1/2013/10/2013-10-22.csv.gz</Key><LastModified>2023-10-18T00:40:55.380Z</LastModified><ETag>&quot;d6b71359deccef34ab864339e6f79414&quot;</ETag><Size>143451</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/day_aggs_v1/2013/10/2013-10-23.csv.gz</Key><LastModified>2023-10-18T00:40:55.583Z</LastModified><ETag>&quot;bc977fef50a4e9837788089a13017748&quot;</ETag><Size>142414</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/day_aggs_v1/2013/10/2013-10-24.csv.gz</Key><LastModified>2023-10-18T00:40:54.860Z</LastModified><ETag>&quot;8f39d569528e7649d85bbdb22600e0e2&quot;</ETag><Size>141981</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stock]
AmazonS3Client 217|2024-04-08T22:57:45.374Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Fday_aggs_v1%2F2013%2F10%2F2013-10-21.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\nbaba164e7340a49bd9f691ee10d64c27a1bfdc7b8af8786f0b28c9089866a716","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000002c2e43ea722151e6-006614bcb9-3cc386df-us-east-1"},"timings":{"CredentialsRequestTime":0.0035,"RequestSigningTime":0.1306,"HttpRequestTime":61.0992,"ResponseUnmarshallTime":10.9286,"ResponseProcessingTime":11.0352,"ClientExecuteTime":72.9022},"counters":{}}
RegionFinder 218|2024-04-08T22:57:45.374Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 219|2024-04-08T22:57:45.374Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 220|2024-04-08T22:57:45.375Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 221|2024-04-08T22:57:45.420Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/day_aggs_v1/2017/10/2017-10-11.csv.gz</Key><LastModified>2023-10-18T00:34:12.657Z</LastModified><ETag>&quot;a6f0aca1a21f4ce9b978bca826660c77&quot;</ETag><Size>151225</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/day_aggs_v1/2017/10/2017-10-12.csv.gz</Key><LastModified>2023-10-18T00:34:12.585Z</LastModified><ETag>&quot;da8881567d68c5d7ea017c9e169a265c&quot;</ETag><Size>151319</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/day_aggs_v1/2017/10/2017-10-13.csv.gz</Key><LastModified>2023-10-18T00:34:11.827Z</LastModified><ETag>&quot;025853ca052fd58704c54777b47667db&quot;</ETag><Size>151580</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stock]
AmazonS3Client 222|2024-04-08T22:57:45.421Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Fday_aggs_v1%2F2017%2F10%2F2017-10-10.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\n49fa89e7cd1d56488dfd8294dcb2706561c3188859ca22f47f9b8fbe197151f0","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000008a6d126dd3f7b5ae-006614bcb9-3cc386df-us-east-1"},"timings":{"CredentialsRequestTime":0.0047,"RequestSigningTime":0.1411,"HttpRequestTime":34.7641,"ResponseUnmarshallTime":10.8797,"ResponseProcessingTime":10.997,"ClientExecuteTime":46.204},"counters":{}}
RegionFinder 223|2024-04-08T22:57:45.421Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 224|2024-04-08T22:57:45.421Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 225|2024-04-08T22:57:45.421Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 226|2024-04-08T22:57:45.471Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/day_aggs_v1/2021/10/2021-10-01.csv.gz</Key><LastModified>2023-10-18T00:27:33.482Z</LastModified><ETag>&quot;cda84a1c48adb5a6fdce13e927b183db&quot;</ETag><Size>208077</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/day_aggs_v1/2021/10/2021-10-04.csv.gz</Key><LastModified>2023-10-18T00:27:32.863Z</LastModified><ETag>&quot;130cf693703b92ab051609380c12b9ce&quot;</ETag><Size>208585</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/day_aggs_v1/2021/10/2021-10-05.csv.gz</Key><LastModified>2023-10-18T00:27:31.664Z</LastModified><ETag>&quot;02e00d925521b4162800ec7ae28ebcba&quot;</ETag><Size>206383</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stock]
AmazonS3Client 227|2024-04-08T22:57:45.471Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Fday_aggs_v1%2F2021%2F09%2F2021-09-30.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\n59d8ae8c73fb966616e87f442ea081a530b77756451d16206e72a00fd5150a9c","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000004809d02ad85d3c45-006614bcb9-3cf5d91c-us-east-1"},"timings":{"CredentialsRequestTime":0.0031,"RequestSigningTime":0.125,"HttpRequestTime":35.8649,"ResponseUnmarshallTime":13.922,"ResponseProcessingTime":14.0544,"ClientExecuteTime":50.3382},"counters":{}}
RegionFinder 228|2024-04-08T22:57:45.471Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 229|2024-04-08T22:57:45.471Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 230|2024-04-08T22:57:45.471Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 231|2024-04-08T22:57:45.521Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/minute_aggs_v1/2005/02/2005-02-25.csv.gz</Key><LastModified>2023-10-18T17:07:29.788Z</LastModified><ETag>&quot;735339cad88875086abfa556dd965582&quot;</ETag><Size>8288789</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/minute_aggs_v1/2005/02/2005-02-28.csv.gz</Key><LastModified>2023-10-18T17:07:31.689Z</LastModified><ETag>&quot;7f127bf2613b451cda5d190483464b22&quot;</ETag><Size>8934340</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/minute_aggs_v1/2005/03/2005-03-01.csv.gz</Key><LastModified>2023-10-18T17:07:27.428Z</LastModified><ETag>&quot;69d9c007dade32057fb36f88eaf9966e&quot;</ETag><Size>8979409</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><]
AmazonS3Client 232|2024-04-08T22:57:45.521Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Fminute_aggs_v1%2F2005%2F02%2F2005-02-24.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\n15dc7d46be0131f47d1d493638b3cf5bf37c85819fc3484054d38775f271fad9","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000006558716d8d9d8259-006614bcb9-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.0022,"RequestSigningTime":0.1306,"HttpRequestTime":36.0423,"ResponseUnmarshallTime":13.5658,"ResponseProcessingTime":13.6659,"ClientExecuteTime":50.0979},"counters":{}}
RegionFinder 233|2024-04-08T22:57:45.522Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 234|2024-04-08T22:57:45.522Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 235|2024-04-08T22:57:45.522Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 236|2024-04-08T22:57:45.571Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/minute_aggs_v1/2009/02/2009-02-17.csv.gz</Key><LastModified>2023-10-18T17:00:29.593Z</LastModified><ETag>&quot;1bc4478de46ee20a805902df5553ca53&quot;</ETag><Size>12128936</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/minute_aggs_v1/2009/02/2009-02-18.csv.gz</Key><LastModified>2023-10-18T17:00:32.128Z</LastModified><ETag>&quot;1a6cd8f2ee0655eb90f91f6bc7a0f13a&quot;</ETag><Size>12225364</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/minute_aggs_v1/2009/02/2009-02-19.csv.gz</Key><LastModified>2023-10-18T17:00:27.909Z</LastModified><ETag>&quot;84231c9cf096127cca1463a77b0e996b&quot;</ETag><Size>11711328</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Content]
AmazonS3Client 237|2024-04-08T22:57:45.571Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Fminute_aggs_v1%2F2009%2F02%2F2009-02-13.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\ne0260380a46d5bebf72e723fb9220d6a15cc7f4b8159dbd8d1f09f92ca1193b5","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx0000048071e1cf678dbdc-006614bcb9-3cf5d91c-us-east-1"},"timings":{"CredentialsRequestTime":0.0026,"RequestSigningTime":0.1485,"HttpRequestTime":35.0108,"ResponseUnmarshallTime":14.2733,"ResponseProcessingTime":14.3877,"ClientExecuteTime":49.9022},"counters":{}}
RegionFinder 238|2024-04-08T22:57:45.572Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 239|2024-04-08T22:57:45.572Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 240|2024-04-08T22:57:45.572Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 241|2024-04-08T22:57:45.622Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/minute_aggs_v1/2013/02/2013-02-06.csv.gz</Key><LastModified>2023-10-18T16:53:53.422Z</LastModified><ETag>&quot;227a80e6965b0137b5733eda77f89075&quot;</ETag><Size>11028559</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/minute_aggs_v1/2013/02/2013-02-07.csv.gz</Key><LastModified>2023-10-18T16:53:48.915Z</LastModified><ETag>&quot;fe88bdad8f89f618485deaefb8fe9e34&quot;</ETag><Size>11198269</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/minute_aggs_v1/2013/02/2013-02-08.csv.gz</Key><LastModified>2023-10-18T16:53:48.565Z</LastModified><ETag>&quot;0440b6df545d5399439d032aa60c0ca2&quot;</ETag><Size>10410774</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Content]
AmazonS3Client 242|2024-04-08T22:57:45.622Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Fminute_aggs_v1%2F2013%2F02%2F2013-02-05.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\n543acf25f43a1c2a5614fa69d96b7bed8eac88e356a2ae1da9cf4d1df8774c09","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx0000046337ca1a3a9f9c9-006614bcb8-3c9fcc19-us-east-1"},"timings":{"CredentialsRequestTime":0.0024,"RequestSigningTime":0.3728,"HttpRequestTime":35.1273,"ResponseUnmarshallTime":14.9698,"ResponseProcessingTime":15.0892,"ClientExecuteTime":50.865},"counters":{}}
RegionFinder 243|2024-04-08T22:57:45.623Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 244|2024-04-08T22:57:45.623Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 245|2024-04-08T22:57:45.623Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 246|2024-04-08T22:57:45.672Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/minute_aggs_v1/2017/01/2017-01-26.csv.gz</Key><LastModified>2023-10-18T16:47:06.758Z</LastModified><ETag>&quot;c6ed7cb6ef4f56669d17db66fdfa8e6e&quot;</ETag><Size>12721646</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/minute_aggs_v1/2017/01/2017-01-27.csv.gz</Key><LastModified>2023-10-18T16:47:11.620Z</LastModified><ETag>&quot;4caf18651f481df2be203d57e69c0a5c&quot;</ETag><Size>12072275</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/minute_aggs_v1/2017/01/2017-01-30.csv.gz</Key><LastModified>2023-10-18T16:47:06.436Z</LastModified><ETag>&quot;de5eaf263641a5db1b4ba503d5802681&quot;</ETag><Size>12888687</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Content]
AmazonS3Client 247|2024-04-08T22:57:45.672Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Fminute_aggs_v1%2F2017%2F01%2F2017-01-25.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\nfa139163174bb9862c1e27224f8ac0b7e28a8c7a29531c85d0ef4836242d7fa5","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx0000097fc15a5edf49b6c-006614bcb9-3cc386df-us-east-1"},"timings":{"CredentialsRequestTime":0.0026,"RequestSigningTime":0.1187,"HttpRequestTime":36.2142,"ResponseUnmarshallTime":12.9023,"ResponseProcessingTime":13.0271,"ClientExecuteTime":49.6279},"counters":{}}
RegionFinder 248|2024-04-08T22:57:45.672Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 249|2024-04-08T22:57:45.672Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 250|2024-04-08T22:57:45.673Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 251|2024-04-08T22:57:45.727Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/minute_aggs_v1/2021/01/2021-01-15.csv.gz</Key><LastModified>2023-10-18T16:40:26.893Z</LastModified><ETag>&quot;f1145657be96cbdf9de55a4f09f4bf82&quot;</ETag><Size>19244729</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/minute_aggs_v1/2021/01/2021-01-19.csv.gz</Key><LastModified>2023-10-18T16:40:29.154Z</LastModified><ETag>&quot;638bfe371afc179795cf2cd5e0741da9&quot;</ETag><Size>19991613</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/minute_aggs_v1/2021/01/2021-01-20.csv.gz</Key><LastModified>2023-10-18T16:40:28.050Z</LastModified><ETag>&quot;6075a7a59ab0a7f5dc1b0429f52f0239&quot;</ETag><Size>19226970</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Content]
AmazonS3Client 252|2024-04-08T22:57:45.727Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Fminute_aggs_v1%2F2021%2F01%2F2021-01-14.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\n9e1a4f3143862a14c35b452dfccd485d9ed3d3185ec2c680f1b8e9b2db406fb8","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000e17c814fe42cc8e7-006614bcb9-3cf5d91c-us-east-1"},"timings":{"CredentialsRequestTime":0.0028,"RequestSigningTime":0.1193,"HttpRequestTime":36.3815,"ResponseUnmarshallTime":17.6741,"ResponseProcessingTime":17.7964,"ClientExecuteTime":54.5711},"counters":{}}
RegionFinder 253|2024-04-08T22:57:45.727Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 254|2024-04-08T22:57:45.727Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 255|2024-04-08T22:57:45.727Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 256|2024-04-08T22:57:45.773Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/quotes_v1/2004/06/2004-06-10.csv.gz</Key><LastModified>2023-09-05T03:51:25.081Z</LastModified><ETag>&quot;082aa4393f610e459ce9f93473fbdf58&quot;</ETag><Size>99590183</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/quotes_v1/2004/06/2004-06-14.csv.gz</Key><LastModified>2023-09-05T03:51:31.138Z</LastModified><ETag>&quot;9e3b72a24b85005bde3b3883276002aa-2&quot;</ETag><Size>112038095</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/quotes_v1/2004/06/2004-06-15.csv.gz</Key><LastModified>2023-09-05T03:51:30.191Z</LastModified><ETag>&quot;e71f795b39d7613f594f1376b026bc64-2&quot;</ETag><Size>109419575</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us]
AmazonS3Client 257|2024-04-08T22:57:45.773Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Fquotes_v1%2F2004%2F06%2F2004-06-09.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\n8f9f7f40fc991cf11fda1b883bc4a493c619636fa5c2c7a2a0b56525c8b09c4d","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx0000070a3725f32c7683d-006614bcb9-3cc386df-us-east-1"},"timings":{"CredentialsRequestTime":0.0023,"RequestSigningTime":0.1403,"HttpRequestTime":35.1641,"ResponseUnmarshallTime":10.1977,"ResponseProcessingTime":10.5087,"ClientExecuteTime":46.0897},"counters":{}}
RegionFinder 258|2024-04-08T22:57:45.773Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 259|2024-04-08T22:57:45.774Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 260|2024-04-08T22:57:45.774Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 261|2024-04-08T22:57:45.875Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/quotes_v1/2008/06/2008-06-02.csv.gz</Key><LastModified>2023-09-04T14:58:12.498Z</LastModified><ETag>&quot;41cd47b4762df1035d9518f864445e52-9&quot;</ETag><Size>825085145</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/quotes_v1/2008/06/2008-06-03.csv.gz</Key><LastModified>2023-09-04T14:59:48.719Z</LastModified><ETag>&quot;211043a333dfe7fa153cce5d7230766c-10&quot;</ETag><Size>963945183</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/quotes_v1/2008/06/2008-06-04.csv.gz</Key><LastModified>2023-09-04T14:59:43.749Z</LastModified><ETag>&quot;6f29749243fad0a4c6c96b00de134826-10&quot;</ETag><Size>970746340</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><K]
AmazonS3Client 262|2024-04-08T22:57:45.876Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Fquotes_v1%2F2008%2F05%2F2008-05-30.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\n270ee7b403859f79ebd90e4359dde80619b7009b6cb227f5605b1d309c089c97","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000000761d217b0c90a83-006614bcb9-3cc386df-us-east-1"},"timings":{"CredentialsRequestTime":0.0026,"RequestSigningTime":0.1215,"HttpRequestTime":35.3517,"ResponseUnmarshallTime":66.3044,"ResponseProcessingTime":66.423,"ClientExecuteTime":102.1502},"counters":{}}
RegionFinder 263|2024-04-08T22:57:45.876Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 264|2024-04-08T22:57:45.876Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 265|2024-04-08T22:57:45.876Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 266|2024-04-08T22:57:45.923Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/quotes_v1/2012/05/2012-05-18.csv.gz</Key><LastModified>2023-09-03T22:12:46.231Z</LastModified><ETag>&quot;cfcb16487030356c8efcc62389736cc3-14&quot;</ETag><Size>1324077625</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/quotes_v1/2012/05/2012-05-21.csv.gz</Key><LastModified>2023-09-03T22:10:12.027Z</LastModified><ETag>&quot;670a2371f098f8087d36a93d86a36626-12&quot;</ETag><Size>1118686785</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/quotes_v1/2012/05/2012-05-22.csv.gz</Key><LastModified>2023-09-03T22:11:07.844Z</LastModified><ETag>&quot;6bb2dd44ea3806303e41f7bfd9e8d4b5-13&quot;</ETag><Size>1238909100</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Content]
AmazonS3Client 267|2024-04-08T22:57:45.923Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Fquotes_v1%2F2012%2F05%2F2012-05-17.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\nf7780c93a4515f6cb1f34024b69083ee80e619195104da86456bae3ba388e485","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx0000093ede2407d8ccb6c-006614bcb9-3cf5d91c-us-east-1"},"timings":{"CredentialsRequestTime":0.0027,"RequestSigningTime":0.1211,"HttpRequestTime":34.3412,"ResponseUnmarshallTime":11.8856,"ResponseProcessingTime":12.0043,"ClientExecuteTime":46.7533},"counters":{}}
RegionFinder 268|2024-04-08T22:57:45.923Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 269|2024-04-08T22:57:45.923Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 270|2024-04-08T22:57:45.923Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 271|2024-04-08T22:57:45.975Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/quotes_v1/2016/05/2016-05-11.csv.gz</Key><LastModified>2023-09-03T06:35:41.544Z</LastModified><ETag>&quot;7d344acd6f54ce6130848ba181759a0d-20&quot;</ETag><Size>1966714392</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/quotes_v1/2016/05/2016-05-12.csv.gz</Key><LastModified>2023-09-03T06:37:51.691Z</LastModified><ETag>&quot;3ccebc249f1c77e466cb754f622e04a1-23&quot;</ETag><Size>2292816402</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/quotes_v1/2016/05/2016-05-13.csv.gz</Key><LastModified>2023-09-03T06:38:01.521Z</LastModified><ETag>&quot;8ef9d489c1c4075c274470f57e22fef5-24&quot;</ETag><Size>2336747678</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Content]
AmazonS3Client 272|2024-04-08T22:57:45.975Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Fquotes_v1%2F2016%2F05%2F2016-05-10.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\na7fda510e497853421b8cb6eec9536c05e62be7873bd26fe2bca9b8ee708e23c","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000001efa3e90025a270c-006614bcb9-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.0021,"RequestSigningTime":0.1166,"HttpRequestTime":36.0241,"ResponseUnmarshallTime":15.8731,"ResponseProcessingTime":16.024,"ClientExecuteTime":52.4399},"counters":{}}
RegionFinder 273|2024-04-08T22:57:45.975Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 274|2024-04-08T22:57:45.976Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 275|2024-04-08T22:57:45.976Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 276|2024-04-08T22:57:46.026Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/quotes_v1/2020/05/2020-05-01.csv.gz</Key><LastModified>2023-09-02T10:42:20.411Z</LastModified><ETag>&quot;3f3eb3c3ff98daa3f030ef2837a08b13-38&quot;</ETag><Size>3771569345</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/quotes_v1/2020/05/2020-05-04.csv.gz</Key><LastModified>2023-09-02T10:41:32.323Z</LastModified><ETag>&quot;4947f5073a1ffcab37035d93d82a25b6-37&quot;</ETag><Size>3609244533</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/quotes_v1/2020/05/2020-05-05.csv.gz</Key><LastModified>2023-09-02T10:41:27.066Z</LastModified><ETag>&quot;1e407f97eacedfe8a00256602478eb45-37&quot;</ETag><Size>3617282296</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Content]
AmazonS3Client 277|2024-04-08T22:57:46.026Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Fquotes_v1%2F2020%2F04%2F2020-04-30.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035745Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035745Z\n20240409/us-east-1/s3/aws4_request\n418b44565589635b36cbd222a0c59717ac2c15744982470178f802d658036384","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000003d0e725b0ab2613a-006614bcb9-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.0022,"RequestSigningTime":0.1028,"HttpRequestTime":36.8694,"ResponseUnmarshallTime":13.5969,"ResponseProcessingTime":13.7003,"ClientExecuteTime":50.9098},"counters":{}}
RegionFinder 278|2024-04-08T22:57:46.030Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 279|2024-04-08T22:57:46.030Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 280|2024-04-08T22:57:46.030Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 281|2024-04-08T22:57:46.082Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/trades_v1/2003/09/2003-09-24.csv.gz</Key><LastModified>2023-09-26T14:08:22.151Z</LastModified><ETag>&quot;54e18c253aacabbb639caede745ff1c5&quot;</ETag><Size>52339237</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/trades_v1/2003/09/2003-09-25.csv.gz</Key><LastModified>2023-09-26T14:07:54.957Z</LastModified><ETag>&quot;1a8caa60121648fc423c60d2d1cd3b9c&quot;</ETag><Size>51485256</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/trades_v1/2003/09/2003-09-26.csv.gz</Key><LastModified>2023-09-26T14:07:42.411Z</LastModified><ETag>&quot;6163a69bb2b6a59dfe109851049d61a5&quot;</ETag><Size>48834565</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stock]
AmazonS3Client 282|2024-04-08T22:57:46.082Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Ftrades_v1%2F2003%2F09%2F2003-09-23.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035746Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035746Z\n20240409/us-east-1/s3/aws4_request\n5275e36460371160e98b4c1a5400b8b868a1ce52b4c68b630ef4823956fb80c6","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000008949c3e9ee95b801-006614bcb9-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.0026,"RequestSigningTime":0.1111,"HttpRequestTime":36.1963,"ResponseUnmarshallTime":15.8052,"ResponseProcessingTime":15.9478,"ClientExecuteTime":52.5606},"counters":{}}
RegionFinder 283|2024-04-08T22:57:46.083Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 284|2024-04-08T22:57:46.083Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 285|2024-04-08T22:57:46.085Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 286|2024-04-08T22:57:46.142Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/trades_v1/2007/09/2007-09-14.csv.gz</Key><LastModified>2023-09-26T23:28:13.082Z</LastModified><ETag>&quot;a0ac4374aa5d862248f477fa10d19b7c-2&quot;</ETag><Size>117959415</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/trades_v1/2007/09/2007-09-17.csv.gz</Key><LastModified>2023-09-26T23:28:07.244Z</LastModified><ETag>&quot;8014f8bb127e7ad07568e0f37ab2d07f-2&quot;</ETag><Size>113768366</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/trades_v1/2007/09/2007-09-18.csv.gz</Key><LastModified>2023-09-26T23:29:47.373Z</LastModified><ETag>&quot;41f79a173497538875a7900ec236dd30-2&quot;</ETag><Size>170522795</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key]
AmazonS3Client 287|2024-04-08T22:57:46.142Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Ftrades_v1%2F2007%2F09%2F2007-09-13.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035746Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035746Z\n20240409/us-east-1/s3/aws4_request\nf34c792212036017f289f2e081a0f878ab6a74f59ca40e9fadeb97f5003690c1","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000a5c79b85904afc53-006614bcb9-3c9fcc19-us-east-1"},"timings":{"CredentialsRequestTime":0.0024,"RequestSigningTime":0.1412,"HttpRequestTime":43.2422,"ResponseUnmarshallTime":13.5847,"ResponseProcessingTime":13.7383,"ClientExecuteTime":59.3072},"counters":{}}
RegionFinder 288|2024-04-08T22:57:46.142Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 289|2024-04-08T22:57:46.142Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 290|2024-04-08T22:57:46.142Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 291|2024-04-08T22:57:46.201Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/trades_v1/2011/09/2011-09-01.csv.gz</Key><LastModified>2023-09-27T22:27:24.322Z</LastModified><ETag>&quot;967d03b9a7f4325a59865464e03be3ad-3&quot;</ETag><Size>241494280</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/trades_v1/2011/09/2011-09-02.csv.gz</Key><LastModified>2023-09-27T22:26:31.689Z</LastModified><ETag>&quot;eeb0d7bba3619161e9224272d9be4930-3&quot;</ETag><Size>213958389</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/trades_v1/2011/09/2011-09-06.csv.gz</Key><LastModified>2023-09-27T22:27:47.582Z</LastModified><ETag>&quot;31e77d1414b7740dece38bca853211ac-3&quot;</ETag><Size>251380163</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key]
AmazonS3Client 292|2024-04-08T22:57:46.201Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Ftrades_v1%2F2011%2F08%2F2011-08-31.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035746Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035746Z\n20240409/us-east-1/s3/aws4_request\n5db491acf2b985c19f25cd700498f47b832b755813342f8d5d528c1d19aa782a","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000e56048c0131304ea-006614bcb9-3cf5d91c-us-east-1"},"timings":{"CredentialsRequestTime":0.0018,"RequestSigningTime":0.083,"HttpRequestTime":37.0564,"ResponseUnmarshallTime":21.1802,"ResponseProcessingTime":21.2939,"ClientExecuteTime":58.6722},"counters":{}}
RegionFinder 293|2024-04-08T22:57:46.201Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 294|2024-04-08T22:57:46.201Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 295|2024-04-08T22:57:46.201Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 296|2024-04-08T22:57:46.253Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/trades_v1/2015/08/2015-08-25.csv.gz</Key><LastModified>2024-04-02T15:50:29.769Z</LastModified><ETag>&quot;a485c29be8d96d2cd2f2dd01517dceb1-10&quot;</ETag><Size>924833771</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/trades_v1/2015/08/2015-08-26.csv.gz</Key><LastModified>2024-04-02T15:53:54.987Z</LastModified><ETag>&quot;17ac506df27bb2e5d6ad49057dd1c718-10&quot;</ETag><Size>943875346</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/trades_v1/2015/08/2015-08-27.csv.gz</Key><LastModified>2024-04-02T15:46:37.748Z</LastModified><ETag>&quot;8be120c42c856d954a3f9950a2563c63-9&quot;</ETag><Size>825786667</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><K]
AmazonS3Client 297|2024-04-08T22:57:46.254Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Ftrades_v1%2F2015%2F08%2F2015-08-24.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035746Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035746Z\n20240409/us-east-1/s3/aws4_request\n8a9db803251151cb6402a97214baaf93ae510a6672639f799020aa65aedf90fe","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000f6181628f651316a-006614bcb9-3cc3879d-us-east-1"},"timings":{"CredentialsRequestTime":0.0009,"RequestSigningTime":0.106,"HttpRequestTime":36.6115,"ResponseUnmarshallTime":15.5835,"ResponseProcessingTime":15.6885,"ClientExecuteTime":52.6499},"counters":{}}
RegionFinder 298|2024-04-08T22:57:46.254Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 299|2024-04-08T22:57:46.254Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 300|2024-04-08T22:57:46.254Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 301|2024-04-08T22:57:46.305Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>true</IsTruncated><Contents><Key>us_stocks_sip/trades_v1/2019/08/2019-08-15.csv.gz</Key><LastModified>2023-09-30T04:34:55.870Z</LastModified><ETag>&quot;1ad01093519b0f90c080a09c759591ed-9&quot;</ETag><Size>845262755</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/trades_v1/2019/08/2019-08-16.csv.gz</Key><LastModified>2023-09-30T04:32:20.618Z</LastModified><ETag>&quot;022b89e10d4ff1cab5f2b691ed3c2ade-8&quot;</ETag><Size>701360809</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/trades_v1/2019/08/2019-08-19.csv.gz</Key><LastModified>2023-09-30T04:32:11.792Z</LastModified><ETag>&quot;7364bad22ef089bdcbeec650dcecfad6-7&quot;</ETag><Size>681688242</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key]
AmazonS3Client 302|2024-04-08T22:57:46.306Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Ftrades_v1%2F2019%2F08%2F2019-08-14.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035746Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035746Z\n20240409/us-east-1/s3/aws4_request\ndcfb521a5355cecb3b8c4b7ee9afa29933b0b7044e4eca3b477fe206d2dc2047","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx000000d3c7913457007b7-006614bcb9-3cf5d91c-us-east-1"},"timings":{"CredentialsRequestTime":0.0012,"RequestSigningTime":0.135,"HttpRequestTime":35.5828,"ResponseUnmarshallTime":15.7745,"ResponseProcessingTime":15.8808,"ClientExecuteTime":51.8689},"counters":{}}
RegionFinder 303|2024-04-08T22:57:46.306Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 304|2024-04-08T22:57:46.306Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 305|2024-04-08T22:57:46.306Z|DEBUG|Single encoded / with endpoint https://files.polygon.io/flatfiles/ for canonicalization: /flatfiles/
AmazonS3Client 306|2024-04-08T22:57:46.342Z|DEBUG|Received response (truncated to 1024 bytes): [<?xml version="1.0" encoding="UTF-8"?><ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"><Name>flatfiles</Name><Prefix></Prefix><MaxKeys>1000</MaxKeys><IsTruncated>false</IsTruncated><Contents><Key>us_stocks_sip/trades_v1/2023/08/2023-08-07.csv.gz</Key><LastModified>2023-10-04T13:28:20.800Z</LastModified><ETag>&quot;9ec0baad14f6542232d7df6471e1ace1-15&quot;</ETag><Size>1451321605</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/trades_v1/2023/08/2023-08-08.csv.gz</Key><LastModified>2023-10-04T13:27:18.789Z</LastModified><ETag>&quot;3a8f26c378e5fec571fcc7212521ea69-16&quot;</ETag><Size>1539589423</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Contents><Key>us_stocks_sip/trades_v1/2023/08/2023-08-09.csv.gz</Key><LastModified>2023-10-04T13:29:10.059Z</LastModified><ETag>&quot;9924662ce2e4392bc62607be26e4e514-15&quot;</ETag><Size>1479452149</Size><StorageClass>STANDARD</StorageClass><Type>Normal</Type></Contents><Conten]
AmazonS3Client 307|2024-04-08T22:57:46.342Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/\ncontinuation-token=us_stocks_sip%2Ftrades_v1%2F2023%2F08%2F2023-08-04.csv.gz&list-type=2\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035746Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035746Z\n20240409/us-east-1/s3/aws4_request\n83ea777c1a2a72914b2b1e8736b86ffd938f31fc027ad0540c40c1a4319ebfa1","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles/","MethodName":"ListObjectsV2Request","StatusCode":"OK","BytesProcessed":"0","AWSRequestID":"tx00000a37da4e40db50acb-006614bcb9-3c9fcc19-us-east-1"},"timings":{"CredentialsRequestTime":0.0009,"RequestSigningTime":0.1049,"HttpRequestTime":33.7212,"ResponseUnmarshallTime":2.0541,"ResponseProcessingTime":2.1686,"ClientExecuteTime":36.2308},"counters":{}}
RegionFinder 308|2024-04-08T22:57:46.345Z|INFO|Unable to find exact matched region in endpoint files.polygon.io
RegionFinder 309|2024-04-08T22:57:46.345Z|INFO|Unable to find fuzzy matched region in endpoint files.polygon.io
AWSSDKUtils 310|2024-04-08T22:57:46.346Z|DEBUG|Single encoded /us_stocks_sip/day_aggs_v1/2003/09/2003-09-10.csv.gz with endpoint https://files.polygon.io/flatfiles for canonicalization: /flatfiles/us_stocks_sip/day_aggs_v1/2003/09/2003-09-10.csv.gz
AmazonS3Client 311|2024-04-08T22:57:46.379Z|ERROR|An exception of type HttpErrorResponseException was handled in ErrorHandler. --> Amazon.Runtime.Internal.HttpErrorResponseException: Exception of type 'Amazon.Runtime.Internal.HttpErrorResponseException' was thrown.
   at Amazon.Runtime.HttpWebRequestMessage.ProcessHttpResponseMessage(HttpResponseMessage responseMessage)
   at Amazon.Runtime.HttpWebRequestMessage.GetResponseAsync(CancellationToken cancellationToken)
   at Amazon.Runtime.Internal.HttpHandler`1.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.Runtime.Internal.RedirectHandler.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.Runtime.Internal.Unmarshaller.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.S3.Internal.AmazonS3ResponseHandler.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.Runtime.Internal.ErrorHandler.InvokeAsync[T](IExecutionContext executionContext)
AmazonS3Client 312|2024-04-08T22:57:46.393Z|ERROR|Received error response: [] --> Amazon.S3.AmazonS3Exception: Error making request with Error Code Forbidden and Http Status Code Forbidden. No further error information was returned by the service.
 ---> Amazon.Runtime.Internal.HttpErrorResponseException: Exception of type 'Amazon.Runtime.Internal.HttpErrorResponseException' was thrown.
   at Amazon.Runtime.HttpWebRequestMessage.ProcessHttpResponseMessage(HttpResponseMessage responseMessage)
   at Amazon.Runtime.HttpWebRequestMessage.GetResponseAsync(CancellationToken cancellationToken)
   at Amazon.Runtime.Internal.HttpHandler`1.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.Runtime.Internal.RedirectHandler.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.Runtime.Internal.Unmarshaller.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.S3.Internal.AmazonS3ResponseHandler.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.Runtime.Internal.ErrorHandler.InvokeAsync[T](IExecutionContext executionContext)
   --- End of inner exception stack trace ---
AmazonS3Client 313|2024-04-08T22:57:46.398Z|ERROR|AmazonS3Exception making request GetObjectRequest to https://files.polygon.io/flatfiles. Attempt 1. --> Amazon.S3.AmazonS3Exception: Error making request with Error Code Forbidden and Http Status Code Forbidden. No further error information was returned by the service.
 ---> Amazon.Runtime.Internal.HttpErrorResponseException: Exception of type 'Amazon.Runtime.Internal.HttpErrorResponseException' was thrown.
   at Amazon.Runtime.HttpWebRequestMessage.ProcessHttpResponseMessage(HttpResponseMessage responseMessage)
   at Amazon.Runtime.HttpWebRequestMessage.GetResponseAsync(CancellationToken cancellationToken)
   at Amazon.Runtime.Internal.HttpHandler`1.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.Runtime.Internal.RedirectHandler.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.Runtime.Internal.Unmarshaller.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.S3.Internal.AmazonS3ResponseHandler.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.Runtime.Internal.ErrorHandler.InvokeAsync[T](IExecutionContext executionContext)
   --- End of inner exception stack trace ---
   at Amazon.Runtime.Internal.HttpErrorResponseExceptionHandler.HandleExceptionStream(IRequestContext requestContext, IWebResponseData httpErrorResponse, HttpErrorResponseException exception, Stream responseStream)
   at Amazon.Runtime.Internal.HttpErrorResponseExceptionHandler.HandleExceptionAsync(IExecutionContext executionContext, HttpErrorResponseException exception)
   at Amazon.Runtime.Internal.ExceptionHandler`1.HandleAsync(IExecutionContext executionContext, Exception exception)
   at Amazon.Runtime.Internal.ErrorHandler.ProcessExceptionAsync(IExecutionContext executionContext, Exception exception)
   at Amazon.Runtime.Internal.ErrorHandler.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.Runtime.Internal.CallbackHandler.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.Runtime.Internal.Signer.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.S3.Internal.S3Express.S3ExpressPreSigner.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.Runtime.Internal.EndpointDiscoveryHandler.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.Runtime.Internal.EndpointDiscoveryHandler.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.Runtime.Internal.CredentialsRetriever.InvokeAsync[T](IExecutionContext executionContext)
   at Amazon.Runtime.Internal.RetryHandler.InvokeAsync[T](IExecutionContext executionContext)
AmazonS3Client 314|2024-04-08T22:57:46.399Z|INFO|Request metrics: {"properties":{"AsyncCall":"True","CanonicalRequest":"GET\n/flatfiles/us_stocks_sip/day_aggs_v1/2003/09/2003-09-10.csv.gz\n\nhost:files.polygon.io\nuser-agent:aws-sdk-dotnet-coreclr/3.7.307.11 ua/2.0 os/windows#10.0.22631.0 md/ARCH#X64 lang/.NET_Core#8.0.3 md/aws-sdk-dotnet-core#3.7.303.10 api/S3#3.7.307.11 cfg/retry-mode#legacy md/ClientAsync cfg/init-coll#1\nx-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\nx-amz-date:20240409T035746Z\n\nhost;user-agent;x-amz-content-sha256;x-amz-date\ne3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855","StringToSign":"AWS4-HMAC-SHA256\n20240409T035746Z\n20240409/us-east-1/s3/aws4_request\nde18dd6bf03a4ca7f209e8654a791eb9873b52e8e9f40bd7f4d342aaf2a3e815","ServiceName":"AmazonS3","ServiceEndpoint":"https://files.polygon.io/flatfiles","MethodName":"GetObjectRequest","Exception":"Amazon.Runtime.Internal.HttpErrorResponseException: Exception of type 'Amazon.Runtime.Internal.HttpErrorResponseException' was thrown.\r\n   at Amazon.Runtime.HttpWebRequestMessage.ProcessHttpResponseMessage(HttpResponseMessage responseMessage)\r\n   at Amazon.Runtime.HttpWebRequestMessage.GetResponseAsync(CancellationToken cancellationToken)\r\n   at Amazon.Runtime.Internal.HttpHandler`1.InvokeAsync[T](IExecutionContext executionContext)\r\n   at Amazon.Runtime.Internal.RedirectHandler.InvokeAsync[T](IExecutionContext executionContext)\r\n   at Amazon.Runtime.Internal.Unmarshaller.InvokeAsync[T](IExecutionContext executionContext)\r\n   at Amazon.S3.Internal.AmazonS3ResponseHandler.InvokeAsync[T](IExecutionContext executionContext)\r\n   at Amazon.Runtime.Internal.ErrorHandler.InvokeAsync[T](IExecutionContext executionContext)","StatusCode":"Forbidden","AWSRequestID":null,"AWSErrorCode":"Forbidden"},"timings":{"CredentialsRequestTime":0.0039,"RequestSigningTime":1.0192,"HttpRequestTime":30.2601,"ClientExecuteTime":56.073},"counters":{}}

Thanks for the logs, but I actually asked a few other people on our team yesterday and although we try to support third party as much as possible we can't help you here. You'll have to reach out to Polygon and ask them to figure out why a request that works in S3 directly fails with their service.

You can share the logs you have (the Request metrics entry has the actual HTTP request sent by the SDK) to help their investigation (for example, by comparing it with the request from the CLI available via the --debug option).

Comments on closed issues are hard for our team to see.
If you need more assistance, please either tag a team member or open a new issue that references this one.
If you wish to keep having a conversation with other community members under this issue feel free to do so.