data/notebooks/Lab/FG_h3_indictator_calc_sql.ipynb
{
"cells": [
{
"cell_type": "markdown",
"id": "9aaf8da1",
"metadata": {},
"source": [
"# 1. Calculation of indicator record value: \n",
"\n",
"This notebook contains a QA of the queries implemented for the impact calculation in the main LG application. The main purpose is to update these calculations according to the improvements on the methodology: https://docs.google.com/document/d/1IDuYWOllQ2fTf2ZeBUmOtEZpqht2rqMot3G9W3CjEjE/edit#\n",
"\n",
"As part of new strategy the indicator record entity will include:\n",
"\n",
" - Indicator record value: value of impact in my geometry\n",
" - Indicator recod scaler: equivalent to total commodity production in my location\n",
" - Pointer: h3 table and column name to distribute the impact\n",
"\n",
"In this notebook we will also be covering two approaches to compute the indicator record value:\n",
"\n",
" a. Get the total indicator record value in my geometry by summing the impact in all the hexagons within my geometry.\n",
" b. Get the indicator record value in my geometry by computing the average risk in all the hexagons within my geometry and multiply that value by the total volume."
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "07ec56c7",
"metadata": {},
"outputs": [],
"source": [
"# import libraries\n",
"from psycopg2.pool import ThreadedConnectionPool\n",
"\n",
"import pandas as pd\n",
"from tqdm import tqdm\n",
"import json"
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "a7fbb9de",
"metadata": {},
"outputs": [],
"source": [
"#set env\n",
"## env file for gcs upload\n",
"env_path = \".env\"\n",
"with open(env_path) as f:\n",
" env = {}\n",
" for line in f:\n",
" env_key, _val = line.split(\"=\", 1)\n",
" env_value = _val.split(\"\\n\")[0]\n",
" env[env_key] = env_value\n",
" \n",
"#list(env.keys())\n",
"\n",
"# set conexion to local ddbb\n",
"postgres_thread_pool = ThreadedConnectionPool(\n",
" 1, \n",
" 50,\n",
" host=env['API_POSTGRES_HOST'],\n",
" port=env['API_POSTGRES_PORT'],\n",
" user=env['API_POSTGRES_USERNAME'],\n",
" password=env['API_POSTGRES_PASSWORD']\n",
")\n",
"\n",
"#get list of sourcing records to iterate:\n",
"conn = postgres_thread_pool.getconn()\n",
"cursor = conn.cursor()"
]
},
{
"cell_type": "markdown",
"id": "410847d4",
"metadata": {},
"source": [
"## Compute indicator record value as sum of impacts in area:\n",
"\n",
"As summary the formulas to compute each of the landgriffon impact indicators are shown below:\n",
" \n",
"### Water impacts \n",
"\n",
" water imapct (m3/yr) = Sum(BWF (mm/yr * tonne) * 0.001 (unit conversion)) * Volume (tonnes) \n",
" / /\n",
" per cell per region\n",
"### Land impact:\n",
"\n",
" Land impact (ha/yr) = (Harvested area (ha) / Production (tonnes)) * Volume (tonnes)\n",
" \n",
" \n",
"### Deforestation:\n",
"\n",
" Deforestation impact (ha/yr) = land impact (ha/yr) * deforestation mask (unitless)\n",
"\n",
"### Carbon:\n",
"\n",
" Carbon impact (tCO2e/yr) = net forest carbo emisions (tCO2e/ha) * Deforestation impact (ha/yr)\n",
" \n",
" \n",
"### Biodiversity:\n",
"\n",
" Biodiversity impact (PDF/yr) = PSL(PDF m⁻²) * 10⁴(m² ha⁻¹) * Deforestation impact (ha/yr)\n",
"\n",
" "
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "7105b29e",
"metadata": {},
"outputs": [],
"source": [
"def psql(query):\n",
" try:\n",
" cursor.execute(query)\n",
" return cursor.fetchall()\n",
" except Exception as e:\n",
" conn.rollback()\n",
" print(e)\n"
]
},
{
"cell_type": "code",
"execution_count": 12,
"id": "ccd93477",
"metadata": {},
"outputs": [],
"source": [
"SQL_GET_H3_UNCOMPACT_GEO_REGION = \"\"\"\n",
"CREATE OR REPLACE FUNCTION get_h3_uncompact_geo_region(geo_region_id uuid, h3_resolution int)\n",
"RETURNS TABLE (h3index h3index) AS \n",
"$$\n",
" SELECT h3_uncompact(geo_region.\"h3Compact\"::h3index[], h3_resolution) h3index\n",
" FROM geo_region WHERE geo_region.id = geo_region_id\n",
"$$ \n",
"LANGUAGE SQL;\n",
"\"\"\"\n",
"\n",
"SQL_SUM_H3_GRID_OVER_GEO_REGION = SQL_GET_H3_UNCOMPACT_GEO_REGION+\"\"\"\n",
"CREATE OR REPLACE FUNCTION sum_h3_grid_over_georegion(\n",
" geo_region_id uuid, \n",
" h3_resolution int,\n",
" h3_table_name varchar, \n",
" h3_column_name varchar\n",
")\n",
"RETURNS float AS\n",
"$$\n",
" DECLARE\n",
" sum float;\n",
" BEGIN\n",
" EXECUTE format(\n",
" 'SELECT sum(h3grid.%I)\n",
" FROM\n",
" get_h3_uncompact_geo_region($1, $2) geo_region\n",
" INNER JOIN %I h3grid ON h3grid.h3index = geo_region.h3index;\n",
" ', h3_column_name, h3_table_name)\n",
" USING geo_region_id, h3_resolution\n",
" INTO sum;\n",
" RETURN sum;\n",
" END;\n",
"$$\n",
"LANGUAGE plpgsql;\n",
"\"\"\"\n",
"\n",
"SQL_SUMPROD_H3_GRIDS_OVER_GEOREGION = SQL_GET_H3_UNCOMPACT_GEO_REGION+\"\"\"\n",
"CREATE OR REPLACE FUNCTION sumprod_h3_grids_over_georegion(\n",
" geo_region_id uuid,\n",
" h3_resolution int,\n",
" h3_table_name_1 varchar,\n",
" h3_column_name_1 varchar,\n",
" h3_table_name_2 varchar,\n",
" h3_column_name_2 varchar\n",
")\n",
"RETURNS float AS\n",
"$$\n",
" DECLARE\n",
" sumprod float;\n",
" BEGIN\n",
" EXECUTE format(\n",
" 'SELECT sum(h3grid_1.%I * h3grid_2.%I)\n",
" FROM\n",
" get_h3_uncompact_geo_region($1, $2) geo_region\n",
" INNER JOIN %I h3grid_1 ON h3grid_1.h3index = geo_region.h3index\n",
" INNER JOIN %I h3grid_2 ON h3grid_2.h3index = geo_region.h3index;\n",
" ', h3_column_name_1, h3_column_name_2, h3_table_name_1, h3_table_name_2)\n",
" USING geo_region_id, h3_resolution\n",
" INTO sumprod;\n",
" RETURN sumprod;\n",
" END;\n",
"$$\n",
"LANGUAGE plpgsql;\n",
"\"\"\"\n",
"\n",
"SQL_GET_H3_TABLE_COLUMN_FOR_MATERIAL = \"\"\"\n",
"CREATE OR REPLACE FUNCTION get_h3_table_column_for_material(material_id uuid, h3_data_type material_to_h3_type_enum)\n",
"RETURNS TABLE (h3_table_name varchar, h3_column_name varchar, h3_resolution int) AS\n",
"$$\n",
" SELECT h3_data.\"h3tableName\", h3_data.\"h3columnName\", h3_data.\"h3resolution\"\n",
" FROM h3_data\n",
" INNER JOIN material_to_h3 ON material_to_h3.\"h3DataId\" = h3_data.id\n",
" WHERE material_to_h3.\"materialId\" = material_id \n",
" AND material_to_h3.type = h3_data_type\n",
" LIMIT 1;\n",
"$$\n",
"LANGUAGE SQL;\n",
"\"\"\"\n",
"\n",
"SQL_SUM_MATERIAL_OVER_GEO_REGION = SQL_SUM_H3_GRID_OVER_GEO_REGION+SQL_GET_H3_TABLE_COLUMN_FOR_MATERIAL+\"\"\"\n",
"CREATE OR REPLACE FUNCTION sum_material_over_georegion(\n",
" geo_region_id uuid, \n",
" material_id uuid,\n",
" h3_data_type material_to_h3_type_enum\n",
")\n",
"RETURNS float AS\n",
"$$\n",
" DECLARE\n",
" h3_table_name varchar;\n",
" h3_column_name varchar;\n",
" h3_resolution integer;\n",
" sum float;\n",
"\n",
" BEGIN\n",
" -- Get h3data table name and column name for given material\n",
" SELECT * INTO h3_table_name, h3_column_name, h3_resolution\n",
" FROM get_h3_table_column_for_material(material_id, h3_data_type);\n",
"\n",
" -- Sum table column over region\n",
" SELECT sum_h3_grid_over_georegion(geo_region_id, h3_resolution, h3_table_name, h3_column_name) \n",
" INTO sum;\n",
" RETURN sum;\n",
" END;\n",
"$$\n",
"LANGUAGE plpgsql;\n",
"\"\"\"\n",
"\n",
"SQL_SUM_WEIGHTED_DEFORESTATION_OVER_GEO_REGION = \"\"\"\n",
"CREATE OR REPLACE FUNCTION sum_weighted_deforestation_over_georegion(\n",
" geo_region_id uuid, \n",
" material_id uuid,\n",
" h3_data_type material_to_h3_type_enum\n",
")\n",
"RETURNS float AS\n",
"$$\n",
" DECLARE\n",
" material_h3_table_name varchar;\n",
" material_h3_column_name varchar;\n",
" h3_resolution integer;\n",
" deforestation_h3_table_name varchar := 'h3_grid_deforestation_global';\n",
" deforestation_h3_column_name varchar := 'hansenLoss2019';\n",
" sum float;\n",
"\n",
" BEGIN\n",
" -- Get h3data table name and column name for given material\n",
" SELECT * INTO material_h3_table_name, material_h3_column_name, h3_resolution\n",
" FROM get_h3_table_column_for_material(material_id, h3_data_type);\n",
"\n",
" -- Sum table column over region\n",
" EXECUTE format(\n",
" 'SELECT sum(h3grid_mat.%I * h3grid_def.%I)\n",
" FROM\n",
" get_h3_uncompact_geo_region($1, $2) geo_region\n",
" INNER JOIN %I h3grid_mat ON h3grid_mat.h3index = geo_region.h3index\n",
" INNER JOIN %I h3grid_def ON h3grid_def.h3index = geo_region.h3index;\n",
" ', material_h3_column_name, deforestation_h3_column_name, material_h3_table_name, deforestation_h3_table_name)\n",
" USING geo_region_id, h3_resolution\n",
" INTO sum;\n",
" RETURN sum;\n",
" END;\n",
"$$\n",
"LANGUAGE plpgsql;\n",
"\"\"\"\n",
"\n",
"SQL_SUM_WEIGHTED_BIODIVERSITY_OVER_GEO_REGION = \"\"\"\n",
"CREATE OR REPLACE FUNCTION sum_weighted_biodiversity_over_georegion(\n",
" geo_region_id uuid, \n",
" material_id uuid,\n",
" h3_data_type material_to_h3_type_enum\n",
")\n",
"RETURNS float AS\n",
"$$\n",
" DECLARE\n",
" material_h3_table_name varchar;\n",
" material_h3_column_name varchar;\n",
" h3_resolution integer;\n",
" deforestation_h3_table_name varchar := 'h3_grid_deforestation_global';\n",
" deforestation_h3_column_name varchar := 'hansenLoss2019';\n",
" bio_h3_table_name varchar := 'h3_grid_bio_global';\n",
" bio_h3_column_name varchar := 'lciaPslRPermanentCrops';\n",
" sum float;\n",
"\n",
" BEGIN\n",
" -- Get h3data table name and column name for given material --\n",
" SELECT * INTO material_h3_table_name, material_h3_column_name, h3_resolution\n",
" FROM get_h3_table_column_for_material(material_id, h3_data_type);\n",
"\n",
" -- Sum deforestation times biodiversity where material is produced --\n",
" EXECUTE format(\n",
" 'SELECT sum(h3grid_mat.%I * h3grid_def.%I * h3grid_bio.%I * (1/0.0001))\n",
" FROM get_h3_uncompact_geo_region($1, $2) geo_region\n",
" INNER JOIN %I h3grid_mat ON h3grid_mat.h3index = geo_region.h3index\n",
" INNER JOIN %I h3grid_def ON h3grid_def.h3index = geo_region.h3index\n",
" INNER JOIN %I h3grid_bio ON h3grid_bio.h3index = geo_region.h3index;', \n",
" material_h3_column_name, \n",
" deforestation_h3_column_name, \n",
" bio_h3_column_name,\n",
" material_h3_table_name,\n",
" deforestation_h3_table_name,\n",
" bio_h3_table_name\n",
" )\n",
" USING geo_region_id, h3_resolution\n",
" INTO sum;\n",
" RETURN sum;\n",
" END;\n",
"$$\n",
"LANGUAGE plpgsql;\n",
"\"\"\"\n",
"\n",
"SQL_SUM_WEIGHTED_CARBON_OVER_GEO_REGION = \"\"\"\n",
"CREATE OR REPLACE FUNCTION sum_weighted_carbon_over_georegion(\n",
" geo_region_id uuid, \n",
" material_id uuid,\n",
" h3_data_type material_to_h3_type_enum\n",
")\n",
"RETURNS float AS\n",
"$$\n",
" DECLARE\n",
" material_h3_table_name varchar;\n",
" material_h3_column_name varchar;\n",
" h3_resolution integer;\n",
" deforestation_h3_table_name varchar := 'h3_grid_deforestation_global';\n",
" deforestation_h3_column_name varchar := 'hansenLoss2019';\n",
" carbon_h3_table_name varchar := 'h3_grid_carbon_global';\n",
" carbon_h3_column_name varchar := 'earthstat2000GlobalHectareEmissions';\n",
" sum float;\n",
"\n",
" BEGIN\n",
" -- Get h3data table name and column name for given material --\n",
" SELECT * INTO material_h3_table_name, material_h3_column_name, h3_resolution\n",
" FROM get_h3_table_column_for_material(material_id, h3_data_type);\n",
"\n",
" -- Sum deforestation times carbon where material is produced --\n",
" EXECUTE format(\n",
" 'SELECT sum(h3grid_mat.%I * h3grid_def.%I * h3grid_carbon.%I)\n",
" FROM get_h3_uncompact_geo_region($1, $2) geo_region\n",
" INNER JOIN %I h3grid_mat ON h3grid_mat.h3index = geo_region.h3index\n",
" INNER JOIN %I h3grid_def ON h3grid_def.h3index = geo_region.h3index\n",
" INNER JOIN %I h3grid_carbon ON h3grid_carbon.h3index = geo_region.h3index;', \n",
" material_h3_column_name, \n",
" deforestation_h3_column_name, \n",
" carbon_h3_column_name,\n",
" material_h3_table_name,\n",
" deforestation_h3_table_name,\n",
" carbon_h3_table_name\n",
" )\n",
" USING geo_region_id, h3_resolution\n",
" INTO sum;\n",
" RETURN sum;\n",
" END;\n",
"$$\n",
"LANGUAGE plpgsql;\n",
"\"\"\"\n",
"\n",
"SQL_SUM_WEIGHTED_WATER_OVER_GEO_REGION = \"\"\"\n",
"CREATE OR REPLACE FUNCTION sum_weighted_water_over_georegion(\n",
" geo_region_id uuid\n",
")\n",
"RETURNS float AS\n",
"$$\n",
" DECLARE\n",
" water_h3_table_name varchar := 'h3_grid_wf_global';\n",
" water_h3_column_name varchar := 'wfBltotMmyrT';\n",
" h3_resolution integer := 6;\n",
" sum float;\n",
"\n",
" BEGIN\n",
"\n",
" -- Sum deforestation times carbon where material is produced --\n",
" EXECUTE format(\n",
" 'SELECT sum(h3grid_water.%I * 0.001)\n",
" FROM get_h3_uncompact_geo_region($1, $2) geo_region\n",
" INNER JOIN %I h3grid_water ON h3grid_water.h3index = geo_region.h3index;', \n",
" water_h3_column_name, \n",
" water_h3_table_name\n",
" )\n",
" USING geo_region_id, h3_resolution\n",
" INTO sum;\n",
" RETURN sum;\n",
" END;\n",
"$$\n",
"LANGUAGE plpgsql;\n",
"\"\"\""
]
},
{
"cell_type": "code",
"execution_count": 13,
"id": "4929570b",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 8.05 ms, sys: 1.5 ms, total: 9.55 ms\n",
"Wall time: 41.8 s\n"
]
},
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>id</th>\n",
" <th>production</th>\n",
" <th>harvested_area</th>\n",
" <th>raw_deforestation</th>\n",
" <th>raw_biodiversity</th>\n",
" <th>raw_carbon</th>\n",
" <th>raw_water</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>8dce097b-0376-4cc8-b662-793cbe5b1383</td>\n",
" <td>3.197394e+04</td>\n",
" <td>3.149400e+04</td>\n",
" <td>2.965525e+04</td>\n",
" <td>4.138369e+09</td>\n",
" <td>6.836626e+04</td>\n",
" <td>1.231743e+08</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>90f9d8d6-927e-4f76-99d0-29b0d281001b</td>\n",
" <td>9.303148e+04</td>\n",
" <td>1.368110e+05</td>\n",
" <td>1.362851e+05</td>\n",
" <td>1.145257e+10</td>\n",
" <td>9.311942e+05</td>\n",
" <td>6.977503e+06</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>337f942e-155d-477c-b35e-247b84144491</td>\n",
" <td>9.806474e+04</td>\n",
" <td>1.872913e+04</td>\n",
" <td>1.861770e+04</td>\n",
" <td>1.744553e+09</td>\n",
" <td>1.887308e+05</td>\n",
" <td>4.829850e+09</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>68211ccb-625d-461e-821e-ba5923d7c51f</td>\n",
" <td>5.259789e+05</td>\n",
" <td>7.618299e+05</td>\n",
" <td>5.864385e+05</td>\n",
" <td>6.418257e+10</td>\n",
" <td>4.192368e+06</td>\n",
" <td>2.486174e+11</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>49e12f5e-b9eb-4b8a-be62-fa548fc1352f</td>\n",
" <td>4.661946e+06</td>\n",
" <td>2.990404e+06</td>\n",
" <td>2.820604e+06</td>\n",
" <td>1.862220e+11</td>\n",
" <td>9.925858e+06</td>\n",
" <td>1.590841e+10</td>\n",
" </tr>\n",
" <tr>\n",
" <th>5</th>\n",
" <td>caf46250-e864-4ab9-a6c6-fad6fd7d0163</td>\n",
" <td>1.928499e+06</td>\n",
" <td>2.834290e+06</td>\n",
" <td>2.764138e+06</td>\n",
" <td>1.986828e+11</td>\n",
" <td>2.145601e+07</td>\n",
" <td>4.829850e+09</td>\n",
" </tr>\n",
" <tr>\n",
" <th>6</th>\n",
" <td>0d237cb4-d5df-402a-a73b-b72fb12c73fe</td>\n",
" <td>3.775885e+06</td>\n",
" <td>5.318659e+06</td>\n",
" <td>5.066399e+06</td>\n",
" <td>2.974967e+11</td>\n",
" <td>6.634060e+07</td>\n",
" <td>8.478840e+12</td>\n",
" </tr>\n",
" <tr>\n",
" <th>7</th>\n",
" <td>baa2180c-74bd-4764-a049-2469c6047c01</td>\n",
" <td>2.517753e+04</td>\n",
" <td>1.916179e+04</td>\n",
" <td>1.906270e+04</td>\n",
" <td>8.411893e+08</td>\n",
" <td>1.010275e+05</td>\n",
" <td>2.486174e+11</td>\n",
" </tr>\n",
" <tr>\n",
" <th>8</th>\n",
" <td>f1ff3505-4f05-4b5d-bb76-2ddd8115abbf</td>\n",
" <td>3.699012e+04</td>\n",
" <td>5.487284e+05</td>\n",
" <td>5.310155e+05</td>\n",
" <td>4.079312e+10</td>\n",
" <td>1.852687e+06</td>\n",
" <td>1.590841e+10</td>\n",
" </tr>\n",
" <tr>\n",
" <th>9</th>\n",
" <td>2264a013-60b7-4988-b39c-41dcf0282979</td>\n",
" <td>1.710592e+02</td>\n",
" <td>1.168384e+06</td>\n",
" <td>9.546428e+05</td>\n",
" <td>9.483591e+10</td>\n",
" <td>7.503546e+06</td>\n",
" <td>2.486174e+11</td>\n",
" </tr>\n",
" <tr>\n",
" <th>10</th>\n",
" <td>1f1dfef7-a780-438c-b3c4-57c55bb32c4f</td>\n",
" <td>3.698769e+06</td>\n",
" <td>8.276218e+05</td>\n",
" <td>2.630313e+05</td>\n",
" <td>1.220432e+10</td>\n",
" <td>1.267049e+05</td>\n",
" <td>6.614878e+10</td>\n",
" </tr>\n",
" <tr>\n",
" <th>11</th>\n",
" <td>c97bb886-1e36-4255-b849-485c9ed169dd</td>\n",
" <td>5.200000e+00</td>\n",
" <td>1.400000e+00</td>\n",
" <td>1.400000e+00</td>\n",
" <td>5.699709e+04</td>\n",
" <td>8.009828e-01</td>\n",
" <td>3.934550e+06</td>\n",
" </tr>\n",
" <tr>\n",
" <th>12</th>\n",
" <td>b9fa2e17-fae5-40cc-80b4-912e787b4ca2</td>\n",
" <td>1.470238e+02</td>\n",
" <td>2.070759e+02</td>\n",
" <td>2.070759e+02</td>\n",
" <td>5.128219e+06</td>\n",
" <td>6.376891e+02</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>13</th>\n",
" <td>624febb8-7946-4c42-b55a-6777a24ff252</td>\n",
" <td>5.248870e+02</td>\n",
" <td>3.364660e+02</td>\n",
" <td>3.364660e+02</td>\n",
" <td>5.196988e+06</td>\n",
" <td>1.204438e+03</td>\n",
" <td>1.087875e+05</td>\n",
" </tr>\n",
" <tr>\n",
" <th>14</th>\n",
" <td>2e704843-0316-4efe-a48d-97ee8fd603d6</td>\n",
" <td>3.621089e+02</td>\n",
" <td>2.321211e+02</td>\n",
" <td>2.321211e+02</td>\n",
" <td>2.134869e+07</td>\n",
" <td>2.078573e+02</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>15</th>\n",
" <td>f03201e9-56dd-4999-a374-10c00547e51b</td>\n",
" <td>1.754596e+01</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>16</th>\n",
" <td>a8eb0631-8887-40bc-b7e1-8c7416d02949</td>\n",
" <td>3.563344e+02</td>\n",
" <td>3.708378e+02</td>\n",
" <td>3.708378e+02</td>\n",
" <td>1.766912e+07</td>\n",
" <td>2.909740e+02</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>17</th>\n",
" <td>e73066ff-195c-4aa4-91fa-abbfa1e25142</td>\n",
" <td>1.329811e+05</td>\n",
" <td>8.524427e+04</td>\n",
" <td>8.039210e+04</td>\n",
" <td>1.241721e+09</td>\n",
" <td>2.457085e+05</td>\n",
" <td>8.830236e+08</td>\n",
" </tr>\n",
" <tr>\n",
" <th>18</th>\n",
" <td>956a915b-6df8-4676-b2c8-921739499b61</td>\n",
" <td>1.571000e+02</td>\n",
" <td>4.540001e+01</td>\n",
" <td>3.630000e+01</td>\n",
" <td>1.770144e+07</td>\n",
" <td>5.483071e+01</td>\n",
" <td>1.393378e+11</td>\n",
" </tr>\n",
" <tr>\n",
" <th>19</th>\n",
" <td>bb353cb9-126f-40f4-8202-8f3815a8c041</td>\n",
" <td>7.482509e+04</td>\n",
" <td>4.796479e+04</td>\n",
" <td>4.782171e+04</td>\n",
" <td>4.583155e+09</td>\n",
" <td>1.524709e+05</td>\n",
" <td>4.087622e+07</td>\n",
" </tr>\n",
" <tr>\n",
" <th>20</th>\n",
" <td>5272beda-30b0-4680-8dd3-799b25ad0d13</td>\n",
" <td>2.896721e+02</td>\n",
" <td>1.856873e+02</td>\n",
" <td>1.856873e+02</td>\n",
" <td>2.868089e+06</td>\n",
" <td>7.091985e+02</td>\n",
" <td>6.474029e+05</td>\n",
" </tr>\n",
" <tr>\n",
" <th>21</th>\n",
" <td>ff16610a-76f5-4a0a-8272-de4406369bdf</td>\n",
" <td>1.550000e+01</td>\n",
" <td>1.990000e+01</td>\n",
" <td>1.990000e+01</td>\n",
" <td>2.210496e+05</td>\n",
" <td>1.489013e+00</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>22</th>\n",
" <td>2ac82af7-a04c-46bd-9456-d76a7ff7885d</td>\n",
" <td>2.343000e+02</td>\n",
" <td>1.136000e+02</td>\n",
" <td>1.136000e+02</td>\n",
" <td>1.313562e+05</td>\n",
" <td>9.846588e+00</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>23</th>\n",
" <td>13f66059-fbb8-4be3-b037-90da2201abd3</td>\n",
" <td>7.951180e+04</td>\n",
" <td>2.649087e+04</td>\n",
" <td>1.491680e+04</td>\n",
" <td>7.909062e+08</td>\n",
" <td>6.433745e+04</td>\n",
" <td>2.974427e+09</td>\n",
" </tr>\n",
" <tr>\n",
" <th>24</th>\n",
" <td>6046ca37-bba0-4df1-8bce-aa7b04c773f7</td>\n",
" <td>1.330938e+01</td>\n",
" <td>4.144100e+03</td>\n",
" <td>4.144100e+03</td>\n",
" <td>1.894969e+07</td>\n",
" <td>2.368986e+02</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>25</th>\n",
" <td>39dda736-1b7e-4bcd-a632-2555aa1a8cfa</td>\n",
" <td>3.582639e+05</td>\n",
" <td>2.144552e+05</td>\n",
" <td>2.076870e+05</td>\n",
" <td>2.353510e+09</td>\n",
" <td>5.837719e+04</td>\n",
" <td>3.779031e+08</td>\n",
" </tr>\n",
" <tr>\n",
" <th>26</th>\n",
" <td>e1d950f2-94cb-4691-bb7f-db3dc5b7116c</td>\n",
" <td>1.147071e+00</td>\n",
" <td>1.405276e+03</td>\n",
" <td>1.405276e+03</td>\n",
" <td>1.411389e+06</td>\n",
" <td>3.475668e+02</td>\n",
" <td>1.471730e+02</td>\n",
" </tr>\n",
" <tr>\n",
" <th>27</th>\n",
" <td>f7f6d687-e7ca-48d3-95da-b505466a640b</td>\n",
" <td>9.694602e+04</td>\n",
" <td>6.214490e+04</td>\n",
" <td>4.608034e+04</td>\n",
" <td>5.478709e+09</td>\n",
" <td>1.720228e+05</td>\n",
" <td>3.556039e+08</td>\n",
" </tr>\n",
" <tr>\n",
" <th>28</th>\n",
" <td>0ee56d02-2420-408e-838c-0cd68ed67c34</td>\n",
" <td>1.065841e+01</td>\n",
" <td>6.698697e+02</td>\n",
" <td>6.698697e+02</td>\n",
" <td>8.423791e+06</td>\n",
" <td>3.669816e+02</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>29</th>\n",
" <td>8a34d193-2a1c-4583-b330-17d8975d04e6</td>\n",
" <td>1.305452e+06</td>\n",
" <td>8.676576e+05</td>\n",
" <td>7.196533e+05</td>\n",
" <td>1.110695e+11</td>\n",
" <td>7.960373e+05</td>\n",
" <td>2.805512e+12</td>\n",
" </tr>\n",
" <tr>\n",
" <th>30</th>\n",
" <td>83f1fb6f-20e6-41b4-9911-97c3295de6bd</td>\n",
" <td>8.540000e+01</td>\n",
" <td>5.970000e+01</td>\n",
" <td>5.970000e+01</td>\n",
" <td>1.242826e+05</td>\n",
" <td>2.626208e+00</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" <tr>\n",
" <th>31</th>\n",
" <td>17908797-63e6-4435-adff-aa536f47e61c</td>\n",
" <td>3.717501e+07</td>\n",
" <td>2.524384e+07</td>\n",
" <td>1.008164e+06</td>\n",
" <td>3.784941e+10</td>\n",
" <td>2.324196e+06</td>\n",
" <td>2.805512e+12</td>\n",
" </tr>\n",
" <tr>\n",
" <th>32</th>\n",
" <td>f6f14980-d7e4-40a8-9e74-d9c9966ce241</td>\n",
" <td>4.157510e+08</td>\n",
" <td>7.658883e+07</td>\n",
" <td>4.823635e+07</td>\n",
" <td>3.159346e+12</td>\n",
" <td>7.411682e+07</td>\n",
" <td>3.724672e+12</td>\n",
" </tr>\n",
" <tr>\n",
" <th>33</th>\n",
" <td>074a1e44-e6a9-47d0-b0dd-7d79c278088f</td>\n",
" <td>4.301537e+07</td>\n",
" <td>1.135614e+07</td>\n",
" <td>6.279429e+06</td>\n",
" <td>3.693611e+11</td>\n",
" <td>1.319283e+07</td>\n",
" <td>3.724672e+12</td>\n",
" </tr>\n",
" <tr>\n",
" <th>34</th>\n",
" <td>23e1bcbb-9550-4505-a579-24faeed5f3df</td>\n",
" <td>4.661946e+06</td>\n",
" <td>2.990404e+06</td>\n",
" <td>2.820604e+06</td>\n",
" <td>1.862220e+11</td>\n",
" <td>9.925858e+06</td>\n",
" <td>1.590841e+10</td>\n",
" </tr>\n",
" <tr>\n",
" <th>35</th>\n",
" <td>9cb94b69-3891-4824-b764-78ba6e72580d</td>\n",
" <td>1.172855e+03</td>\n",
" <td>8.351966e+08</td>\n",
" <td>2.571461e+08</td>\n",
" <td>1.613757e+13</td>\n",
" <td>4.809075e+08</td>\n",
" <td>3.724672e+12</td>\n",
" </tr>\n",
" <tr>\n",
" <th>36</th>\n",
" <td>09bf282d-8d87-4353-a39b-34304c9a5979</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>8.937706e+05</td>\n",
" </tr>\n",
" <tr>\n",
" <th>37</th>\n",
" <td>bca28e96-6bcf-47cc-b0e3-65316b5bedb1</td>\n",
" <td>2.825398e+05</td>\n",
" <td>2.937581e+05</td>\n",
" <td>2.937584e+05</td>\n",
" <td>6.236872e+09</td>\n",
" <td>1.839045e+05</td>\n",
" <td>5.798945e+07</td>\n",
" </tr>\n",
" <tr>\n",
" <th>38</th>\n",
" <td>2b953021-9902-4dac-a4b8-70a93680f770</td>\n",
" <td>3.569261e+05</td>\n",
" <td>8.316235e+06</td>\n",
" <td>7.413753e+06</td>\n",
" <td>7.975327e+11</td>\n",
" <td>4.121342e+06</td>\n",
" <td>3.376467e+10</td>\n",
" </tr>\n",
" <tr>\n",
" <th>39</th>\n",
" <td>91f10e92-efc7-40aa-b476-ae0950700b00</td>\n",
" <td>1.305452e+06</td>\n",
" <td>8.676576e+05</td>\n",
" <td>7.196533e+05</td>\n",
" <td>1.110695e+11</td>\n",
" <td>7.960373e+05</td>\n",
" <td>2.805512e+12</td>\n",
" </tr>\n",
" <tr>\n",
" <th>40</th>\n",
" <td>9478d9e6-9e31-4f82-a1c3-87f83356d847</td>\n",
" <td>4.661946e+06</td>\n",
" <td>2.990404e+06</td>\n",
" <td>2.820604e+06</td>\n",
" <td>1.862220e+11</td>\n",
" <td>9.925858e+06</td>\n",
" <td>1.590841e+10</td>\n",
" </tr>\n",
" <tr>\n",
" <th>41</th>\n",
" <td>09c3a103-a853-4be3-a31a-d3acddc9cac9</td>\n",
" <td>0.000000e+00</td>\n",
" <td>1.990899e+05</td>\n",
" <td>1.932603e+05</td>\n",
" <td>1.958829e+10</td>\n",
" <td>1.290117e+06</td>\n",
" <td>2.470440e+09</td>\n",
" </tr>\n",
" <tr>\n",
" <th>42</th>\n",
" <td>587b97bd-727d-4e08-91ff-5230ea190f9c</td>\n",
" <td>4.661946e+06</td>\n",
" <td>2.990404e+06</td>\n",
" <td>2.820604e+06</td>\n",
" <td>1.862220e+11</td>\n",
" <td>9.925858e+06</td>\n",
" <td>1.590841e+10</td>\n",
" </tr>\n",
" <tr>\n",
" <th>43</th>\n",
" <td>3b95af6c-d103-4bdd-b592-d786108548e0</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>NaN</td>\n",
" <td>7.584266e+12</td>\n",
" </tr>\n",
" <tr>\n",
" <th>44</th>\n",
" <td>094a857f-bb63-4081-a953-fa8c769aff50</td>\n",
" <td>5.407000e+02</td>\n",
" <td>1.361000e+02</td>\n",
" <td>0.000000e+00</td>\n",
" <td>0.000000e+00</td>\n",
" <td>0.000000e+00</td>\n",
" <td>2.078879e+06</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" id production harvested_area \\\n",
"0 8dce097b-0376-4cc8-b662-793cbe5b1383 3.197394e+04 3.149400e+04 \n",
"1 90f9d8d6-927e-4f76-99d0-29b0d281001b 9.303148e+04 1.368110e+05 \n",
"2 337f942e-155d-477c-b35e-247b84144491 9.806474e+04 1.872913e+04 \n",
"3 68211ccb-625d-461e-821e-ba5923d7c51f 5.259789e+05 7.618299e+05 \n",
"4 49e12f5e-b9eb-4b8a-be62-fa548fc1352f 4.661946e+06 2.990404e+06 \n",
"5 caf46250-e864-4ab9-a6c6-fad6fd7d0163 1.928499e+06 2.834290e+06 \n",
"6 0d237cb4-d5df-402a-a73b-b72fb12c73fe 3.775885e+06 5.318659e+06 \n",
"7 baa2180c-74bd-4764-a049-2469c6047c01 2.517753e+04 1.916179e+04 \n",
"8 f1ff3505-4f05-4b5d-bb76-2ddd8115abbf 3.699012e+04 5.487284e+05 \n",
"9 2264a013-60b7-4988-b39c-41dcf0282979 1.710592e+02 1.168384e+06 \n",
"10 1f1dfef7-a780-438c-b3c4-57c55bb32c4f 3.698769e+06 8.276218e+05 \n",
"11 c97bb886-1e36-4255-b849-485c9ed169dd 5.200000e+00 1.400000e+00 \n",
"12 b9fa2e17-fae5-40cc-80b4-912e787b4ca2 1.470238e+02 2.070759e+02 \n",
"13 624febb8-7946-4c42-b55a-6777a24ff252 5.248870e+02 3.364660e+02 \n",
"14 2e704843-0316-4efe-a48d-97ee8fd603d6 3.621089e+02 2.321211e+02 \n",
"15 f03201e9-56dd-4999-a374-10c00547e51b 1.754596e+01 NaN \n",
"16 a8eb0631-8887-40bc-b7e1-8c7416d02949 3.563344e+02 3.708378e+02 \n",
"17 e73066ff-195c-4aa4-91fa-abbfa1e25142 1.329811e+05 8.524427e+04 \n",
"18 956a915b-6df8-4676-b2c8-921739499b61 1.571000e+02 4.540001e+01 \n",
"19 bb353cb9-126f-40f4-8202-8f3815a8c041 7.482509e+04 4.796479e+04 \n",
"20 5272beda-30b0-4680-8dd3-799b25ad0d13 2.896721e+02 1.856873e+02 \n",
"21 ff16610a-76f5-4a0a-8272-de4406369bdf 1.550000e+01 1.990000e+01 \n",
"22 2ac82af7-a04c-46bd-9456-d76a7ff7885d 2.343000e+02 1.136000e+02 \n",
"23 13f66059-fbb8-4be3-b037-90da2201abd3 7.951180e+04 2.649087e+04 \n",
"24 6046ca37-bba0-4df1-8bce-aa7b04c773f7 1.330938e+01 4.144100e+03 \n",
"25 39dda736-1b7e-4bcd-a632-2555aa1a8cfa 3.582639e+05 2.144552e+05 \n",
"26 e1d950f2-94cb-4691-bb7f-db3dc5b7116c 1.147071e+00 1.405276e+03 \n",
"27 f7f6d687-e7ca-48d3-95da-b505466a640b 9.694602e+04 6.214490e+04 \n",
"28 0ee56d02-2420-408e-838c-0cd68ed67c34 1.065841e+01 6.698697e+02 \n",
"29 8a34d193-2a1c-4583-b330-17d8975d04e6 1.305452e+06 8.676576e+05 \n",
"30 83f1fb6f-20e6-41b4-9911-97c3295de6bd 8.540000e+01 5.970000e+01 \n",
"31 17908797-63e6-4435-adff-aa536f47e61c 3.717501e+07 2.524384e+07 \n",
"32 f6f14980-d7e4-40a8-9e74-d9c9966ce241 4.157510e+08 7.658883e+07 \n",
"33 074a1e44-e6a9-47d0-b0dd-7d79c278088f 4.301537e+07 1.135614e+07 \n",
"34 23e1bcbb-9550-4505-a579-24faeed5f3df 4.661946e+06 2.990404e+06 \n",
"35 9cb94b69-3891-4824-b764-78ba6e72580d 1.172855e+03 8.351966e+08 \n",
"36 09bf282d-8d87-4353-a39b-34304c9a5979 NaN NaN \n",
"37 bca28e96-6bcf-47cc-b0e3-65316b5bedb1 2.825398e+05 2.937581e+05 \n",
"38 2b953021-9902-4dac-a4b8-70a93680f770 3.569261e+05 8.316235e+06 \n",
"39 91f10e92-efc7-40aa-b476-ae0950700b00 1.305452e+06 8.676576e+05 \n",
"40 9478d9e6-9e31-4f82-a1c3-87f83356d847 4.661946e+06 2.990404e+06 \n",
"41 09c3a103-a853-4be3-a31a-d3acddc9cac9 0.000000e+00 1.990899e+05 \n",
"42 587b97bd-727d-4e08-91ff-5230ea190f9c 4.661946e+06 2.990404e+06 \n",
"43 3b95af6c-d103-4bdd-b592-d786108548e0 NaN NaN \n",
"44 094a857f-bb63-4081-a953-fa8c769aff50 5.407000e+02 1.361000e+02 \n",
"\n",
" raw_deforestation raw_biodiversity raw_carbon raw_water \n",
"0 2.965525e+04 4.138369e+09 6.836626e+04 1.231743e+08 \n",
"1 1.362851e+05 1.145257e+10 9.311942e+05 6.977503e+06 \n",
"2 1.861770e+04 1.744553e+09 1.887308e+05 4.829850e+09 \n",
"3 5.864385e+05 6.418257e+10 4.192368e+06 2.486174e+11 \n",
"4 2.820604e+06 1.862220e+11 9.925858e+06 1.590841e+10 \n",
"5 2.764138e+06 1.986828e+11 2.145601e+07 4.829850e+09 \n",
"6 5.066399e+06 2.974967e+11 6.634060e+07 8.478840e+12 \n",
"7 1.906270e+04 8.411893e+08 1.010275e+05 2.486174e+11 \n",
"8 5.310155e+05 4.079312e+10 1.852687e+06 1.590841e+10 \n",
"9 9.546428e+05 9.483591e+10 7.503546e+06 2.486174e+11 \n",
"10 2.630313e+05 1.220432e+10 1.267049e+05 6.614878e+10 \n",
"11 1.400000e+00 5.699709e+04 8.009828e-01 3.934550e+06 \n",
"12 2.070759e+02 5.128219e+06 6.376891e+02 NaN \n",
"13 3.364660e+02 5.196988e+06 1.204438e+03 1.087875e+05 \n",
"14 2.321211e+02 2.134869e+07 2.078573e+02 NaN \n",
"15 NaN NaN NaN NaN \n",
"16 3.708378e+02 1.766912e+07 2.909740e+02 NaN \n",
"17 8.039210e+04 1.241721e+09 2.457085e+05 8.830236e+08 \n",
"18 3.630000e+01 1.770144e+07 5.483071e+01 1.393378e+11 \n",
"19 4.782171e+04 4.583155e+09 1.524709e+05 4.087622e+07 \n",
"20 1.856873e+02 2.868089e+06 7.091985e+02 6.474029e+05 \n",
"21 1.990000e+01 2.210496e+05 1.489013e+00 NaN \n",
"22 1.136000e+02 1.313562e+05 9.846588e+00 NaN \n",
"23 1.491680e+04 7.909062e+08 6.433745e+04 2.974427e+09 \n",
"24 4.144100e+03 1.894969e+07 2.368986e+02 NaN \n",
"25 2.076870e+05 2.353510e+09 5.837719e+04 3.779031e+08 \n",
"26 1.405276e+03 1.411389e+06 3.475668e+02 1.471730e+02 \n",
"27 4.608034e+04 5.478709e+09 1.720228e+05 3.556039e+08 \n",
"28 6.698697e+02 8.423791e+06 3.669816e+02 NaN \n",
"29 7.196533e+05 1.110695e+11 7.960373e+05 2.805512e+12 \n",
"30 5.970000e+01 1.242826e+05 2.626208e+00 NaN \n",
"31 1.008164e+06 3.784941e+10 2.324196e+06 2.805512e+12 \n",
"32 4.823635e+07 3.159346e+12 7.411682e+07 3.724672e+12 \n",
"33 6.279429e+06 3.693611e+11 1.319283e+07 3.724672e+12 \n",
"34 2.820604e+06 1.862220e+11 9.925858e+06 1.590841e+10 \n",
"35 2.571461e+08 1.613757e+13 4.809075e+08 3.724672e+12 \n",
"36 NaN NaN NaN 8.937706e+05 \n",
"37 2.937584e+05 6.236872e+09 1.839045e+05 5.798945e+07 \n",
"38 7.413753e+06 7.975327e+11 4.121342e+06 3.376467e+10 \n",
"39 7.196533e+05 1.110695e+11 7.960373e+05 2.805512e+12 \n",
"40 2.820604e+06 1.862220e+11 9.925858e+06 1.590841e+10 \n",
"41 1.932603e+05 1.958829e+10 1.290117e+06 2.470440e+09 \n",
"42 2.820604e+06 1.862220e+11 9.925858e+06 1.590841e+10 \n",
"43 NaN NaN NaN 7.584266e+12 \n",
"44 0.000000e+00 0.000000e+00 0.000000e+00 2.078879e+06 "
]
},
"execution_count": 13,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"%%time\n",
"sourcing_locations = pd.read_sql_query(\n",
" SQL_SUM_MATERIAL_OVER_GEO_REGION \\\n",
" + SQL_SUM_WEIGHTED_DEFORESTATION_OVER_GEO_REGION \\\n",
" + SQL_SUM_WEIGHTED_BIODIVERSITY_OVER_GEO_REGION \\\n",
" + SQL_SUM_WEIGHTED_CARBON_OVER_GEO_REGION \\\n",
" + SQL_SUM_WEIGHTED_WATER_OVER_GEO_REGION \\\n",
" + \"\"\"\n",
" SELECT\n",
" id,\n",
" sum_material_over_georegion(\"geoRegionId\", \"materialId\", 'producer') as production,\n",
" sum_material_over_georegion(\"geoRegionId\", \"materialId\", 'harvest') as harvested_area,\n",
" sum_weighted_deforestation_over_georegion(\"geoRegionId\", \"materialId\", 'harvest') as raw_deforestation,\n",
" sum_weighted_biodiversity_over_georegion(\"geoRegionId\", \"materialId\", 'harvest') as raw_biodiversity,\n",
" sum_weighted_carbon_over_georegion(\"geoRegionId\", \"materialId\", 'harvest') as raw_carbon,\n",
" sum_weighted_water_over_georegion(\"geoRegionId\") as raw_water\n",
" FROM\n",
" sourcing_location\n",
" \"\"\", conn)\n",
"\n",
"sourcing_locations"
]
},
{
"cell_type": "code",
"execution_count": 14,
"id": "b44ed59a",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>id</th>\n",
" <th>tonnage</th>\n",
" <th>year</th>\n",
" <th>id</th>\n",
" <th>production</th>\n",
" <th>harvested_area</th>\n",
" <th>raw_deforestation</th>\n",
" <th>raw_biodiversity</th>\n",
" <th>raw_carbon</th>\n",
" <th>raw_water</th>\n",
" <th>land_per_ton</th>\n",
" <th>deforestation_per_ha_landuse</th>\n",
" <th>bio_per_ha_landuse</th>\n",
" <th>carbon_per_ha_landuse</th>\n",
" <th>land_use</th>\n",
" <th>deforestation</th>\n",
" <th>biodiversity_loss</th>\n",
" <th>carbon_loss</th>\n",
" <th>water_impact</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>4057312f-131b-44a3-86cb-4ff6253026ce</td>\n",
" <td>650.0</td>\n",
" <td>2010</td>\n",
" <td>8dce097b-0376-4cc8-b662-793cbe5b1383</td>\n",
" <td>31973.941406</td>\n",
" <td>31494.000000</td>\n",
" <td>29655.245346</td>\n",
" <td>4.138369e+09</td>\n",
" <td>68366.264001</td>\n",
" <td>1.231743e+08</td>\n",
" <td>0.984990</td>\n",
" <td>0.941616</td>\n",
" <td>131401.821233</td>\n",
" <td>2.170771</td>\n",
" <td>640.243245</td>\n",
" <td>602.863101</td>\n",
" <td>8.412913e+07</td>\n",
" <td>1389.821512</td>\n",
" <td>8.006332e+10</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>2280336e-f744-4ab0-a1e6-9c3a9e83c62b</td>\n",
" <td>657.0</td>\n",
" <td>2011</td>\n",
" <td>8dce097b-0376-4cc8-b662-793cbe5b1383</td>\n",
" <td>31973.941406</td>\n",
" <td>31494.000000</td>\n",
" <td>29655.245346</td>\n",
" <td>4.138369e+09</td>\n",
" <td>68366.264001</td>\n",
" <td>1.231743e+08</td>\n",
" <td>0.984990</td>\n",
" <td>0.941616</td>\n",
" <td>131401.821233</td>\n",
" <td>2.170771</td>\n",
" <td>647.138172</td>\n",
" <td>609.355473</td>\n",
" <td>8.503513e+07</td>\n",
" <td>1404.788821</td>\n",
" <td>8.092554e+10</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>1926c1dc-caf5-467b-93da-b958ca512865</td>\n",
" <td>664.0</td>\n",
" <td>2012</td>\n",
" <td>8dce097b-0376-4cc8-b662-793cbe5b1383</td>\n",
" <td>31973.941406</td>\n",
" <td>31494.000000</td>\n",
" <td>29655.245346</td>\n",
" <td>4.138369e+09</td>\n",
" <td>68366.264001</td>\n",
" <td>1.231743e+08</td>\n",
" <td>0.984990</td>\n",
" <td>0.941616</td>\n",
" <td>131401.821233</td>\n",
" <td>2.170771</td>\n",
" <td>654.033099</td>\n",
" <td>615.847845</td>\n",
" <td>8.594114e+07</td>\n",
" <td>1419.756130</td>\n",
" <td>8.178776e+10</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>c8266f82-5b40-4ffb-a6c8-42cf445064f4</td>\n",
" <td>671.0</td>\n",
" <td>2013</td>\n",
" <td>8dce097b-0376-4cc8-b662-793cbe5b1383</td>\n",
" <td>31973.941406</td>\n",
" <td>31494.000000</td>\n",
" <td>29655.245346</td>\n",
" <td>4.138369e+09</td>\n",
" <td>68366.264001</td>\n",
" <td>1.231743e+08</td>\n",
" <td>0.984990</td>\n",
" <td>0.941616</td>\n",
" <td>131401.821233</td>\n",
" <td>2.170771</td>\n",
" <td>660.928027</td>\n",
" <td>622.340217</td>\n",
" <td>8.684715e+07</td>\n",
" <td>1434.723438</td>\n",
" <td>8.264998e+10</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>b6488db3-165a-4123-9313-abc91da76381</td>\n",
" <td>678.0</td>\n",
" <td>2014</td>\n",
" <td>8dce097b-0376-4cc8-b662-793cbe5b1383</td>\n",
" <td>31973.941406</td>\n",
" <td>31494.000000</td>\n",
" <td>29655.245346</td>\n",
" <td>4.138369e+09</td>\n",
" <td>68366.264001</td>\n",
" <td>1.231743e+08</td>\n",
" <td>0.984990</td>\n",
" <td>0.941616</td>\n",
" <td>131401.821233</td>\n",
" <td>2.170771</td>\n",
" <td>667.822954</td>\n",
" <td>628.832589</td>\n",
" <td>8.775315e+07</td>\n",
" <td>1449.690747</td>\n",
" <td>8.351221e+10</td>\n",
" </tr>\n",
" <tr>\n",
" <th>...</th>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>490</th>\n",
" <td>59758b83-4a05-4a94-a6ca-eb3a7c4ca327</td>\n",
" <td>422.0</td>\n",
" <td>2016</td>\n",
" <td>094a857f-bb63-4081-a953-fa8c769aff50</td>\n",
" <td>540.700012</td>\n",
" <td>136.100006</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000e+00</td>\n",
" <td>0.000000</td>\n",
" <td>2.078879e+06</td>\n",
" <td>0.251711</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" <td>106.221937</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000e+00</td>\n",
" <td>0.000000</td>\n",
" <td>8.772871e+08</td>\n",
" </tr>\n",
" <tr>\n",
" <th>491</th>\n",
" <td>01dec32c-5dd5-46c5-912c-c48bcdad9ebb</td>\n",
" <td>426.0</td>\n",
" <td>2017</td>\n",
" <td>094a857f-bb63-4081-a953-fa8c769aff50</td>\n",
" <td>540.700012</td>\n",
" <td>136.100006</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000e+00</td>\n",
" <td>0.000000</td>\n",
" <td>2.078879e+06</td>\n",
" <td>0.251711</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" <td>107.228780</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000e+00</td>\n",
" <td>0.000000</td>\n",
" <td>8.856026e+08</td>\n",
" </tr>\n",
" <tr>\n",
" <th>492</th>\n",
" <td>2eddcca3-a43f-4b65-895f-16bc6500b78a</td>\n",
" <td>430.0</td>\n",
" <td>2018</td>\n",
" <td>094a857f-bb63-4081-a953-fa8c769aff50</td>\n",
" <td>540.700012</td>\n",
" <td>136.100006</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000e+00</td>\n",
" <td>0.000000</td>\n",
" <td>2.078879e+06</td>\n",
" <td>0.251711</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" <td>108.235623</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000e+00</td>\n",
" <td>0.000000</td>\n",
" <td>8.939181e+08</td>\n",
" </tr>\n",
" <tr>\n",
" <th>493</th>\n",
" <td>b069f4f8-9ea7-49fc-a9e7-d911459b7d2f</td>\n",
" <td>434.0</td>\n",
" <td>2019</td>\n",
" <td>094a857f-bb63-4081-a953-fa8c769aff50</td>\n",
" <td>540.700012</td>\n",
" <td>136.100006</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000e+00</td>\n",
" <td>0.000000</td>\n",
" <td>2.078879e+06</td>\n",
" <td>0.251711</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" <td>109.242466</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000e+00</td>\n",
" <td>0.000000</td>\n",
" <td>9.022336e+08</td>\n",
" </tr>\n",
" <tr>\n",
" <th>494</th>\n",
" <td>6004dc91-029c-4f36-936e-3f1c58fd2372</td>\n",
" <td>438.0</td>\n",
" <td>2020</td>\n",
" <td>094a857f-bb63-4081-a953-fa8c769aff50</td>\n",
" <td>540.700012</td>\n",
" <td>136.100006</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000e+00</td>\n",
" <td>0.000000</td>\n",
" <td>2.078879e+06</td>\n",
" <td>0.251711</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000</td>\n",
" <td>110.249309</td>\n",
" <td>0.000000</td>\n",
" <td>0.000000e+00</td>\n",
" <td>0.000000</td>\n",
" <td>9.105492e+08</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>495 rows × 19 columns</p>\n",
"</div>"
],
"text/plain": [
" id tonnage year \\\n",
"0 4057312f-131b-44a3-86cb-4ff6253026ce 650.0 2010 \n",
"1 2280336e-f744-4ab0-a1e6-9c3a9e83c62b 657.0 2011 \n",
"2 1926c1dc-caf5-467b-93da-b958ca512865 664.0 2012 \n",
"3 c8266f82-5b40-4ffb-a6c8-42cf445064f4 671.0 2013 \n",
"4 b6488db3-165a-4123-9313-abc91da76381 678.0 2014 \n",
".. ... ... ... \n",
"490 59758b83-4a05-4a94-a6ca-eb3a7c4ca327 422.0 2016 \n",
"491 01dec32c-5dd5-46c5-912c-c48bcdad9ebb 426.0 2017 \n",
"492 2eddcca3-a43f-4b65-895f-16bc6500b78a 430.0 2018 \n",
"493 b069f4f8-9ea7-49fc-a9e7-d911459b7d2f 434.0 2019 \n",
"494 6004dc91-029c-4f36-936e-3f1c58fd2372 438.0 2020 \n",
"\n",
" id production harvested_area \\\n",
"0 8dce097b-0376-4cc8-b662-793cbe5b1383 31973.941406 31494.000000 \n",
"1 8dce097b-0376-4cc8-b662-793cbe5b1383 31973.941406 31494.000000 \n",
"2 8dce097b-0376-4cc8-b662-793cbe5b1383 31973.941406 31494.000000 \n",
"3 8dce097b-0376-4cc8-b662-793cbe5b1383 31973.941406 31494.000000 \n",
"4 8dce097b-0376-4cc8-b662-793cbe5b1383 31973.941406 31494.000000 \n",
".. ... ... ... \n",
"490 094a857f-bb63-4081-a953-fa8c769aff50 540.700012 136.100006 \n",
"491 094a857f-bb63-4081-a953-fa8c769aff50 540.700012 136.100006 \n",
"492 094a857f-bb63-4081-a953-fa8c769aff50 540.700012 136.100006 \n",
"493 094a857f-bb63-4081-a953-fa8c769aff50 540.700012 136.100006 \n",
"494 094a857f-bb63-4081-a953-fa8c769aff50 540.700012 136.100006 \n",
"\n",
" raw_deforestation raw_biodiversity raw_carbon raw_water \\\n",
"0 29655.245346 4.138369e+09 68366.264001 1.231743e+08 \n",
"1 29655.245346 4.138369e+09 68366.264001 1.231743e+08 \n",
"2 29655.245346 4.138369e+09 68366.264001 1.231743e+08 \n",
"3 29655.245346 4.138369e+09 68366.264001 1.231743e+08 \n",
"4 29655.245346 4.138369e+09 68366.264001 1.231743e+08 \n",
".. ... ... ... ... \n",
"490 0.000000 0.000000e+00 0.000000 2.078879e+06 \n",
"491 0.000000 0.000000e+00 0.000000 2.078879e+06 \n",
"492 0.000000 0.000000e+00 0.000000 2.078879e+06 \n",
"493 0.000000 0.000000e+00 0.000000 2.078879e+06 \n",
"494 0.000000 0.000000e+00 0.000000 2.078879e+06 \n",
"\n",
" land_per_ton deforestation_per_ha_landuse bio_per_ha_landuse \\\n",
"0 0.984990 0.941616 131401.821233 \n",
"1 0.984990 0.941616 131401.821233 \n",
"2 0.984990 0.941616 131401.821233 \n",
"3 0.984990 0.941616 131401.821233 \n",
"4 0.984990 0.941616 131401.821233 \n",
".. ... ... ... \n",
"490 0.251711 0.000000 0.000000 \n",
"491 0.251711 0.000000 0.000000 \n",
"492 0.251711 0.000000 0.000000 \n",
"493 0.251711 0.000000 0.000000 \n",
"494 0.251711 0.000000 0.000000 \n",
"\n",
" carbon_per_ha_landuse land_use deforestation biodiversity_loss \\\n",
"0 2.170771 640.243245 602.863101 8.412913e+07 \n",
"1 2.170771 647.138172 609.355473 8.503513e+07 \n",
"2 2.170771 654.033099 615.847845 8.594114e+07 \n",
"3 2.170771 660.928027 622.340217 8.684715e+07 \n",
"4 2.170771 667.822954 628.832589 8.775315e+07 \n",
".. ... ... ... ... \n",
"490 0.000000 106.221937 0.000000 0.000000e+00 \n",
"491 0.000000 107.228780 0.000000 0.000000e+00 \n",
"492 0.000000 108.235623 0.000000 0.000000e+00 \n",
"493 0.000000 109.242466 0.000000 0.000000e+00 \n",
"494 0.000000 110.249309 0.000000 0.000000e+00 \n",
"\n",
" carbon_loss water_impact \n",
"0 1389.821512 8.006332e+10 \n",
"1 1404.788821 8.092554e+10 \n",
"2 1419.756130 8.178776e+10 \n",
"3 1434.723438 8.264998e+10 \n",
"4 1449.690747 8.351221e+10 \n",
".. ... ... \n",
"490 0.000000 8.772871e+08 \n",
"491 0.000000 8.856026e+08 \n",
"492 0.000000 8.939181e+08 \n",
"493 0.000000 9.022336e+08 \n",
"494 0.000000 9.105492e+08 \n",
"\n",
"[495 rows x 19 columns]"
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"sourcing_records = pd.read_sql_query(\n",
" SQL_SUM_MATERIAL_OVER_GEO_REGION \\\n",
" + SQL_SUM_WEIGHTED_DEFORESTATION_OVER_GEO_REGION \\\n",
" + SQL_SUM_WEIGHTED_BIODIVERSITY_OVER_GEO_REGION \\\n",
" + SQL_SUM_WEIGHTED_CARBON_OVER_GEO_REGION \\\n",
" + SQL_SUM_WEIGHTED_WATER_OVER_GEO_REGION \\\n",
" + \"\"\"\n",
" SELECT\n",
" sr.id,\n",
" sr.tonnage,\n",
" sr.year,\n",
" sl.id,\n",
" sl.production,\n",
" sl.harvested_area,\n",
" sl.raw_deforestation,\n",
" sl.raw_biodiversity,\n",
" sl.raw_carbon,\n",
" sl.raw_water\n",
" FROM\n",
" sourcing_records sr\n",
" INNER JOIN\n",
" (\n",
" SELECT\n",
" id,\n",
" sum_material_over_georegion(\"geoRegionId\", \"materialId\", 'producer') as production,\n",
" sum_material_over_georegion(\"geoRegionId\", \"materialId\", 'harvest') as harvested_area,\n",
" sum_weighted_deforestation_over_georegion(\"geoRegionId\", \"materialId\", 'harvest') as raw_deforestation,\n",
" sum_weighted_biodiversity_over_georegion(\"geoRegionId\", \"materialId\", 'harvest') as raw_biodiversity,\n",
" sum_weighted_carbon_over_georegion(\"geoRegionId\", \"materialId\", 'harvest') as raw_carbon,\n",
" sum_weighted_water_over_georegion(\"geoRegionId\") as raw_water\n",
" FROM\n",
" sourcing_location\n",
" ) as sl\n",
" on sr.\"sourcingLocationId\" = sl.id\n",
"\"\"\", conn)\n",
"\n",
"sourcing_records['land_per_ton'] = sourcing_records['harvested_area'] / sourcing_records['production']\n",
"\n",
"sourcing_records['deforestation_per_ha_landuse'] = sourcing_records['raw_deforestation'] / sourcing_records['harvested_area']\n",
"sourcing_records['bio_per_ha_landuse'] = sourcing_records['raw_biodiversity'] / sourcing_records['harvested_area']\n",
"sourcing_records['carbon_per_ha_landuse'] = sourcing_records['raw_carbon'] / sourcing_records['harvested_area']\n",
"sourcing_records['land_use'] = sourcing_records['land_per_ton'] * sourcing_records['tonnage']\n",
"\n",
"sourcing_records['deforestation'] = sourcing_records['deforestation_per_ha_landuse'] * sourcing_records['land_use']\n",
"sourcing_records['biodiversity_loss'] = sourcing_records['bio_per_ha_landuse'] * sourcing_records['land_use']\n",
"sourcing_records['carbon_loss'] = sourcing_records['carbon_per_ha_landuse'] * sourcing_records['land_use']\n",
"sourcing_records['water_impact'] = sourcing_records['raw_water'] * sourcing_records['tonnage']\n",
"\n",
"# Farm impact scaler = production\n",
"# Land use change impact scaler = harvested_area\n",
"\n",
"sourcing_records.to_csv('test_impact_calc.csv')\n",
"\n",
"sourcing_records\n"
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "f7a24b22",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"function sum_weighted_bio_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 154: sum_weighted_bio_over_georegion('68ed9c70-0f01-495f-9a53...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"None\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"function sum_material_over_georegion(unknown, unknown, unknown) does not exist\n",
"LINE 1: SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-...\n",
" ^\n",
"HINT: No function matches the given name and argument types. You might need to add explicit type casts.\n",
"\n",
"285 µs ± 35.1 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"244 µs ± 4.43 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each)\n"
]
}
],
"source": [
"query1 = SQL_SUM_MATERIAL_OVER_GEO_REGION \\\n",
" + SQL_SUM_WEIGHTED_DEFORESTATION_OVER_GEO_REGION \\\n",
" + SQL_SUM_WEIGHTED_BIODIVERSITY_OVER_GEO_REGION \\\n",
" + \"\"\"\n",
"EXPLAIN ANALYZE \n",
"SELECT \n",
" sum_material_over_georegion('68ed9c70-0f01-495f-9a53-68e5cb35c7ca', '0d7b1be5-dc86-47b8-ba3a-25190a275011', 'producer'),\n",
" sum_weighted_deforestation_over_georegion('68ed9c70-0f01-495f-9a53-68e5cb35c7ca', '0d7b1be5-dc86-47b8-ba3a-25190a275011', 'harvest'),\n",
" sum_weighted_bio_over_georegion('68ed9c70-0f01-495f-9a53-68e5cb35c7ca', '0d7b1be5-dc86-47b8-ba3a-25190a275011', 'harvest')\n",
"\"\"\"\n",
"print(psql(query1))\n",
"\n",
"\"\"\"\n",
"EXPLAIN ANALYZE\n",
"SELECT sum(prod.\"earthstat2000GlobalRubberProduction\") as value\n",
"FROM\n",
" (SELECT h3_uncompact(geo_region.\"h3Compact\"::h3index[], 6) h3index\n",
" FROM geo_region WHERE geo_region.id = '68ed9c70-0f01-495f-9a53-68e5cb35c7ca'\n",
" ) geom\n",
" INNER JOIN h3_grid_earthstat2000_global_prod prod\n",
" on geom.h3index = prod.h3index\n",
"\"\"\"\n",
"#print(psql(query2))\n",
"\n",
"%timeit psql(\"SELECT sum_material_over_georegion('68ed9c70-0f01-495f-9a53-68e5cb35c7ca', '0d7b1be5-dc86-47b8-ba3a-25190a275011', 'producer')\")\n",
"%timeit psql(\"\"\"SELECT sum(prod.\"earthstat2000GlobalRubberProduction\") as value FROM (SELECT h3_uncompact(geo_region.\"h3Compact\"::h3index[], 6) h3index FROM geo_region WHERE geo_region.id = '68ed9c70-0f01-495f-9a53-68e5cb35c7ca') geom INNER JOIN h3_grid_earthstat2000_global_prod prod on geom.h3index = prod.h3index\"\"\")\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "420153a0",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.10"
}
},
"nbformat": 4,
"nbformat_minor": 5
}