@malloy-publisher/server 0.0.87 → 0.0.89
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build.ts +26 -0
- package/dist/app/api-doc.yaml +126 -5
- package/dist/app/assets/RenderedResult-BAZuT25g-QakVAbYy.js +2 -0
- package/dist/app/assets/{index-BbW5TZg_.js → index-Bq29VQqL.js} +2 -2
- package/dist/app/assets/{index-2xWCh-ya.css → index-CcIq0aEZ.css} +1 -1
- package/dist/app/assets/index-DZMePHJ5.js +251 -0
- package/dist/app/assets/{index-CIfV3yj1.js → index-TslDWlxH.js} +6 -6
- package/dist/app/assets/{index.umd-x-naS8R7.js → index.umd-BN4_E5KD.js} +259 -259
- package/dist/app/assets/mui-BEbinrI-.js +161 -0
- package/dist/app/assets/vendor-c5ypKtDW.js +17 -0
- package/dist/app/index.html +4 -2
- package/dist/instrumentation.js +67818 -35196
- package/dist/server.js +80404 -82231
- package/package.json +11 -5
- package/publisher.config.json +1 -1
- package/src/config.ts +20 -0
- package/src/constants.ts +14 -0
- package/src/controller/connection.controller.ts +21 -4
- package/src/controller/package.controller.ts +52 -2
- package/src/controller/schedule.controller.ts +3 -3
- package/src/controller/watch-mode.controller.ts +83 -0
- package/src/errors.ts +2 -1
- package/src/logger.ts +9 -0
- package/src/server.ts +33 -19
- package/src/service/connection.ts +159 -161
- package/src/service/model.ts +6 -6
- package/src/service/package.spec.ts +12 -10
- package/src/service/package.ts +15 -8
- package/src/service/project.ts +77 -36
- package/src/service/project_store.spec.ts +83 -56
- package/src/service/project_store.ts +330 -50
- package/src/utils.ts +0 -18
- package/tests/harness/mcp_test_setup.ts +5 -5
- package/dist/app/assets/RenderedResult-BAZuT25g-BMU632YI.js +0 -2
- package/dist/app/assets/index-C7whj6wK.js +0 -432
package/build.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { build } from "bun";
|
|
2
|
+
import fs from "fs";
|
|
3
|
+
|
|
4
|
+
fs.rmSync("./dist", { recursive: true, force: true });
|
|
5
|
+
fs.mkdirSync("./dist");
|
|
6
|
+
|
|
7
|
+
await build({
|
|
8
|
+
entrypoints: ["./src/server.ts", "./src/instrumentation.ts"],
|
|
9
|
+
outdir: "./dist",
|
|
10
|
+
target: "node",
|
|
11
|
+
format: "cjs",
|
|
12
|
+
external: [
|
|
13
|
+
"@malloydata/db-duckdb",
|
|
14
|
+
"@malloydata/malloy",
|
|
15
|
+
"@malloydata/malloy-sql",
|
|
16
|
+
"@malloydata/render",
|
|
17
|
+
"@malloydata/db-bigquery",
|
|
18
|
+
"@malloydata/db-mysql",
|
|
19
|
+
"@malloydata/db-postgres",
|
|
20
|
+
"@malloydata/db-snowflake",
|
|
21
|
+
"@malloydata/db-trino",
|
|
22
|
+
"@google-cloud/storage",
|
|
23
|
+
],
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
fs.cpSync("../app/dist", "./dist/app", { recursive: true });
|
package/dist/app/api-doc.yaml
CHANGED
|
@@ -10,6 +10,20 @@ servers:
|
|
|
10
10
|
- url: /api/v0/
|
|
11
11
|
|
|
12
12
|
paths:
|
|
13
|
+
/status:
|
|
14
|
+
get:
|
|
15
|
+
tags:
|
|
16
|
+
- publisher
|
|
17
|
+
operationId: get-status
|
|
18
|
+
summary: Server status
|
|
19
|
+
responses:
|
|
20
|
+
'200':
|
|
21
|
+
description: Returns server status
|
|
22
|
+
content:
|
|
23
|
+
application/json:
|
|
24
|
+
schema:
|
|
25
|
+
$ref: '#/components/schemas/ServerStatus'
|
|
26
|
+
|
|
13
27
|
/projects:
|
|
14
28
|
get:
|
|
15
29
|
tags:
|
|
@@ -224,7 +238,11 @@ paths:
|
|
|
224
238
|
type: string
|
|
225
239
|
responses:
|
|
226
240
|
"200":
|
|
227
|
-
description:
|
|
241
|
+
description: OK
|
|
242
|
+
content:
|
|
243
|
+
application/json:
|
|
244
|
+
schema:
|
|
245
|
+
$ref: '#/components/schemas/ConnectionStatus'
|
|
228
246
|
"401":
|
|
229
247
|
$ref: "#/components/responses/UnauthorizedError"
|
|
230
248
|
"404":
|
|
@@ -994,6 +1012,58 @@ paths:
|
|
|
994
1012
|
"501":
|
|
995
1013
|
$ref: "#/components/responses/NotImplementedError"
|
|
996
1014
|
|
|
1015
|
+
/watch-mode/status:
|
|
1016
|
+
get:
|
|
1017
|
+
tags:
|
|
1018
|
+
- watch-mode
|
|
1019
|
+
operationId: get-watch-status
|
|
1020
|
+
summary: Returns the current watch mode status.
|
|
1021
|
+
responses:
|
|
1022
|
+
"200":
|
|
1023
|
+
description: The current watch mode status.
|
|
1024
|
+
content:
|
|
1025
|
+
application/json:
|
|
1026
|
+
schema:
|
|
1027
|
+
$ref: "#/components/schemas/WatchStatus"
|
|
1028
|
+
"401":
|
|
1029
|
+
$ref: "#/components/responses/UnauthorizedError"
|
|
1030
|
+
"500":
|
|
1031
|
+
$ref: "#/components/responses/InternalServerError"
|
|
1032
|
+
|
|
1033
|
+
/watch-mode/start:
|
|
1034
|
+
post:
|
|
1035
|
+
tags:
|
|
1036
|
+
- watch-mode
|
|
1037
|
+
operationId: start-watching
|
|
1038
|
+
summary: Starts watching a project for file changes.
|
|
1039
|
+
requestBody:
|
|
1040
|
+
required: true
|
|
1041
|
+
content:
|
|
1042
|
+
application/json:
|
|
1043
|
+
schema:
|
|
1044
|
+
$ref: "#/components/schemas/StartWatchRequest"
|
|
1045
|
+
responses:
|
|
1046
|
+
"200":
|
|
1047
|
+
description: Watch mode started successfully.
|
|
1048
|
+
"401":
|
|
1049
|
+
$ref: "#/components/responses/UnauthorizedError"
|
|
1050
|
+
"500":
|
|
1051
|
+
$ref: "#/components/responses/InternalServerError"
|
|
1052
|
+
|
|
1053
|
+
/watch-mode/stop:
|
|
1054
|
+
post:
|
|
1055
|
+
tags:
|
|
1056
|
+
- watch-mode
|
|
1057
|
+
operationId: stop-watching
|
|
1058
|
+
summary: Stops watching for file changes.
|
|
1059
|
+
responses:
|
|
1060
|
+
"200":
|
|
1061
|
+
description: Watch mode stopped successfully.
|
|
1062
|
+
"401":
|
|
1063
|
+
$ref: "#/components/responses/UnauthorizedError"
|
|
1064
|
+
"500":
|
|
1065
|
+
$ref: "#/components/responses/InternalServerError"
|
|
1066
|
+
|
|
997
1067
|
components:
|
|
998
1068
|
responses:
|
|
999
1069
|
InternalServerError:
|
|
@@ -1034,12 +1104,15 @@ components:
|
|
|
1034
1104
|
$ref: "#/components/schemas/Error"
|
|
1035
1105
|
|
|
1036
1106
|
schemas:
|
|
1037
|
-
|
|
1107
|
+
ServerStatus:
|
|
1038
1108
|
type: object
|
|
1039
1109
|
properties:
|
|
1040
|
-
|
|
1041
|
-
type:
|
|
1042
|
-
|
|
1110
|
+
timestamp:
|
|
1111
|
+
type: number
|
|
1112
|
+
projects:
|
|
1113
|
+
type: array
|
|
1114
|
+
items:
|
|
1115
|
+
$ref: '#/components/schemas/Project'
|
|
1043
1116
|
|
|
1044
1117
|
Project:
|
|
1045
1118
|
type: object
|
|
@@ -1053,6 +1126,17 @@ components:
|
|
|
1053
1126
|
readme:
|
|
1054
1127
|
type: string
|
|
1055
1128
|
description: Project readme.
|
|
1129
|
+
location:
|
|
1130
|
+
type: string
|
|
1131
|
+
description: Project location, it can be an absolute path or an URI (e.g. github, s3, gcs, etc.).
|
|
1132
|
+
connections:
|
|
1133
|
+
type: array
|
|
1134
|
+
items:
|
|
1135
|
+
$ref: '#/components/schemas/Connection'
|
|
1136
|
+
packages:
|
|
1137
|
+
type: array
|
|
1138
|
+
items:
|
|
1139
|
+
$ref: '#/components/schemas/Package'
|
|
1056
1140
|
|
|
1057
1141
|
Package:
|
|
1058
1142
|
type: object
|
|
@@ -1066,6 +1150,9 @@ components:
|
|
|
1066
1150
|
description:
|
|
1067
1151
|
type: string
|
|
1068
1152
|
description: Package description.
|
|
1153
|
+
location:
|
|
1154
|
+
type: string
|
|
1155
|
+
description: Package location, it can be an absolute path or an URI (e.g. github, s3, gcs, etc.).
|
|
1069
1156
|
|
|
1070
1157
|
Model:
|
|
1071
1158
|
type: object
|
|
@@ -1459,3 +1546,37 @@ components:
|
|
|
1459
1546
|
type: array
|
|
1460
1547
|
items:
|
|
1461
1548
|
$ref: "#/components/schemas/Column"
|
|
1549
|
+
|
|
1550
|
+
WatchStatus:
|
|
1551
|
+
type: object
|
|
1552
|
+
description: Current watch mode status
|
|
1553
|
+
properties:
|
|
1554
|
+
enabled:
|
|
1555
|
+
type: boolean
|
|
1556
|
+
description: Whether watch mode is currently enabled
|
|
1557
|
+
projectName:
|
|
1558
|
+
type: string
|
|
1559
|
+
description: Name of the project being watched
|
|
1560
|
+
watchingPath:
|
|
1561
|
+
type: string
|
|
1562
|
+
nullable: true
|
|
1563
|
+
description: The path being watched, null if not watching
|
|
1564
|
+
|
|
1565
|
+
StartWatchRequest:
|
|
1566
|
+
type: object
|
|
1567
|
+
description: Request to start watching a project
|
|
1568
|
+
properties:
|
|
1569
|
+
projectName:
|
|
1570
|
+
type: string
|
|
1571
|
+
description: Name of the project to watch
|
|
1572
|
+
required:
|
|
1573
|
+
- projectName
|
|
1574
|
+
|
|
1575
|
+
ConnectionStatus:
|
|
1576
|
+
type: object
|
|
1577
|
+
properties:
|
|
1578
|
+
status:
|
|
1579
|
+
type: string
|
|
1580
|
+
enum: ["ok", "failed"]
|
|
1581
|
+
errorMessage:
|
|
1582
|
+
type: string
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["assets/index.umd-BN4_E5KD.js","assets/vendor-c5ypKtDW.js"])))=>i.map(i=>d[i]);
|
|
2
|
+
import{_ as m}from"./index-DZMePHJ5.js";import{j as a,r as c}from"./mui-BEbinrI-.js";import"./vendor-c5ypKtDW.js";const w=async e=>{if(typeof window>"u")throw new Error("MalloyRenderer can only be used in browser environment");const{MalloyRenderer:d}=await m(async()=>{const{MalloyRenderer:i}=await import("./index.umd-BN4_E5KD.js").then(l=>l.i);return{MalloyRenderer:i}},__vite__mapDeps([0,1]));return new d({onClick:e}).createViz()};function x({result:e,height:d,isFillElement:i,onSizeChange:l,onDrill:y}){const u=c.useRef(null),[p,f]=c.useState(!1);return c.useLayoutEffect(()=>{if(!u.current||!e)return;let t=!0;const r=u.current;for(;r.firstChild;)r.removeChild(r.firstChild);return w(y).then(o=>{if(!t)return;const n=new MutationObserver(s=>{for(const h of s)if(h.type==="childList"&&h.addedNodes.length>0&&Array.from(h.addedNodes).some(g=>g.nodeType===Node.ELEMENT_NODE)){n.disconnect(),setTimeout(()=>{t&&f(!0)},50);break}});n.observe(r,{childList:!0,subtree:!0,characterData:!0});try{o.setResult(JSON.parse(e)),o.render(r)}catch(s){console.error("Error rendering visualization:",s),n.disconnect(),t&&f(!0)}}).catch(o=>{console.error("Failed to create renderer:",o),t&&f(!0)}),()=>{t=!1}},[e,y]),c.useEffect(()=>{if(!u.current||!p)return;const t=u.current,r=()=>{if(t){const s=t.offsetHeight;s>0?l&&l(s):i&&t.firstChild&&(t.firstChild.offsetHeight==0?i(!0):i(!1))}},o=setTimeout(r,100);let n=null;return n=new MutationObserver(r),n.observe(t,{childList:!0,subtree:!0,attributes:!0}),()=>{clearTimeout(o),n?.disconnect()}},[l,e,i,p]),a.jsx("div",{ref:u,style:{width:"100%",height:d?`${d}px`:"100%"}})}function j(e){return typeof window>"u"?a.jsx("div",{style:{width:"100%",height:e.height?`${e.height}px`:"100%",display:"flex",alignItems:"center",justifyContent:"center",color:"#666"},children:"Loading..."}):a.jsx(c.Suspense,{fallback:a.jsx("div",{style:{width:"100%",height:e.height?`${e.height}px`:"100%",display:"flex",alignItems:"center",justifyContent:"center",color:"#666"},children:"Loading visualization..."}),children:a.jsx(x,{...e})})}export{j as default};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{d as R0,g as Lp}from"./index-C7whj6wK.js";function Bp(a,d){for(var y=0;y<d.length;y++){const m=d[y];if(typeof m!="string"&&!Array.isArray(m)){for(const x in m)if(x!=="default"&&!(x in a)){const u=Object.getOwnPropertyDescriptor(m,x);u&&Object.defineProperty(a,x,u.get?u:{enumerable:!0,get:()=>m[x]})}}}return Object.freeze(Object.defineProperty(a,Symbol.toStringTag,{value:"Module"}))}var Tr={},at={},br={},Wn={},La;function P0(){return La||(La=1,Object.defineProperty(Wn,"__esModule",{value:!0}),Wn.MALLOY_INTERFACE_TYPES=void 0,Wn.MALLOY_INTERFACE_TYPES={Aggregate:{type:"struct",name:"Aggregate",fields:{name:{type:"string",optional:!0,array:!1},field:{type:"Field",optional:!1,array:!1}}},Annotation:{type:"struct",name:"Annotation",fields:{value:{type:"string",optional:!1,array:!1}}},AnonymousQueryInfo:{type:"struct",name:"AnonymousQueryInfo",fields:{schema:{type:"Schema",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0},definition:{type:"Query",optional:!0,array:!1},code:{type:"string",optional:!0,array:!1},location:{type:"Location",optional:!0,array:!1}}},ArrayCell:{type:"struct",name:"ArrayCell",fields:{array_value:{type:"Cell",array:!0,optional:!1}}},ArrayType:{type:"struct",name:"ArrayType",fields:{element_type:{type:"AtomicType",optional:!1,array:!1}}},AtomicType:{type:"union",name:"AtomicType",options:{string_type:"StringType",boolean_type:"BooleanType",number_type:"NumberType",json_type:"JSONType",sql_native_type:"SQLNativeType",date_type:"DateType",timestamp_type:"TimestampType",array_type:"ArrayType",record_type:"RecordType"}},BooleanCell:{type:"struct",name:"BooleanCell",fields:{boolean_value:{type:"boolean",optional:!1,array:!1}}},BooleanLiteral:{type:"struct",name:"BooleanLiteral",fields:{boolean_value:{type:"boolean",optional:!1,array:!1}}},BooleanType:{type:"struct",name:"BooleanType",fields:{}},Cell:{type:"union",name:"Cell",options:{string_cell:"StringCell",boolean_cell:"BooleanCell",date_cell:"DateCell",timestamp_cell:"TimestampCell",number_cell:"NumberCell",json_cell:"JSONCell",record_cell:"RecordCell",array_cell:"ArrayCell",null_cell:"NullCell",sql_native_cell:"SQLNativeCell"}},CompileModelRequest:{type:"struct",name:"CompileModelRequest",fields:{model_url:{type:"string",optional:!1,array:!1},extend_model_url:{type:"string",optional:!0,array:!1},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1}}},CompileModelResponse:{type:"struct",name:"CompileModelResponse",fields:{model:{type:"ModelInfo",optional:!0,array:!1},logs:{type:"LogMessage",array:!0,optional:!0},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1},translations:{type:"Translation",array:!0,optional:!0}}},CompileQueryRequest:{type:"struct",name:"CompileQueryRequest",fields:{model_url:{type:"string",optional:!1,array:!1},query:{type:"Query",optional:!1,array:!1},default_row_limit:{type:"number",optional:!0,array:!1},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1}}},CompileQueryResponse:{type:"struct",name:"CompileQueryResponse",fields:{result:{type:"Result",optional:!0,array:!1},default_row_limit_added:{type:"number",optional:!0,array:!1},logs:{type:"LogMessage",array:!0,optional:!0},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1},translations:{type:"Translation",array:!0,optional:!0}}},CompileSourceRequest:{type:"struct",name:"CompileSourceRequest",fields:{model_url:{type:"string",optional:!1,array:!1},name:{type:"string",optional:!1,array:!1},extend_model_url:{type:"string",optional:!0,array:!1},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1}}},CompileSourceResponse:{type:"struct",name:"CompileSourceResponse",fields:{source:{type:"SourceInfo",optional:!0,array:!1},logs:{type:"LogMessage",array:!0,optional:!0},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1}}},CompilerNeeds:{type:"struct",name:"CompilerNeeds",fields:{table_schemas:{type:"SQLTable",array:!0,optional:!0},sql_schemas:{type:"SQLQuery",array:!0,optional:!0},files:{type:"File",array:!0,optional:!0},connections:{type:"Connection",array:!0,optional:!0},translations:{type:"Translation",array:!0,optional:!0}}},Connection:{type:"struct",name:"Connection",fields:{name:{type:"string",optional:!1,array:!1},dialect:{type:"string",optional:!0,array:!1}}},Data:{type:"union",name:"Data",options:{record_cell:"RecordCell",array_cell:"ArrayCell"}},DateCell:{type:"struct",name:"DateCell",fields:{date_value:{type:"string",optional:!1,array:!1}}},DateLiteral:{type:"struct",name:"DateLiteral",fields:{date_value:{type:"string",optional:!1,array:!1},granularity:{type:"DateTimeframe",optional:!0,array:!1},timezone:{type:"string",optional:!0,array:!1}}},DateTimeframe:{type:"enum",name:"DateTimeframe",values:{year:1,quarter:2,month:3,week:4,day:5}},DateType:{type:"struct",name:"DateType",fields:{timeframe:{type:"DateTimeframe",optional:!0,array:!1}}},DimensionInfo:{type:"struct",name:"DimensionInfo",fields:{name:{type:"string",optional:!1,array:!1},type:{type:"AtomicType",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0}}},DocumentPosition:{type:"struct",name:"DocumentPosition",fields:{line:{type:"number",optional:!1,array:!1},character:{type:"number",optional:!1,array:!1}}},DocumentRange:{type:"struct",name:"DocumentRange",fields:{start:{type:"DocumentPosition",optional:!1,array:!1},end:{type:"DocumentPosition",optional:!1,array:!1}}},DrillOperation:{type:"struct",name:"DrillOperation",fields:{filter:{type:"Filter",optional:!1,array:!1}}},Expression:{type:"union",name:"Expression",options:{field_reference:"Reference",time_truncation:"TimeTruncationFieldReference",filtered_field:"FilteredField",literal_value:"LiteralValueExpression"}},Field:{type:"struct",name:"Field",fields:{expression:{type:"Expression",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0}}},FieldInfo:{type:"union",name:"FieldInfo",options:{dimension:"DimensionInfo",measure:"MeasureInfo",join:"JoinInfo",view:"ViewInfo"}},File:{type:"struct",name:"File",fields:{url:{type:"string",optional:!1,array:!1},contents:{type:"string",optional:!0,array:!1},invalidation_key:{type:"string",optional:!0,array:!1}}},Filter:{type:"union",name:"Filter",options:{filter_string:"FilterStringApplication",literal_equality:"LiteralEqualityComparison"}},FilterExpressionLiteral:{type:"struct",name:"FilterExpressionLiteral",fields:{filter_expression_value:{type:"string",optional:!1,array:!1}}},FilterExpressionType:{type:"struct",name:"FilterExpressionType",fields:{filter_type:{type:"FilterableType",optional:!1,array:!1}}},FilterOperation:{type:"struct",name:"FilterOperation",fields:{filter:{type:"Filter",optional:!1,array:!1}}},FilterStringApplication:{type:"struct",name:"FilterStringApplication",fields:{expression:{type:"Expression",optional:!1,array:!1},filter:{type:"string",optional:!1,array:!1}}},FilterableType:{type:"union",name:"FilterableType",options:{string_type:"StringType",boolean_type:"BooleanType",number_type:"NumberType",date_type:"DateType",timestamp_type:"TimestampType"}},FilteredField:{type:"struct",name:"FilteredField",fields:{field_reference:{type:"Reference",optional:!1,array:!1},where:{type:"FilterOperation",array:!0,optional:!1}}},GroupBy:{type:"struct",name:"GroupBy",fields:{name:{type:"string",optional:!0,array:!1},field:{type:"Field",optional:!1,array:!1}}},JSONCell:{type:"struct",name:"JSONCell",fields:{json_value:{type:"string",optional:!1,array:!1}}},JSONType:{type:"struct",name:"JSONType",fields:{}},JoinInfo:{type:"struct",name:"JoinInfo",fields:{name:{type:"string",optional:!1,array:!1},schema:{type:"Schema",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0},relationship:{type:"Relationship",optional:!1,array:!1}}},Limit:{type:"struct",name:"Limit",fields:{limit:{type:"number",optional:!1,array:!1}}},LiteralEqualityComparison:{type:"struct",name:"LiteralEqualityComparison",fields:{expression:{type:"Expression",optional:!1,array:!1},value:{type:"LiteralValue",optional:!1,array:!1}}},LiteralValue:{type:"union",name:"LiteralValue",options:{string_literal:"StringLiteral",number_literal:"NumberLiteral",date_literal:"DateLiteral",timestamp_literal:"TimestampLiteral",boolean_literal:"BooleanLiteral",null_literal:"NullLiteral",filter_expression_literal:"FilterExpressionLiteral"}},LiteralValueExpression:{type:"struct",name:"LiteralValueExpression",fields:{literal_value:{type:"LiteralValue",optional:!1,array:!1}}},Location:{type:"struct",name:"Location",fields:{url:{type:"string",optional:!1,array:!1},range:{type:"Range",optional:!1,array:!1}}},LogMessage:{type:"struct",name:"LogMessage",fields:{url:{type:"string",optional:!1,array:!1},range:{type:"DocumentRange",optional:!1,array:!1},severity:{type:"LogSeverity",optional:!1,array:!1},message:{type:"string",optional:!1,array:!1}}},LogSeverity:{type:"enum",name:"LogSeverity",values:{debug:1,info:2,warn:3,error:4}},MeasureInfo:{type:"struct",name:"MeasureInfo",fields:{name:{type:"string",optional:!1,array:!1},type:{type:"AtomicType",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0}}},ModelEntryValue:{type:"union",name:"ModelEntryValue",options:{source:"SourceInfo",query:"QueryInfo"}},ModelInfo:{type:"struct",name:"ModelInfo",fields:{entries:{type:"ModelEntryValue",array:!0,optional:!1},annotations:{type:"Annotation",array:!0,optional:!0},anonymous_queries:{type:"AnonymousQueryInfo",array:!0,optional:!1}}},Nest:{type:"struct",name:"Nest",fields:{name:{type:"string",optional:!0,array:!1},view:{type:"View",optional:!1,array:!1}}},NullCell:{type:"struct",name:"NullCell",fields:{}},NullLiteral:{type:"struct",name:"NullLiteral",fields:{}},NumberCell:{type:"struct",name:"NumberCell",fields:{number_value:{type:"number",optional:!1,array:!1}}},NumberLiteral:{type:"struct",name:"NumberLiteral",fields:{number_value:{type:"number",optional:!1,array:!1}}},NumberSubtype:{type:"enum",name:"NumberSubtype",values:{integer:1,decimal:2}},NumberType:{type:"struct",name:"NumberType",fields:{subtype:{type:"NumberSubtype",optional:!0,array:!1}}},OrderBy:{type:"struct",name:"OrderBy",fields:{field_reference:{type:"Reference",optional:!1,array:!1},direction:{type:"OrderByDirection",optional:!0,array:!1}}},OrderByDirection:{type:"enum",name:"OrderByDirection",values:{asc:1,desc:2}},ParameterInfo:{type:"struct",name:"ParameterInfo",fields:{name:{type:"string",optional:!1,array:!1},type:{type:"ParameterType",optional:!1,array:!1},default_value:{type:"LiteralValue",optional:!0,array:!1}}},ParameterType:{type:"union",name:"ParameterType",options:{string_type:"StringType",boolean_type:"BooleanType",number_type:"NumberType",json_type:"JSONType",sql_native_type:"SQLNativeType",date_type:"DateType",timestamp_type:"TimestampType",array_type:"ArrayType",record_type:"RecordType",filter_expression_type:"FilterExpressionType"}},ParameterValue:{type:"struct",name:"ParameterValue",fields:{name:{type:"string",optional:!1,array:!1},value:{type:"LiteralValue",optional:!1,array:!1}}},Position:{type:"struct",name:"Position",fields:{line:{type:"number",optional:!1,array:!1},character:{type:"number",optional:!1,array:!1}}},Query:{type:"struct",name:"Query",fields:{definition:{type:"QueryDefinition",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0}}},QueryArrow:{type:"struct",name:"QueryArrow",fields:{source:{type:"QueryArrowSource",optional:!1,array:!1},view:{type:"ViewDefinition",optional:!1,array:!1}}},QueryArrowSource:{type:"union",name:"QueryArrowSource",options:{refinement:"QueryRefinement",source_reference:"Reference"}},QueryDefinition:{type:"union",name:"QueryDefinition",options:{arrow:"QueryArrow",query_reference:"Reference",refinement:"QueryRefinement"}},QueryInfo:{type:"struct",name:"QueryInfo",fields:{name:{type:"string",optional:!1,array:!1},schema:{type:"Schema",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0},definition:{type:"Query",optional:!0,array:!1},code:{type:"string",optional:!0,array:!1},location:{type:"Location",optional:!0,array:!1}}},QueryRefinement:{type:"struct",name:"QueryRefinement",fields:{base:{type:"QueryDefinition",optional:!1,array:!1},refinement:{type:"ViewDefinition",optional:!1,array:!1}}},Range:{type:"struct",name:"Range",fields:{start:{type:"Position",optional:!1,array:!1},end:{type:"Position",optional:!1,array:!1}}},RecordCell:{type:"struct",name:"RecordCell",fields:{record_value:{type:"Cell",array:!0,optional:!1}}},RecordType:{type:"struct",name:"RecordType",fields:{fields:{type:"DimensionInfo",array:!0,optional:!1}}},Reference:{type:"struct",name:"Reference",fields:{name:{type:"string",optional:!1,array:!1},path:{type:"string",array:!0,optional:!0},parameters:{type:"ParameterValue",array:!0,optional:!0}}},Relationship:{type:"enum",name:"Relationship",values:{one:1,many:2,cross:3}},Result:{type:"struct",name:"Result",fields:{data:{type:"Data",optional:!0,array:!1},schema:{type:"Schema",optional:!1,array:!1},sql:{type:"string",optional:!0,array:!1},connection_name:{type:"string",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0},model_annotations:{type:"Annotation",array:!0,optional:!0},query_timezone:{type:"string",optional:!0,array:!1},source_annotations:{type:"Annotation",array:!0,optional:!0}}},RunIndexQueryRequest:{type:"struct",name:"RunIndexQueryRequest",fields:{model_url:{type:"string",optional:!1,array:!1},source_name:{type:"string",optional:!1,array:!1},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1}}},RunIndexQueryResponse:{type:"struct",name:"RunIndexQueryResponse",fields:{result:{type:"Result",optional:!0,array:!1},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1}}},RunQueryRequest:{type:"struct",name:"RunQueryRequest",fields:{model_url:{type:"string",optional:!1,array:!1},query:{type:"Query",optional:!1,array:!1},default_row_limit:{type:"number",optional:!0,array:!1},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1}}},RunQueryResponse:{type:"struct",name:"RunQueryResponse",fields:{result:{type:"Result",optional:!0,array:!1},default_row_limit_added:{type:"number",optional:!0,array:!1},logs:{type:"LogMessage",array:!0,optional:!0},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1}}},SQLNativeCell:{type:"struct",name:"SQLNativeCell",fields:{sql_native_value:{type:"string",optional:!1,array:!1}}},SQLNativeType:{type:"struct",name:"SQLNativeType",fields:{sql_type:{type:"string",optional:!0,array:!1}}},SQLQuery:{type:"struct",name:"SQLQuery",fields:{sql:{type:"string",optional:!1,array:!1},schema:{type:"Schema",optional:!0,array:!1},connection_name:{type:"string",optional:!1,array:!1}}},SQLTable:{type:"struct",name:"SQLTable",fields:{name:{type:"string",optional:!1,array:!1},schema:{type:"Schema",optional:!0,array:!1},connection_name:{type:"string",optional:!1,array:!1}}},Schema:{type:"struct",name:"Schema",fields:{fields:{type:"FieldInfo",array:!0,optional:!1}}},SourceInfo:{type:"struct",name:"SourceInfo",fields:{name:{type:"string",optional:!1,array:!1},schema:{type:"Schema",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0},parameters:{type:"ParameterInfo",array:!0,optional:!0}}},StringCell:{type:"struct",name:"StringCell",fields:{string_value:{type:"string",optional:!1,array:!1}}},StringLiteral:{type:"struct",name:"StringLiteral",fields:{string_value:{type:"string",optional:!1,array:!1}}},StringType:{type:"struct",name:"StringType",fields:{}},TimeTruncationFieldReference:{type:"struct",name:"TimeTruncationFieldReference",fields:{field_reference:{type:"Reference",optional:!1,array:!1},truncation:{type:"TimestampTimeframe",optional:!1,array:!1}}},TimestampCell:{type:"struct",name:"TimestampCell",fields:{timestamp_value:{type:"string",optional:!1,array:!1}}},TimestampLiteral:{type:"struct",name:"TimestampLiteral",fields:{timestamp_value:{type:"string",optional:!1,array:!1},granularity:{type:"TimestampTimeframe",optional:!0,array:!1},timezone:{type:"string",optional:!0,array:!1}}},TimestampTimeframe:{type:"enum",name:"TimestampTimeframe",values:{year:1,quarter:2,month:3,week:4,day:5,hour:6,minute:7,second:8}},TimestampType:{type:"struct",name:"TimestampType",fields:{timeframe:{type:"TimestampTimeframe",optional:!0,array:!1}}},Translation:{type:"struct",name:"Translation",fields:{url:{type:"string",optional:!1,array:!1},compiled_model_json:{type:"string",optional:!0,array:!1}}},View:{type:"struct",name:"View",fields:{definition:{type:"ViewDefinition",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0}}},ViewArrow:{type:"struct",name:"ViewArrow",fields:{source:{type:"ViewDefinition",optional:!1,array:!1},view:{type:"ViewDefinition",optional:!1,array:!1}}},ViewDefinition:{type:"union",name:"ViewDefinition",options:{arrow:"ViewArrow",view_reference:"Reference",refinement:"ViewRefinement",segment:"ViewSegment"}},ViewInfo:{type:"struct",name:"ViewInfo",fields:{name:{type:"string",optional:!1,array:!1},schema:{type:"Schema",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0},definition:{type:"View",optional:!0,array:!1}}},ViewOperation:{type:"union",name:"ViewOperation",options:{group_by:"GroupBy",aggregate:"Aggregate",order_by:"OrderBy",limit:"Limit",where:"FilterOperation",nest:"Nest",having:"FilterOperation",drill:"DrillOperation"}},ViewRefinement:{type:"struct",name:"ViewRefinement",fields:{base:{type:"ViewDefinition",optional:!1,array:!1},refinement:{type:"ViewDefinition",optional:!1,array:!1}}},ViewSegment:{type:"struct",name:"ViewSegment",fields:{operations:{type:"ViewOperation",array:!0,optional:!1}}}}),Wn}var Qn={},qi={},Xn={},Ba;function kp(){return Ba||(Ba=1,Object.defineProperty(Xn,"__esModule",{value:!0}),Xn.RESERVED_WORDS=void 0,Xn.RESERVED_WORDS=["accept","aggregate","declare","dimension","except","explore","group_by","having","index","join_cross","join_one","join_many","limit","measure","nest","order_by","primary_key","project","query","rename","sample","source","sql","turduck","top","where","all","as","asc","avg","boolean","by","case","cast","condition","count","date","day","days","desc","distinct","else","end","exclude","false","for","from","from_sql","has","hour","hours","import","is","json","last","max","min","minute","minutes","month","months","not","now","null","number","on","or","pick","quarter","quarters","second","seconds","string","sum","table","then","this","timestamp","to","true","turtle","week","weeks","when","with","year","years","ungrouped"]),Xn}var ka;function Mp(){if(ka)return qi;ka=1,Object.defineProperty(qi,"__esModule",{value:!0}),qi.maybeQuoteIdentifier=y;const a=kp();function d(m){const x=!m.match(/^[A-Za-z_][A-Za-z_0-9]*$/),u=a.RESERVED_WORDS.includes(m.toLowerCase());return x||u}function y(m){const x=m.split(".");for(let u=0;u<x.length;u++)d(x[u])&&(x[u]=`\`${x[u]}\``);return x.join(".")}return qi}var Ma;function qp(){if(Ma)return Qn;Ma=1,Object.defineProperty(Qn,"__esModule",{value:!0}),Qn.queryToMalloy=d,Qn.filterToMalloy=y;const a=Mp();function d(b,{tabWidth:R}={tabWidth:2}){const k=p(b);return o(k,{tabWidth:R})}function y(b,{tabWidth:R}={tabWidth:2}){const k=T(b);return o(k,{tabWidth:R})}const m=Symbol("indent"),x=Symbol("newline"),u=Symbol("outdent"),r=Symbol("optional_newline_indent");function o(b,{tabWidth:R}={tabWidth:2}){let k="",V=0,G=!0;for(const U of b)if(U===x)k+=`
|
|
1
|
+
import{c as R0,g as Lp}from"./vendor-c5ypKtDW.js";function Bp(a,d){for(var y=0;y<d.length;y++){const m=d[y];if(typeof m!="string"&&!Array.isArray(m)){for(const x in m)if(x!=="default"&&!(x in a)){const u=Object.getOwnPropertyDescriptor(m,x);u&&Object.defineProperty(a,x,u.get?u:{enumerable:!0,get:()=>m[x]})}}}return Object.freeze(Object.defineProperty(a,Symbol.toStringTag,{value:"Module"}))}var Tr={},at={},br={},Wn={},La;function P0(){return La||(La=1,Object.defineProperty(Wn,"__esModule",{value:!0}),Wn.MALLOY_INTERFACE_TYPES=void 0,Wn.MALLOY_INTERFACE_TYPES={Aggregate:{type:"struct",name:"Aggregate",fields:{name:{type:"string",optional:!0,array:!1},field:{type:"Field",optional:!1,array:!1}}},Annotation:{type:"struct",name:"Annotation",fields:{value:{type:"string",optional:!1,array:!1}}},AnonymousQueryInfo:{type:"struct",name:"AnonymousQueryInfo",fields:{schema:{type:"Schema",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0},definition:{type:"Query",optional:!0,array:!1},code:{type:"string",optional:!0,array:!1},location:{type:"Location",optional:!0,array:!1}}},ArrayCell:{type:"struct",name:"ArrayCell",fields:{array_value:{type:"Cell",array:!0,optional:!1}}},ArrayType:{type:"struct",name:"ArrayType",fields:{element_type:{type:"AtomicType",optional:!1,array:!1}}},AtomicType:{type:"union",name:"AtomicType",options:{string_type:"StringType",boolean_type:"BooleanType",number_type:"NumberType",json_type:"JSONType",sql_native_type:"SQLNativeType",date_type:"DateType",timestamp_type:"TimestampType",array_type:"ArrayType",record_type:"RecordType"}},BooleanCell:{type:"struct",name:"BooleanCell",fields:{boolean_value:{type:"boolean",optional:!1,array:!1}}},BooleanLiteral:{type:"struct",name:"BooleanLiteral",fields:{boolean_value:{type:"boolean",optional:!1,array:!1}}},BooleanType:{type:"struct",name:"BooleanType",fields:{}},Cell:{type:"union",name:"Cell",options:{string_cell:"StringCell",boolean_cell:"BooleanCell",date_cell:"DateCell",timestamp_cell:"TimestampCell",number_cell:"NumberCell",json_cell:"JSONCell",record_cell:"RecordCell",array_cell:"ArrayCell",null_cell:"NullCell",sql_native_cell:"SQLNativeCell"}},CompileModelRequest:{type:"struct",name:"CompileModelRequest",fields:{model_url:{type:"string",optional:!1,array:!1},extend_model_url:{type:"string",optional:!0,array:!1},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1}}},CompileModelResponse:{type:"struct",name:"CompileModelResponse",fields:{model:{type:"ModelInfo",optional:!0,array:!1},logs:{type:"LogMessage",array:!0,optional:!0},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1},translations:{type:"Translation",array:!0,optional:!0}}},CompileQueryRequest:{type:"struct",name:"CompileQueryRequest",fields:{model_url:{type:"string",optional:!1,array:!1},query:{type:"Query",optional:!1,array:!1},default_row_limit:{type:"number",optional:!0,array:!1},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1}}},CompileQueryResponse:{type:"struct",name:"CompileQueryResponse",fields:{result:{type:"Result",optional:!0,array:!1},default_row_limit_added:{type:"number",optional:!0,array:!1},logs:{type:"LogMessage",array:!0,optional:!0},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1},translations:{type:"Translation",array:!0,optional:!0}}},CompileSourceRequest:{type:"struct",name:"CompileSourceRequest",fields:{model_url:{type:"string",optional:!1,array:!1},name:{type:"string",optional:!1,array:!1},extend_model_url:{type:"string",optional:!0,array:!1},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1}}},CompileSourceResponse:{type:"struct",name:"CompileSourceResponse",fields:{source:{type:"SourceInfo",optional:!0,array:!1},logs:{type:"LogMessage",array:!0,optional:!0},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1}}},CompilerNeeds:{type:"struct",name:"CompilerNeeds",fields:{table_schemas:{type:"SQLTable",array:!0,optional:!0},sql_schemas:{type:"SQLQuery",array:!0,optional:!0},files:{type:"File",array:!0,optional:!0},connections:{type:"Connection",array:!0,optional:!0},translations:{type:"Translation",array:!0,optional:!0}}},Connection:{type:"struct",name:"Connection",fields:{name:{type:"string",optional:!1,array:!1},dialect:{type:"string",optional:!0,array:!1}}},Data:{type:"union",name:"Data",options:{record_cell:"RecordCell",array_cell:"ArrayCell"}},DateCell:{type:"struct",name:"DateCell",fields:{date_value:{type:"string",optional:!1,array:!1}}},DateLiteral:{type:"struct",name:"DateLiteral",fields:{date_value:{type:"string",optional:!1,array:!1},granularity:{type:"DateTimeframe",optional:!0,array:!1},timezone:{type:"string",optional:!0,array:!1}}},DateTimeframe:{type:"enum",name:"DateTimeframe",values:{year:1,quarter:2,month:3,week:4,day:5}},DateType:{type:"struct",name:"DateType",fields:{timeframe:{type:"DateTimeframe",optional:!0,array:!1}}},DimensionInfo:{type:"struct",name:"DimensionInfo",fields:{name:{type:"string",optional:!1,array:!1},type:{type:"AtomicType",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0}}},DocumentPosition:{type:"struct",name:"DocumentPosition",fields:{line:{type:"number",optional:!1,array:!1},character:{type:"number",optional:!1,array:!1}}},DocumentRange:{type:"struct",name:"DocumentRange",fields:{start:{type:"DocumentPosition",optional:!1,array:!1},end:{type:"DocumentPosition",optional:!1,array:!1}}},DrillOperation:{type:"struct",name:"DrillOperation",fields:{filter:{type:"Filter",optional:!1,array:!1}}},Expression:{type:"union",name:"Expression",options:{field_reference:"Reference",time_truncation:"TimeTruncationFieldReference",filtered_field:"FilteredField",literal_value:"LiteralValueExpression"}},Field:{type:"struct",name:"Field",fields:{expression:{type:"Expression",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0}}},FieldInfo:{type:"union",name:"FieldInfo",options:{dimension:"DimensionInfo",measure:"MeasureInfo",join:"JoinInfo",view:"ViewInfo"}},File:{type:"struct",name:"File",fields:{url:{type:"string",optional:!1,array:!1},contents:{type:"string",optional:!0,array:!1},invalidation_key:{type:"string",optional:!0,array:!1}}},Filter:{type:"union",name:"Filter",options:{filter_string:"FilterStringApplication",literal_equality:"LiteralEqualityComparison"}},FilterExpressionLiteral:{type:"struct",name:"FilterExpressionLiteral",fields:{filter_expression_value:{type:"string",optional:!1,array:!1}}},FilterExpressionType:{type:"struct",name:"FilterExpressionType",fields:{filter_type:{type:"FilterableType",optional:!1,array:!1}}},FilterOperation:{type:"struct",name:"FilterOperation",fields:{filter:{type:"Filter",optional:!1,array:!1}}},FilterStringApplication:{type:"struct",name:"FilterStringApplication",fields:{expression:{type:"Expression",optional:!1,array:!1},filter:{type:"string",optional:!1,array:!1}}},FilterableType:{type:"union",name:"FilterableType",options:{string_type:"StringType",boolean_type:"BooleanType",number_type:"NumberType",date_type:"DateType",timestamp_type:"TimestampType"}},FilteredField:{type:"struct",name:"FilteredField",fields:{field_reference:{type:"Reference",optional:!1,array:!1},where:{type:"FilterOperation",array:!0,optional:!1}}},GroupBy:{type:"struct",name:"GroupBy",fields:{name:{type:"string",optional:!0,array:!1},field:{type:"Field",optional:!1,array:!1}}},JSONCell:{type:"struct",name:"JSONCell",fields:{json_value:{type:"string",optional:!1,array:!1}}},JSONType:{type:"struct",name:"JSONType",fields:{}},JoinInfo:{type:"struct",name:"JoinInfo",fields:{name:{type:"string",optional:!1,array:!1},schema:{type:"Schema",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0},relationship:{type:"Relationship",optional:!1,array:!1}}},Limit:{type:"struct",name:"Limit",fields:{limit:{type:"number",optional:!1,array:!1}}},LiteralEqualityComparison:{type:"struct",name:"LiteralEqualityComparison",fields:{expression:{type:"Expression",optional:!1,array:!1},value:{type:"LiteralValue",optional:!1,array:!1}}},LiteralValue:{type:"union",name:"LiteralValue",options:{string_literal:"StringLiteral",number_literal:"NumberLiteral",date_literal:"DateLiteral",timestamp_literal:"TimestampLiteral",boolean_literal:"BooleanLiteral",null_literal:"NullLiteral",filter_expression_literal:"FilterExpressionLiteral"}},LiteralValueExpression:{type:"struct",name:"LiteralValueExpression",fields:{literal_value:{type:"LiteralValue",optional:!1,array:!1}}},Location:{type:"struct",name:"Location",fields:{url:{type:"string",optional:!1,array:!1},range:{type:"Range",optional:!1,array:!1}}},LogMessage:{type:"struct",name:"LogMessage",fields:{url:{type:"string",optional:!1,array:!1},range:{type:"DocumentRange",optional:!1,array:!1},severity:{type:"LogSeverity",optional:!1,array:!1},message:{type:"string",optional:!1,array:!1}}},LogSeverity:{type:"enum",name:"LogSeverity",values:{debug:1,info:2,warn:3,error:4}},MeasureInfo:{type:"struct",name:"MeasureInfo",fields:{name:{type:"string",optional:!1,array:!1},type:{type:"AtomicType",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0}}},ModelEntryValue:{type:"union",name:"ModelEntryValue",options:{source:"SourceInfo",query:"QueryInfo"}},ModelInfo:{type:"struct",name:"ModelInfo",fields:{entries:{type:"ModelEntryValue",array:!0,optional:!1},annotations:{type:"Annotation",array:!0,optional:!0},anonymous_queries:{type:"AnonymousQueryInfo",array:!0,optional:!1}}},Nest:{type:"struct",name:"Nest",fields:{name:{type:"string",optional:!0,array:!1},view:{type:"View",optional:!1,array:!1}}},NullCell:{type:"struct",name:"NullCell",fields:{}},NullLiteral:{type:"struct",name:"NullLiteral",fields:{}},NumberCell:{type:"struct",name:"NumberCell",fields:{number_value:{type:"number",optional:!1,array:!1}}},NumberLiteral:{type:"struct",name:"NumberLiteral",fields:{number_value:{type:"number",optional:!1,array:!1}}},NumberSubtype:{type:"enum",name:"NumberSubtype",values:{integer:1,decimal:2}},NumberType:{type:"struct",name:"NumberType",fields:{subtype:{type:"NumberSubtype",optional:!0,array:!1}}},OrderBy:{type:"struct",name:"OrderBy",fields:{field_reference:{type:"Reference",optional:!1,array:!1},direction:{type:"OrderByDirection",optional:!0,array:!1}}},OrderByDirection:{type:"enum",name:"OrderByDirection",values:{asc:1,desc:2}},ParameterInfo:{type:"struct",name:"ParameterInfo",fields:{name:{type:"string",optional:!1,array:!1},type:{type:"ParameterType",optional:!1,array:!1},default_value:{type:"LiteralValue",optional:!0,array:!1}}},ParameterType:{type:"union",name:"ParameterType",options:{string_type:"StringType",boolean_type:"BooleanType",number_type:"NumberType",json_type:"JSONType",sql_native_type:"SQLNativeType",date_type:"DateType",timestamp_type:"TimestampType",array_type:"ArrayType",record_type:"RecordType",filter_expression_type:"FilterExpressionType"}},ParameterValue:{type:"struct",name:"ParameterValue",fields:{name:{type:"string",optional:!1,array:!1},value:{type:"LiteralValue",optional:!1,array:!1}}},Position:{type:"struct",name:"Position",fields:{line:{type:"number",optional:!1,array:!1},character:{type:"number",optional:!1,array:!1}}},Query:{type:"struct",name:"Query",fields:{definition:{type:"QueryDefinition",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0}}},QueryArrow:{type:"struct",name:"QueryArrow",fields:{source:{type:"QueryArrowSource",optional:!1,array:!1},view:{type:"ViewDefinition",optional:!1,array:!1}}},QueryArrowSource:{type:"union",name:"QueryArrowSource",options:{refinement:"QueryRefinement",source_reference:"Reference"}},QueryDefinition:{type:"union",name:"QueryDefinition",options:{arrow:"QueryArrow",query_reference:"Reference",refinement:"QueryRefinement"}},QueryInfo:{type:"struct",name:"QueryInfo",fields:{name:{type:"string",optional:!1,array:!1},schema:{type:"Schema",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0},definition:{type:"Query",optional:!0,array:!1},code:{type:"string",optional:!0,array:!1},location:{type:"Location",optional:!0,array:!1}}},QueryRefinement:{type:"struct",name:"QueryRefinement",fields:{base:{type:"QueryDefinition",optional:!1,array:!1},refinement:{type:"ViewDefinition",optional:!1,array:!1}}},Range:{type:"struct",name:"Range",fields:{start:{type:"Position",optional:!1,array:!1},end:{type:"Position",optional:!1,array:!1}}},RecordCell:{type:"struct",name:"RecordCell",fields:{record_value:{type:"Cell",array:!0,optional:!1}}},RecordType:{type:"struct",name:"RecordType",fields:{fields:{type:"DimensionInfo",array:!0,optional:!1}}},Reference:{type:"struct",name:"Reference",fields:{name:{type:"string",optional:!1,array:!1},path:{type:"string",array:!0,optional:!0},parameters:{type:"ParameterValue",array:!0,optional:!0}}},Relationship:{type:"enum",name:"Relationship",values:{one:1,many:2,cross:3}},Result:{type:"struct",name:"Result",fields:{data:{type:"Data",optional:!0,array:!1},schema:{type:"Schema",optional:!1,array:!1},sql:{type:"string",optional:!0,array:!1},connection_name:{type:"string",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0},model_annotations:{type:"Annotation",array:!0,optional:!0},query_timezone:{type:"string",optional:!0,array:!1},source_annotations:{type:"Annotation",array:!0,optional:!0}}},RunIndexQueryRequest:{type:"struct",name:"RunIndexQueryRequest",fields:{model_url:{type:"string",optional:!1,array:!1},source_name:{type:"string",optional:!1,array:!1},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1}}},RunIndexQueryResponse:{type:"struct",name:"RunIndexQueryResponse",fields:{result:{type:"Result",optional:!0,array:!1},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1}}},RunQueryRequest:{type:"struct",name:"RunQueryRequest",fields:{model_url:{type:"string",optional:!1,array:!1},query:{type:"Query",optional:!1,array:!1},default_row_limit:{type:"number",optional:!0,array:!1},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1}}},RunQueryResponse:{type:"struct",name:"RunQueryResponse",fields:{result:{type:"Result",optional:!0,array:!1},default_row_limit_added:{type:"number",optional:!0,array:!1},logs:{type:"LogMessage",array:!0,optional:!0},compiler_needs:{type:"CompilerNeeds",optional:!0,array:!1}}},SQLNativeCell:{type:"struct",name:"SQLNativeCell",fields:{sql_native_value:{type:"string",optional:!1,array:!1}}},SQLNativeType:{type:"struct",name:"SQLNativeType",fields:{sql_type:{type:"string",optional:!0,array:!1}}},SQLQuery:{type:"struct",name:"SQLQuery",fields:{sql:{type:"string",optional:!1,array:!1},schema:{type:"Schema",optional:!0,array:!1},connection_name:{type:"string",optional:!1,array:!1}}},SQLTable:{type:"struct",name:"SQLTable",fields:{name:{type:"string",optional:!1,array:!1},schema:{type:"Schema",optional:!0,array:!1},connection_name:{type:"string",optional:!1,array:!1}}},Schema:{type:"struct",name:"Schema",fields:{fields:{type:"FieldInfo",array:!0,optional:!1}}},SourceInfo:{type:"struct",name:"SourceInfo",fields:{name:{type:"string",optional:!1,array:!1},schema:{type:"Schema",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0},parameters:{type:"ParameterInfo",array:!0,optional:!0}}},StringCell:{type:"struct",name:"StringCell",fields:{string_value:{type:"string",optional:!1,array:!1}}},StringLiteral:{type:"struct",name:"StringLiteral",fields:{string_value:{type:"string",optional:!1,array:!1}}},StringType:{type:"struct",name:"StringType",fields:{}},TimeTruncationFieldReference:{type:"struct",name:"TimeTruncationFieldReference",fields:{field_reference:{type:"Reference",optional:!1,array:!1},truncation:{type:"TimestampTimeframe",optional:!1,array:!1}}},TimestampCell:{type:"struct",name:"TimestampCell",fields:{timestamp_value:{type:"string",optional:!1,array:!1}}},TimestampLiteral:{type:"struct",name:"TimestampLiteral",fields:{timestamp_value:{type:"string",optional:!1,array:!1},granularity:{type:"TimestampTimeframe",optional:!0,array:!1},timezone:{type:"string",optional:!0,array:!1}}},TimestampTimeframe:{type:"enum",name:"TimestampTimeframe",values:{year:1,quarter:2,month:3,week:4,day:5,hour:6,minute:7,second:8}},TimestampType:{type:"struct",name:"TimestampType",fields:{timeframe:{type:"TimestampTimeframe",optional:!0,array:!1}}},Translation:{type:"struct",name:"Translation",fields:{url:{type:"string",optional:!1,array:!1},compiled_model_json:{type:"string",optional:!0,array:!1}}},View:{type:"struct",name:"View",fields:{definition:{type:"ViewDefinition",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0}}},ViewArrow:{type:"struct",name:"ViewArrow",fields:{source:{type:"ViewDefinition",optional:!1,array:!1},view:{type:"ViewDefinition",optional:!1,array:!1}}},ViewDefinition:{type:"union",name:"ViewDefinition",options:{arrow:"ViewArrow",view_reference:"Reference",refinement:"ViewRefinement",segment:"ViewSegment"}},ViewInfo:{type:"struct",name:"ViewInfo",fields:{name:{type:"string",optional:!1,array:!1},schema:{type:"Schema",optional:!1,array:!1},annotations:{type:"Annotation",array:!0,optional:!0},definition:{type:"View",optional:!0,array:!1}}},ViewOperation:{type:"union",name:"ViewOperation",options:{group_by:"GroupBy",aggregate:"Aggregate",order_by:"OrderBy",limit:"Limit",where:"FilterOperation",nest:"Nest",having:"FilterOperation",drill:"DrillOperation"}},ViewRefinement:{type:"struct",name:"ViewRefinement",fields:{base:{type:"ViewDefinition",optional:!1,array:!1},refinement:{type:"ViewDefinition",optional:!1,array:!1}}},ViewSegment:{type:"struct",name:"ViewSegment",fields:{operations:{type:"ViewOperation",array:!0,optional:!1}}}}),Wn}var Qn={},qi={},Xn={},Ba;function kp(){return Ba||(Ba=1,Object.defineProperty(Xn,"__esModule",{value:!0}),Xn.RESERVED_WORDS=void 0,Xn.RESERVED_WORDS=["accept","aggregate","declare","dimension","except","explore","group_by","having","index","join_cross","join_one","join_many","limit","measure","nest","order_by","primary_key","project","query","rename","sample","source","sql","turduck","top","where","all","as","asc","avg","boolean","by","case","cast","condition","count","date","day","days","desc","distinct","else","end","exclude","false","for","from","from_sql","has","hour","hours","import","is","json","last","max","min","minute","minutes","month","months","not","now","null","number","on","or","pick","quarter","quarters","second","seconds","string","sum","table","then","this","timestamp","to","true","turtle","week","weeks","when","with","year","years","ungrouped"]),Xn}var ka;function Mp(){if(ka)return qi;ka=1,Object.defineProperty(qi,"__esModule",{value:!0}),qi.maybeQuoteIdentifier=y;const a=kp();function d(m){const x=!m.match(/^[A-Za-z_][A-Za-z_0-9]*$/),u=a.RESERVED_WORDS.includes(m.toLowerCase());return x||u}function y(m){const x=m.split(".");for(let u=0;u<x.length;u++)d(x[u])&&(x[u]=`\`${x[u]}\``);return x.join(".")}return qi}var Ma;function qp(){if(Ma)return Qn;Ma=1,Object.defineProperty(Qn,"__esModule",{value:!0}),Qn.queryToMalloy=d,Qn.filterToMalloy=y;const a=Mp();function d(b,{tabWidth:R}={tabWidth:2}){const k=p(b);return o(k,{tabWidth:R})}function y(b,{tabWidth:R}={tabWidth:2}){const k=T(b);return o(k,{tabWidth:R})}const m=Symbol("indent"),x=Symbol("newline"),u=Symbol("outdent"),r=Symbol("optional_newline_indent");function o(b,{tabWidth:R}={tabWidth:2}){let k="",V=0,G=!0;for(const U of b)if(U===x)k+=`
|
|
2
2
|
`,G=!0;else if(U===u)V--;else if(U===m)V++;else{if(U===r)continue;G&&(k+=" ".repeat(V*R),G=!1),k+=U}return k}function t(b,R,k,V){var G;if(R.includes(x))return[b,x,m,...R,x,u,k];const z=((G=V?.spaces)!==null&&G!==void 0?G:!0)?" ":"";return[b,z,...R,z,k]}function i(b){return{contents:b,quoteCharacter:'"'}}function e(b){var R,k;switch(b.kind){case"filter_expression_literal":return[pe(b.filter_expression_value)];case"boolean_literal":return[b.boolean_value.toString()];case"string_literal":{const{contents:V,quoteCharacter:G}=i(b.string_value);return[G,V,G]}case"number_literal":return[b.number_value.toString()];case"null_literal":return["null"];case"date_literal":return[l(s(b.date_value),(R=b.granularity)!==null&&R!==void 0?R:"day",b.timezone)];case"timestamp_literal":return[l(s(b.timestamp_value),(k=b.granularity)!==null&&k!==void 0?k:"second",b.timezone)]}}function s(b){let R;if(R=/(\d\d\d\d)-(\d\d)-(\d\d) (\d\d):(\d\d):(\d\d)/.exec(b)){const[k,V,G,U,z,K,ie]=R;return[V,G,U,z,K,ie]}else if(R=/(\d\d\d\d)-(\d\d)-(\d\d) (\d\d):(\d\d)/.exec(b)){const[k,V,G,U,z,K]=R;return[V,G,U,z,K,"00"]}else if(R=/(\d\d\d\d)-(\d\d)-(\d\d) (\d\d)(?:00)?/.exec(b)){const[k,V,G,U,z]=R;return[V,G,U,z,"00","00"]}else if(R=/(\d\d\d\d)-(\d\d)-(\d\d)/.exec(b)){const[k,V,G,U]=R;return[V,G,U,"00","00","00"]}else if(R=/(\d\d\d\d)-(\d\d)/.exec(b)){const[k,V,G]=R;return[V,G,"01","00","00","00"]}else if(R=/(\d\d\d\d)/.exec(b)){const[k,V]=R;return[V,"01","01","00","00","00"]}return["1970","01","01","00","00","00"]}function l([b,R,k,V,G,U],z,K){switch(z){case"year":return`@${b}`;case"quarter":{const ie=Math.floor(+R/3)+1;return`@${b}-Q${ie}`}case"month":return`@${b}-${R}`;case"week":return`@${b}-${R}-${k}-WK`;case"day":return`@${b}-${R}-${k}`;case"hour":return`@${b}-${R}-${k} ${V}`;case"minute":return`@${b}-${R}-${k} ${V}:${G}`;case"second":return K!==void 0?`@${b}-${R}-${k} ${V}:${G}:${U}[${K}]`:`@${b}-${R}-${k} ${V}:${G}:${U}`;default:throw new Error("Unknown timeframe.")}}function c(b){var R;const k=[];for(const V of(R=b.path)!==null&&R!==void 0?R:[])k.push((0,a.maybeQuoteIdentifier)(V)),k.push(".");if(k.push((0,a.maybeQuoteIdentifier)(b.name)),b.parameters){const V=[];for(let G=0;G<b.parameters.length;G++){const U=b.parameters[G];V.push((0,a.maybeQuoteIdentifier)(U.name)),V.push(" is "),V.push(...e(U.value)),G<b.parameters.length-1&&V.push(",",x)}k.push(...t("(",V,")",{spaces:!1}))}return k}function p(b){const R=[];return R.push(...F(b.annotations)),R.push("run: "),R.push(...h(b.definition)),R}function v(b){const R=[];switch(b.kind){case"source_reference":{R.push(...c(b));break}case"refinement":R.push(...h(b));break}return R}function h(b){const R=[];switch(b.kind){case"arrow":{R.push(...v(b.source)),R.push(" -> "),R.push(...g(b.view));break}case"query_reference":{R.push(...c(b));break}case"refinement":{const k=h(b.base);b.base.kind==="arrow"?R.push(...t("(",k,")",{spaces:!1})):R.push(...k),R.push(" + "),R.push(...g(b.refinement));break}}return R}function g(b){const R=[];switch(b.kind){case"arrow":{R.push(...g(b.source)),R.push(" -> "),R.push(...g(b.view));break}case"view_reference":{R.push(...c(b));break}case"refinement":{R.push(...g(b.base)),R.push(" + "),R.push(...g(b.refinement));break}case"segment":{R.push(..._(b));break}}return R}function _(b){if(b.operations.length===0)return["{ }"];const R=b.operations.length>1,k=[];for(let V=0;V<b.operations.length;V++){const G=b.operations[V],U=[G];for(;V<b.operations.length-1;){const z=b.operations[V+1];if(z.kind===G.kind)U.push(z),V++;else break}k.push(...A(U)),R&&V<b.operations.length-1&&k.push(x)}return t("{",k,"}")}function A(b){switch(b[0].kind){case"aggregate":return Y(b);case"group_by":return $(b);case"order_by":return B(b);case"nest":return W(b);case"limit":return re(b);case"where":return fe(b);case"having":return J(b);case"drill":return oe(b)}}function E(b,R,k=""){const V=[];V.push(`${b}:`);const G=R.length>1||R.some(U=>U.includes(x));G?V.push(x,m):V.push(" ");for(let U=0;U<R.length;U++){const z=R[U];V.push(...z),R.length>1&&U<R.length-1&&V.push(k),G&&U<R.length-1&&V.push(x)}return G&&V.push(u),V}function D(b){const R=[];return R.push(...w(b.expression)),R}function N(b){return b}function w(b){switch(b.kind){case"field_reference":return c(b);case"time_truncation":return[...c(b.field_reference),".",b.truncation];case"filtered_field":return[...c(b.field_reference),...t(" {",fe(b.where),"}")];case"literal_value":return e(b.literal_value)}}function P(b,R=!1){const k=[];return R||k.push(...F(b.field.annotations)),b.name&&(k.push((0,a.maybeQuoteIdentifier)(b.name)),k.push(" is ")),k.push(...D(b.field)),k}function $(b){const R=[],k=b.length===1;return k&&R.push(...F(b[0].field.annotations)),R.push(...E("group_by",b.map(V=>P(V,k)))),R}function Y(b){const R=[],k=b.length===1;return k&&R.push(...F(b[0].field.annotations)),R.push(...E("aggregate",b.map(V=>P(V,k)))),R}function B(b){return E("order_by",b.map(q),",")}function q(b){const R=[];return R.push(...c(b.field_reference)),b.direction&&(R.push(" "),R.push(b.direction)),R}function W(b){const R=[],k=b.length===1;return k&&R.push(...F(b[0].view.annotations)),R.push(...E("nest",b.map(V=>Z(V,k)))),R}function Z(b,R=!1){const k=[];return R||k.push(...F(b.view.annotations)),b.name&&(k.push((0,a.maybeQuoteIdentifier)(b.name)),k.push(" is ")),k.push(...I(b.view)),k}function I(b){return g(b.definition)}function Q(b){return[`limit: ${b.limit}`]}function re(b){const R=[];for(let k=0;k<b.length;k++)k!==0&&R.push(x),R.push(...Q(b[k]));return R}function fe(b){return E("where",b.map(C),",")}function oe(b){return E("drill",b.map(C),",")}function J(b){return E("having",b.map(C),",")}const te=["`","'",'"'];function pe(b){let R,k;for(const V of te){const G=O(b,V);if(G===b)return`f${V}${b}${V}`;(k===void 0||G.length<k.length)&&(R=V,k=G)}return`f${R}${k}${R}`}function O(b,R){let k="";for(let V=0;V<b.length;V++)b.slice(V).startsWith(R)?(k+="\\"+R,V+=R.length):(k+=b[V],b[V]==="\\"&&(k+=b[++V]));return k}function T(b){switch(b.kind){case"filter_string":return[...w(b.expression)," ~ ",pe(b.filter)];case"literal_equality":return[...w(b.expression)," = ",...e(b.value)]}}function C(b){return T(b.filter)}function F(b){return b?b.flatMap(j):[]}function j(b){return[b.value.trim(),x]}return Qn}var Nr={},qa;function jp(){if(qa)return Nr;qa=1,Object.defineProperty(Nr,"__esModule",{value:!0}),Nr.nestUnions=d,Nr.unnestUnions=y,Nr.convertFromThrift=m,Nr.convertToThrift=u;const a=P0();function d(r){if(r==null)return r;if(typeof r=="string"||typeof r=="number"||typeof r=="boolean")return r;if(Array.isArray(r))return r.map(d);{const o={};let t;for(const i in r)i==="kind"?t=r[i]:o[i]=d(r[i]);return t===void 0?o:{[t]:o}}}function y(r,o){if(r==null)return r;if(typeof r=="string"||typeof r=="number"||typeof r=="boolean")return r;if(Array.isArray(r))return r.map(t=>y(t,o));{const t=x(o);if(t.type==="union"){for(const i in t.options)if(r[i]!==void 0){const e=y(r[i],t.options[i]);if(typeof e=="object")return{kind:i,...e}}}else if(t.type==="struct"){const i={};for(const e in r){const s=t.fields[e];if(s===void 0)throw new Error(`Unknown field ${e} in ${o}`);i[e]=y(r[e],s.type)}return i}else throw new Error(`Cannot unnest unions in an enum type ${o}`)}}function m(r,o){if(r==null)return r;if(typeof r=="string"||typeof r=="boolean")return r;if(typeof r=="number"){if(o==="number")return r;const t=x(o);if(t.type!=="enum")throw new Error(`Found a number where a ${o} was expected`);const i=Object.entries(t.values).find(([,e])=>e===r);if(i===void 0)throw new Error(`${r} is not a valid enum value for ${o}`);return i[0]}else{if(Array.isArray(r))return r.map(t=>m(t,o));{const t=x(o);if(t.type==="union"){for(const i in t.options)if(r[i]!==void 0&&r[i]!==null){const e=m(r[i],t.options[i]);if(typeof e=="object")return{kind:i,...e}}}else if(t.type==="struct"){const i={};for(const e in r){const s=t.fields[e];if(s===void 0)throw new Error(`Unknown field ${e} in ${o}`);i[e]=m(r[e],s.type)}return i}else throw new Error(`Cannot unnest unions in an enum type ${o}`)}}}function x(r){const o=a.MALLOY_INTERFACE_TYPES[r];if(o===void 0)throw new Error(`Unknown Malloy interface type ${r}`);return o}function u(r,o){if(r==null)return r;if(typeof r=="number"||typeof r=="boolean")return r;if(typeof r=="string"){if(o==="string")return r;const t=x(o);if(t.type==="enum"){const i=t.values[r];if(i===void 0)throw new Error(`${r} is not a valid enum value for ${o}`);return i}}else{if(Array.isArray(r))return r.map(t=>u(t,o));{const t=x(o);if(t.type==="union"){const i=r.kind,e=t.options[i];if(e===void 0)throw new Error(`${i} is not a valid union of ${o}`);const s=x(e);if(s.type!=="struct")throw new Error("Union fields must be structs");const l={};for(const c in r){if(c==="kind")continue;const p=s.fields[c];l[c]=u(r[c],p.type)}return{[i]:l}}else if(t.type==="struct"){const i={};for(const e in r){const s=t.fields[e];if(s===void 0)throw new Error(`Unknown field ${e} in ${o}`);i[e]=u(r[e],s.type)}return i}}}}return Nr}var ja;function $p(){return ja||(ja=1,function(a){var d=br&&br.__createBinding||(Object.create?function(u,r,o,t){t===void 0&&(t=o);var i=Object.getOwnPropertyDescriptor(r,o);(!i||("get"in i?!r.__esModule:i.writable||i.configurable))&&(i={enumerable:!0,get:function(){return r[o]}}),Object.defineProperty(u,t,i)}:function(u,r,o,t){t===void 0&&(t=o),u[t]=r[o]}),y=br&&br.__exportStar||function(u,r){for(var o in u)o!=="default"&&!Object.prototype.hasOwnProperty.call(r,o)&&d(r,u,o)};Object.defineProperty(a,"__esModule",{value:!0}),a.thingy4sddfdfsd=a.thingy4sdfsd=a.thingy4dfdsfs=a.thingy4asdfas=a.thingy4asdfasdf=a.thingy3dfdf=a.thingy3=a.thingy2asdf=a.thingyssdfg=a.thingy123r=a.thingy1=a.res=a.test=a.convertToThrift=a.convertFromThrift=a.unnestUnions=a.nestUnions=a.filterToMalloy=a.queryToMalloy=void 0,y(P0(),a);var m=qp();Object.defineProperty(a,"queryToMalloy",{enumerable:!0,get:function(){return m.queryToMalloy}}),Object.defineProperty(a,"filterToMalloy",{enumerable:!0,get:function(){return m.filterToMalloy}});var x=jp();Object.defineProperty(a,"nestUnions",{enumerable:!0,get:function(){return x.nestUnions}}),Object.defineProperty(a,"unnestUnions",{enumerable:!0,get:function(){return x.unnestUnions}}),Object.defineProperty(a,"convertFromThrift",{enumerable:!0,get:function(){return x.convertFromThrift}}),Object.defineProperty(a,"convertToThrift",{enumerable:!0,get:function(){return x.convertToThrift}}),a.test={entries:[{kind:"source",name:"flights",schema:{fields:[{kind:"dimension",name:"carrier",type:{kind:"boolean_type"},annotations:[{value:"# foo=1"}]},{kind:"dimension",name:"arr",type:{kind:"array_type",element_type:{kind:"boolean_type"}}},{kind:"dimension",name:"arr_rec",type:{kind:"array_type",element_type:{kind:"record_type",fields:[{name:"arr",type:{kind:"array_type",element_type:{kind:"boolean_type"}}}]}}},{kind:"dimension",name:"rec",type:{kind:"record_type",fields:[{name:"arr",type:{kind:"array_type",element_type:{kind:"boolean_type"}}}]}},{kind:"join",name:"carriers",relationship:"one",schema:{fields:[{kind:"dimension",name:"code",type:{kind:"string_type"}}]}},{kind:"view",name:"by_carrier",schema:{fields:[{kind:"dimension",name:"carrier",type:{kind:"string_type"}},{kind:"dimension",name:"flight_count",type:{kind:"number_type"}}]}}]},parameters:[{name:"param",type:{kind:"number_type"},default_value:{kind:"number_literal",number_value:7}}]}],anonymous_queries:[]},a.res={connection_name:"foo",data:{kind:"array_cell",array_value:[{kind:"record_cell",record_value:[{kind:"string_cell",string_value:"UA"},{kind:"number_cell",number_value:12341234}]},{kind:"record_cell",record_value:[{kind:"string_cell",string_value:"AA"},{kind:"number_cell",number_value:2343}]}]},schema:{fields:[{kind:"dimension",name:"carrier",type:{kind:"string_type"}},{kind:"dimension",name:"flight_count",type:{kind:"number_type"}}]},sql:"SELECT * ..."},a.thingy1={definition:{kind:"query_reference",name:"flights_by_carrier"}},a.thingy123r={definition:{kind:"arrow",source:{kind:"source_reference",name:"flights"},view:{kind:"view_reference",name:"by_carrier"}}},a.thingyssdfg={definition:{kind:"refinement",base:{kind:"query_reference",name:"flights"},refinement:{kind:"view_reference",name:"by_carrier"}}},a.thingy2asdf={definition:{kind:"arrow",source:{kind:"source_reference",name:"flights"},view:{kind:"refinement",base:{kind:"view_reference",name:"by_carrier"},refinement:{kind:"segment",operations:[{kind:"where",filter:{kind:"filter_string",expression:{kind:"field_reference",name:"carrier"},filter:"WN"}}]}}}},a.thingy3={definition:{kind:"arrow",source:{kind:"source_reference",name:"flights"},view:{kind:"refinement",base:{kind:"view_reference",name:"by_carrier"},refinement:{kind:"segment",operations:[{kind:"group_by",field:{expression:{kind:"field_reference",name:"carrier"}}},{kind:"group_by",field:{expression:{kind:"field_reference",name:"foo"}}}]}}}},a.thingy3dfdf={definition:{kind:"arrow",source:{kind:"source_reference",name:"flights"},view:{kind:"refinement",base:{kind:"view_reference",name:"by_carrier"},refinement:{kind:"view_reference",name:"top10"}}}},a.thingy4asdfasdf={definition:{kind:"arrow",source:{kind:"source_reference",name:"flights"},view:{kind:"segment",operations:[{kind:"group_by",field:{expression:{kind:"field_reference",name:"carrier"}}},{kind:"group_by",field:{expression:{kind:"field_reference",name:"foo"}}}]}}},a.thingy4asdfas={definition:{kind:"arrow",source:{kind:"source_reference",name:"flights"},view:{kind:"view_reference",name:"by_carrier"}}},a.thingy4dfdsfs={definition:{kind:"arrow",source:{kind:"source_reference",name:"flights"},view:{kind:"refinement",base:{kind:"view_reference",name:"by_carrier"},refinement:{kind:"segment",operations:[{kind:"limit",limit:10}]}}}},a.thingy4sdfsd={definition:{kind:"arrow",source:{kind:"source_reference",name:"flights"},view:{kind:"segment",operations:[{kind:"group_by",field:{expression:{kind:"field_reference",name:"carrier"}}},{kind:"limit",limit:10}]}}},a.thingy4sddfdfsd={definition:{kind:"arrow",source:{kind:"source_reference",name:"flights"},view:{kind:"segment",operations:[]}}}}(br)),br}var Ye={},Kn={},Cr={},ut={},We={},$a;function ue(){if($a)return We;$a=1;/*!
|
|
3
3
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
4
4
|
* Licensed under the BSD-3-Clause license. See LICENSE file in the project root for license information.
|
|
@@ -158,7 +158,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
|
158
158
|
*/var d=kr&&kr.__decorate||function(l,c,p,v){var h=arguments.length,g=h<3?c:v===null?v=Object.getOwnPropertyDescriptor(c,p):v,_;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")g=Reflect.decorate(l,c,p,v);else for(var A=l.length-1;A>=0;A--)(_=l[A])&&(g=(h<3?_(g):h>3?_(c,p,g):_(c,p))||g);return h>3&&g&&Object.defineProperty(c,p,g),g},y=kr&&kr.__param||function(l,c){return function(p,v){c(p,v,l)}};Object.defineProperty(a,"__esModule",{value:!0}),a.SemanticContext=void 0;const m=yr(),x=eo(),u=Ie(),r=ue(),o=it(),t=ot();function i(l){let c;for(let p of l){if(c===void 0){c=p;continue}c.compareTo(p)<0&&(c=p)}return c}function e(l){let c;for(let p of l){if(c===void 0){c=p;continue}c.compareTo(p)>0&&(c=p)}return c}let s=class He{static get NONE(){return He._NONE===void 0&&(He._NONE=new He.Predicate),He._NONE}evalPrecedence(c,p){return this}static and(c,p){if(!c||c===He.NONE)return p;if(p===He.NONE)return c;let v=new He.AND(c,p);return v.opnds.length===1?v.opnds[0]:v}static or(c,p){if(!c)return p;if(c===He.NONE||p===He.NONE)return He.NONE;let v=new He.OR(c,p);return v.opnds.length===1?v.opnds[0]:v}};a.SemanticContext=s,function(l){function v(D){let N=[];for(let w=0;w<D.length;w++){let P=D[w];P instanceof l.PrecedencePredicate&&(N.push(P),D.splice(w,1),w--)}return N}class h extends l{constructor(N=-1,w=-1,P=!1){super(),this.ruleIndex=N,this.predIndex=w,this.isCtxDependent=P}eval(N,w){let P=this.isCtxDependent?w:void 0;return N.sempred(P,this.ruleIndex,this.predIndex)}hashCode(){let N=u.MurmurHash.initialize();return N=u.MurmurHash.update(N,this.ruleIndex),N=u.MurmurHash.update(N,this.predIndex),N=u.MurmurHash.update(N,this.isCtxDependent?1:0),N=u.MurmurHash.finish(N,3),N}equals(N){return N instanceof h?this===N?!0:this.ruleIndex===N.ruleIndex&&this.predIndex===N.predIndex&&this.isCtxDependent===N.isCtxDependent:!1}toString(){return"{"+this.ruleIndex+":"+this.predIndex+"}?"}}d([r.Override],h.prototype,"eval",null),d([r.Override],h.prototype,"hashCode",null),d([r.Override],h.prototype,"equals",null),d([r.Override],h.prototype,"toString",null),l.Predicate=h;class g extends l{constructor(N){super(),this.precedence=N}eval(N,w){return N.precpred(w,this.precedence)}evalPrecedence(N,w){if(N.precpred(w,this.precedence))return l.NONE}compareTo(N){return this.precedence-N.precedence}hashCode(){let N=1;return N=31*N+this.precedence,N}equals(N){return N instanceof g?this===N?!0:this.precedence===N.precedence:!1}toString(){return"{"+this.precedence+">=prec}?"}}d([r.Override],g.prototype,"eval",null),d([r.Override],g.prototype,"evalPrecedence",null),d([r.Override],g.prototype,"compareTo",null),d([r.Override],g.prototype,"hashCode",null),d([r.Override],g.prototype,"equals",null),d([r.Override],g.prototype,"toString",null),l.PrecedencePredicate=g;class _ extends l{}l.Operator=_;let A=class zi extends _{constructor(N,w){super();let P=new m.Array2DHashSet(o.ObjectEqualityComparator.INSTANCE);N instanceof zi?P.addAll(N.opnds):P.add(N),w instanceof zi?P.addAll(w.opnds):P.add(w),this.opnds=P.toArray();let $=v(this.opnds),Y=e($);Y&&this.opnds.push(Y)}get operands(){return this.opnds}equals(N){return this===N?!0:N instanceof zi?x.ArrayEqualityComparator.INSTANCE.equals(this.opnds,N.opnds):!1}hashCode(){return u.MurmurHash.hashCode(this.opnds,40363613)}eval(N,w){for(let P of this.opnds)if(!P.eval(N,w))return!1;return!0}evalPrecedence(N,w){let P=!1,$=[];for(let B of this.opnds){let q=B.evalPrecedence(N,w);if(P=P||q!==B,q==null)return;q!==l.NONE&&$.push(q)}if(!P)return this;if($.length===0)return l.NONE;let Y=$[0];for(let B=1;B<$.length;B++)Y=l.and(Y,$[B]);return Y}toString(){return t.join(this.opnds,"&&")}};d([r.Override],A.prototype,"operands",null),d([r.Override],A.prototype,"equals",null),d([r.Override],A.prototype,"hashCode",null),d([r.Override],A.prototype,"eval",null),d([r.Override],A.prototype,"evalPrecedence",null),d([r.Override],A.prototype,"toString",null),A=d([y(0,r.NotNull),y(1,r.NotNull)],A),l.AND=A;let E=class Hi extends _{constructor(N,w){super();let P=new m.Array2DHashSet(o.ObjectEqualityComparator.INSTANCE);N instanceof Hi?P.addAll(N.opnds):P.add(N),w instanceof Hi?P.addAll(w.opnds):P.add(w),this.opnds=P.toArray();let $=v(this.opnds),Y=i($);Y&&this.opnds.push(Y)}get operands(){return this.opnds}equals(N){return this===N?!0:N instanceof Hi?x.ArrayEqualityComparator.INSTANCE.equals(this.opnds,N.opnds):!1}hashCode(){return u.MurmurHash.hashCode(this.opnds,486279973)}eval(N,w){for(let P of this.opnds)if(P.eval(N,w))return!0;return!1}evalPrecedence(N,w){let P=!1,$=[];for(let B of this.opnds){let q=B.evalPrecedence(N,w);if(P=P||q!==B,q===l.NONE)return l.NONE;q&&$.push(q)}if(!P)return this;if($.length===0)return;let Y=$[0];for(let B=1;B<$.length;B++)Y=l.or(Y,$[B]);return Y}toString(){return t.join(this.opnds,"||")}};d([r.Override],E.prototype,"operands",null),d([r.Override],E.prototype,"equals",null),d([r.Override],E.prototype,"hashCode",null),d([r.Override],E.prototype,"eval",null),d([r.Override],E.prototype,"evalPrecedence",null),d([r.Override],E.prototype,"toString",null),E=d([y(0,r.NotNull),y(1,r.NotNull)],E),l.OR=E}(s=a.SemanticContext||(a.SemanticContext={}))}(kr)),kr}var Ll;function to(){if(Ll)return pt;Ll=1;/*!
|
|
159
159
|
* Copyright 2016 The ANTLR Project. All rights reserved.
|
|
160
160
|
* Licensed under the BSD-3-Clause license. See LICENSE file in the project root for license information.
|
|
161
|
-
*/var a=pt&&pt.__decorate||function(v,h,g,_){var A=arguments.length,E=A<3?h:_===null?_=Object.getOwnPropertyDescriptor(h,g):_,D;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")E=Reflect.decorate(v,h,g,_);else for(var N=v.length-1;N>=0;N--)(D=v[N])&&(E=(A<3?D(E):A>3?D(h,g,E):D(h,g))||E);return A>3&&E&&Object.defineProperty(h,g,E),E},d=pt&&pt.__param||function(v,h){return function(g,_){h(g,_,v)}};Object.defineProperty(pt,"__esModule",{value:!0}),pt.ATNConfig=void 0;const y=Vn(),m=In(),x=Ie(),u=ue(),r=it(),o=rt(),t=zn(),i=qe(),e=2147483648;let s=class Ei{constructor(h,g,_){typeof g=="number"?(i((g&16777215)===g),this._state=h,this.altAndOuterContextDepth=g,this._context=_):(this._state=h,this.altAndOuterContextDepth=g.altAndOuterContextDepth,this._context=_)}static create(h,g,_,A=t.SemanticContext.NONE,E){return A!==t.SemanticContext.NONE?E!=null?new p(E,A,h,g,_,!1):new l(A,h,g,_):E!=null?new c(E,h,g,_,!1):new Ei(h,g,_)}get state(){return this._state}get alt(){return this.altAndOuterContextDepth&16777215}get context(){return this._context}set context(h){this._context=h}get reachesIntoOuterContext(){return this.outerContextDepth!==0}get outerContextDepth(){return this.altAndOuterContextDepth>>>24&127}set outerContextDepth(h){i(h>=0),h=Math.min(h,127),this.altAndOuterContextDepth=h<<24|(this.altAndOuterContextDepth&-2130706433)>>>0}get lexerActionExecutor(){}get semanticContext(){return t.SemanticContext.NONE}get hasPassedThroughNonGreedyDecision(){return!1}clone(){return this.transform(this.state,!1)}transform(h,g,_){return _==null?this.transformImpl(h,this._context,this.semanticContext,g,this.lexerActionExecutor):_ instanceof o.PredictionContext?this.transformImpl(h,_,this.semanticContext,g,this.lexerActionExecutor):_ instanceof t.SemanticContext?this.transformImpl(h,this._context,_,g,this.lexerActionExecutor):this.transformImpl(h,this._context,this.semanticContext,g,_)}transformImpl(h,g,_,A,E){let D=A&&Ei.checkNonGreedyDecision(this,h);return _!==t.SemanticContext.NONE?E!=null||D?new p(E,_,h,this,g,D):new l(_,h,this,g):E!=null||D?new c(E,h,this,g,D):new Ei(h,this,g)}static checkNonGreedyDecision(h,g){return h.hasPassedThroughNonGreedyDecision||g instanceof m.DecisionState&&g.nonGreedy}appendContext(h,g){if(typeof h=="number"){let _=this.context.appendSingleContext(h,g);return this.transform(this.state,!1,_)}else{let _=this.context.appendContext(h,g);return this.transform(this.state,!1,_)}}contains(h){if(this.state.stateNumber!==h.state.stateNumber||this.alt!==h.alt||!this.semanticContext.equals(h.semanticContext))return!1;let g=[],_=[];for(g.push(this.context),_.push(h.context);;){let A=g.pop(),E=_.pop();if(!A||!E)break;if(A===E)return!0;if(A.size<E.size)return!1;if(E.isEmpty)return A.hasEmpty;for(let D=0;D<E.size;D++){let N=A.findReturnState(E.getReturnState(D));if(N<0)return!1;g.push(A.getParent(N)),_.push(E.getParent(D))}}return!1}get isPrecedenceFilterSuppressed(){return(this.altAndOuterContextDepth&e)!==0}set isPrecedenceFilterSuppressed(h){h?this.altAndOuterContextDepth|=e:this.altAndOuterContextDepth
|
|
161
|
+
*/var a=pt&&pt.__decorate||function(v,h,g,_){var A=arguments.length,E=A<3?h:_===null?_=Object.getOwnPropertyDescriptor(h,g):_,D;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")E=Reflect.decorate(v,h,g,_);else for(var N=v.length-1;N>=0;N--)(D=v[N])&&(E=(A<3?D(E):A>3?D(h,g,E):D(h,g))||E);return A>3&&E&&Object.defineProperty(h,g,E),E},d=pt&&pt.__param||function(v,h){return function(g,_){h(g,_,v)}};Object.defineProperty(pt,"__esModule",{value:!0}),pt.ATNConfig=void 0;const y=Vn(),m=In(),x=Ie(),u=ue(),r=it(),o=rt(),t=zn(),i=qe(),e=2147483648;let s=class Ei{constructor(h,g,_){typeof g=="number"?(i((g&16777215)===g),this._state=h,this.altAndOuterContextDepth=g,this._context=_):(this._state=h,this.altAndOuterContextDepth=g.altAndOuterContextDepth,this._context=_)}static create(h,g,_,A=t.SemanticContext.NONE,E){return A!==t.SemanticContext.NONE?E!=null?new p(E,A,h,g,_,!1):new l(A,h,g,_):E!=null?new c(E,h,g,_,!1):new Ei(h,g,_)}get state(){return this._state}get alt(){return this.altAndOuterContextDepth&16777215}get context(){return this._context}set context(h){this._context=h}get reachesIntoOuterContext(){return this.outerContextDepth!==0}get outerContextDepth(){return this.altAndOuterContextDepth>>>24&127}set outerContextDepth(h){i(h>=0),h=Math.min(h,127),this.altAndOuterContextDepth=h<<24|(this.altAndOuterContextDepth&-2130706433)>>>0}get lexerActionExecutor(){}get semanticContext(){return t.SemanticContext.NONE}get hasPassedThroughNonGreedyDecision(){return!1}clone(){return this.transform(this.state,!1)}transform(h,g,_){return _==null?this.transformImpl(h,this._context,this.semanticContext,g,this.lexerActionExecutor):_ instanceof o.PredictionContext?this.transformImpl(h,_,this.semanticContext,g,this.lexerActionExecutor):_ instanceof t.SemanticContext?this.transformImpl(h,this._context,_,g,this.lexerActionExecutor):this.transformImpl(h,this._context,this.semanticContext,g,_)}transformImpl(h,g,_,A,E){let D=A&&Ei.checkNonGreedyDecision(this,h);return _!==t.SemanticContext.NONE?E!=null||D?new p(E,_,h,this,g,D):new l(_,h,this,g):E!=null||D?new c(E,h,this,g,D):new Ei(h,this,g)}static checkNonGreedyDecision(h,g){return h.hasPassedThroughNonGreedyDecision||g instanceof m.DecisionState&&g.nonGreedy}appendContext(h,g){if(typeof h=="number"){let _=this.context.appendSingleContext(h,g);return this.transform(this.state,!1,_)}else{let _=this.context.appendContext(h,g);return this.transform(this.state,!1,_)}}contains(h){if(this.state.stateNumber!==h.state.stateNumber||this.alt!==h.alt||!this.semanticContext.equals(h.semanticContext))return!1;let g=[],_=[];for(g.push(this.context),_.push(h.context);;){let A=g.pop(),E=_.pop();if(!A||!E)break;if(A===E)return!0;if(A.size<E.size)return!1;if(E.isEmpty)return A.hasEmpty;for(let D=0;D<E.size;D++){let N=A.findReturnState(E.getReturnState(D));if(N<0)return!1;g.push(A.getParent(N)),_.push(E.getParent(D))}}return!1}get isPrecedenceFilterSuppressed(){return(this.altAndOuterContextDepth&e)!==0}set isPrecedenceFilterSuppressed(h){h?this.altAndOuterContextDepth|=e:this.altAndOuterContextDepth&=~e}equals(h){return this===h?!0:h instanceof Ei?this.state.stateNumber===h.state.stateNumber&&this.alt===h.alt&&this.reachesIntoOuterContext===h.reachesIntoOuterContext&&this.context.equals(h.context)&&this.semanticContext.equals(h.semanticContext)&&this.isPrecedenceFilterSuppressed===h.isPrecedenceFilterSuppressed&&this.hasPassedThroughNonGreedyDecision===h.hasPassedThroughNonGreedyDecision&&r.ObjectEqualityComparator.INSTANCE.equals(this.lexerActionExecutor,h.lexerActionExecutor):!1}hashCode(){let h=x.MurmurHash.initialize(7);return h=x.MurmurHash.update(h,this.state.stateNumber),h=x.MurmurHash.update(h,this.alt),h=x.MurmurHash.update(h,this.reachesIntoOuterContext?1:0),h=x.MurmurHash.update(h,this.context),h=x.MurmurHash.update(h,this.semanticContext),h=x.MurmurHash.update(h,this.hasPassedThroughNonGreedyDecision?1:0),h=x.MurmurHash.update(h,this.lexerActionExecutor),h=x.MurmurHash.finish(h,7),h}toDotString(){let h="";h+=`digraph G {
|
|
162
162
|
`,h+=`rankdir=LR;
|
|
163
163
|
`;let g=new y.Array2DHashMap(o.PredictionContext.IdentityEqualityComparator.INSTANCE),_=[];function A(E){let D=g.size,N=g.putIfAbsent(E,D);return N??(_.push(E),D)}for(_.push(this.context),g.put(this.context,0);;){let E=_.pop();if(!E)break;for(let D=0;D<E.size;D++)h+=" s"+A(E),h+="->",h+="s"+A(E.getParent(D)),h+='[label="'+E.getReturnState(D)+`"];
|
|
164
164
|
`}return h+=`}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@layer priority1,priority2,priority3,priority4,priority5,priority6;@layer priority1{:root,.mly16bcggl{--mly1rtpqm4:rgba(10, 19, 23, .2);--mlywmj25p:rgba(121, 82, 255, .2);--mly1f95ebd:rgba(36, 187, 94, .2);--mly1jva6ta:rgba(3, 167, 215, .2);--mly1yr7ch6:rgba(241, 244, 247, 1);--mly1bs2mf7:rgba(0, 130, 251, .2);--mlywj8cgu:rgba(11, 153, 31, .2);--mlyhsum04:rgba(226, 164, 0, .2);--mly19gk0g3:rgba(227, 25, 59, .2);--mlyrbis2b:rgba(204, 211, 219, 1);--mly1eayp21:rgba(230, 235, 239, 1);--mly1bn1nfc:rgba(37, 54, 63, 1)}:root,.mly182du4u{--mly231nev:rgba(10, 19, 23, 1);--mly1i3blw4:rgba(78, 96, 111, 1);--mly16ir2n5:rgba(164, 176, 188, 1);--mly883cce:rgba(0, 100, 224, 1);--mlyy3jzoq:rgba(255, 255, 255, 1);--mly7qnfvx:rgba(10, 19, 23, 1);--mly3ib3qi:rgba(62, 6, 151, 1);--mlyndhcph:rgba(9, 68, 31, 1);--mlykotp7t:rgba(1, 73, 117, 1);--mlyf25c1a:rgba(66, 133, 244, 1)}:root,.mlyacbved{--mly8s4nhd:rgba(10, 19, 23, 1);--mly130oqjo:rgba(78, 96, 111, 1);--mlywh4rgx:rgba(164, 176, 188, 1);--mly1gq6bli:rgba(255, 255, 255, 1);--mly1jphivy:rgba(164, 176, 188, 1);--mly6i1qgk:rgba(121, 82, 255, 1);--mly1css67u:rgba(7, 109, 41, 1);--mly1fea1fg:rgba(2, 141, 193, 1);--mlyz9tc12:rgba(233, 175, 8, 1);--mly1dryxz7:rgba(0, 100, 224, 1);--mly176ansx:rgba(13, 134, 38, 1);--mlybq1dnb:rgba(227, 25, 59, 1)}:root,.mlyugude9{--mlyiz2tia:#0064E0;--mly1nffz32:#0082FB32;--mly1mq821i:white;--mlyz6dflh:rgba(0, 0, 0, .1);--mly4a29vv:#0000000D;--mlyhoywqa:#050505;--mly1qcfjts:#A4B0BC}:root,.mly18uf1kx{--mlynfhokh:none}:root,.mly11fl7i8{--mlyvpnzvp:none}.mly10cf5cp{--mly10mhzaa:var(--mly1f95ebd)}.mlykvi9ht{--mly10mhzaa:var(--mly1jva6ta)}.mly1rve117{--mly10mhzaa:var(--mly1rtpqm4)}.mlyihc5ie{--mly10mhzaa:var(--mlywmj25p)}.mly8bgh0r{--mly13n7235:var(--mly231nev)}.mly1r5zvhd{--mly13n7235:var(--mly3ib3qi)}.mlys5r2en{--mly13n7235:var(--mlykotp7t)}.mly1u6t2w6{--mly13n7235:var(--mlyndhcph)}.mlynu5hmx{--mly1by112x:0}.mly15rdse5{--mly1hmjrsb:var(--mly8s4nhd)}.mly5xbp4t{--mly1hpdckv:var(--mly231nev)}.mly3mt86g{--mly1hpdckv:var(--mlyy3jzoq)}.mly5deeek{--mly1ltarg1:var(--mly231nev)}.mlybcavtu{--mly1ojyoay:var(--mly231nev)}.mlywis56f{--mly1ojyoay:var(--mly3ib3qi)}.mly1eg6ybj{--mly1ojyoay:var(--mlykotp7t)}.mlyy280wj{--mly1ojyoay:var(--mlyndhcph)}.mly7ouyw2{--mly5m5edj:var(--mly1i3blw4)}.mlym9y5t7{--mlynfhokh:block}.mly28fmrt{--mlynfhokh:none}.mly1bo1i26{--mlyri8z08:0}.mly1ae5hkt{--mlyvpnzvp:block}.mly11ogjb6{--mlyvpnzvp:none}.mlyf8wvcd{--mlyvygx4q:var(--mly1css67u)}.mlyrtwgpv{--mlyvygx4q:var(--mly1fea1fg)}.mly1f8soc4{--mlyvygx4q:var(--mly6i1qgk)}.mly1izbou4{--mlyvygx4q:var(--mly8s4nhd)}.mly1n5rdk7{--mlyxo3nik:var(--mly1gq6bli)}.mlypfd894{--mlyxo3nik:var(--mly8s4nhd)}@keyframes mlyqng64z-B{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.mly1z060rf:is([data-disabled]){--mly1hmjrsb:var(--mlywh4rgx)}.mly1jacekv:is([data-disabled]){--mly1ltarg1:var(--mly16ir2n5)}.mly7h4d18:is([data-disabled]){--mly5m5edj:var(--mly16ir2n5)}.mly1iu3zmn:disabled{--mly1hpdckv:var(--mly1i3blw4)}.mly13vk70h:disabled{--mly1hpdckv:var(--mlyy3jzoq)}.mly1dsjhx:disabled{--mlyxo3nik:var(--mly1gq6bli)}.mlyiv1q3g:disabled{--mlyxo3nik:var(--mlywh4rgx)}.mly1u5txqc:hover{--mly1by112x:.3}.mly1x0xcia:hover{--mlynfhokh:block}.mly1fzkygm:hover{--mlyri8z08:.3}.mly1g9of4s:hover{--mlyvpnzvp:block}.mly157rht3:hover{--mlyvpnzvp:inline-flex}}@layer priority2{.mly1o4sr5b{background:#0a1317}.mly3j5mvw{background:#d0d3d7}.mlyo6guvx,.mly17eh757{background:#fff}.mly5uxqc1{background:#0000}.mlyhcrij8{background:#0064e0}.mly1xnbgy5{background:#ccd3db}.mlygqa5hp{background:#e6ebef}.mlyzy8d55{background:#ffffff80}.mlyotlr4g{background:#fff}.mly1md70p1{background:transparent}.mlysu8s4a{background:var(--mly10mhzaa)}.mly1np9qvj{background:var(--mly1eayp21)}.mly1b4wx6v{background:var(--mly1mq821i)}.mly16o7sp0{background:var(--mly1nffz32)}.mlyzkdzjc{border:1px solid #CCD3DB}.mly2yh2zd{border:1px solid #e0e0e0}.mly8fuzfi{border:1px solid #efefef}.mly1dc9p4k{border:1px solid red}.mly27xtdb{border:1px solid rgb(239,239,239)}.mly520xni{border:1px solid rgba(204,211,219,1)}.mlyvckdp7{border:1px solid rgba(230,235,239,1)}.mlyfj9a5l{border:1px solid transparent}.mly1vspu6z{border:1px solid var(--malloy-composer-form-background,#efefef)}.mlyss3vti{border:1px solid var(--malloy-composer-form-border,#ececed)}.mlyv3vvaf{border:1px solid var(--malloy-composer-form-focus,#4285f4)}.mly15q0wj1{border:1px solid var(--malloy-composer-menu-border,#ececed)}.mly1gs6z28{border:none}.mly15r89dc{grid-area:1 / 1}.mly1ghz6dp{margin:0}.mlynfbntj{margin:5px 0}.mly16zck5j{margin:5px}.mlykib98w{margin:8px}.mly1bpp3o7{margin:auto}.mlywp4ipm{padding:0 24px 24px}.mlyehqz9p{padding:0 4px}.mly1l4tkcb{padding:0 8px 8px}.mly1717udv{padding:0}.mly1b4vry6{padding:10px 0}.mlyc7ga6q{padding:12px}.mly1tamke2{padding:16px}.mly1e41zw8{padding:1px 5px}.mlyfvt8nb{padding:2px 12px 2px 6px}.mlybsehbd{padding:2px 3px}.mlyxzb6uj{padding:2px 4px}.mly195ery5{padding:3.75px 7px}.mly1gqu590{padding:3px 10px}.mly34lxi1{padding:3px 3px 3px 10px}.mly92jh8x{padding:4px 0 8px}.mlyztvwtv{padding:4px 0}.mly1fut7tt{padding:4px 12px 12px}.mlytdwleo{padding:4px 12px}.mly9cpjcd,.mlydqdrvq{padding:4px 8px}.mlyfawy5m{padding:4px}.mly17qkr04{padding:5px 0}.mly36usyh{padding:5px 10px}.mly14odnwx{padding:5px}.mly153ncpu{padding:8px 12px}.mlye8ttls{padding:8px}.mly1bw6wve:is([data-highlighted]){background:#0000000d}.mlyamyxth:is([data-state=checked]){background:#0082fb33}.mlyejs3c0:is([data-highlighted]):is([data-state=checked]){background:#0082fb4d}.mly14hn1a8:hover{background:#0000000d}.mly1uceoyp:hover{background:#dde2e8}.mly1vdl2d1:hover{background:#0457cb}.mlywghvya:active{background:#0000001a}.mly1u4cpcs:active{background:#004cbc}.mly1cncicd:active{background:#ccd3db}}@layer priority3{.mlyllpv0l{border-bottom:1px solid #e0e0e0}.mlyv3yj8d{border-bottom:1px solid var(--malloy-color-border,#e0e0e0)}.mly1akygb0{border-color:none}.mly1y5yj0f{border-color:#0064e0}.mly10bk7bj{border-color:var(--malloy-composer-focus,#c3d7f7)}.mly17v018m{border-color:var(--mlyrbis2b)}.mly11zuszs{border-radius:0 0 10px 10px}.mly19ctu66{border-radius:0 4px 4px 0}.mlyq516e8{border-radius:10px 10px 0 0}.mly1q4ynmn{border-radius:10px}.mly4pepcl{border-radius:12px}.mly18zih8k{border-radius:3px}.mlytah5vv{border-radius:4px 0 0 4px}.mly12oqio5{border-radius:4px}.mly1f96onm{border-radius:50px}.mly1sxf85j{border-radius:5px}.mly1kogg8i{border-radius:6px}.mlyur7f20{border-radius:8px}.mly10hpsqq{border-radius:9999px}.mly1pjcqnp{border-radius:inherit}.mlyfuqftd{border-right:1px solid #C8CCD2}.mly1roky18{border-right:1px solid rgba(204,211,219,1)}.mlyng3xce{border-style:none}.mly1y0btm7{border-style:solid}.mlye536se{border-top:1px solid #e0e0e0}.mly77krkw{border-top:1px solid var(--malloy-composer-form-border,#ececec)}.mlyc342km{border-width:0}.mlymkeg23{border-width:1px}.mly3psx0u{flex:0 0 auto}.mly98rzlu{flex:1}.mly883omv{gap:10px}.mlyou54vl{gap:16px}.mly12mrbbr{gap:1px}.mly1665zp3{gap:24px}.mly195vfkc{gap:2px}.mly1ed6fcf{gap:3px}.mly1jnr06f{gap:4px}.mly1nejdyq{gap:5px}.mly167g77z{gap:8px}.mly623te4{grid-column:span 2}.mly1a80n4u{grid-column:span 3}.mly1a2a7pz{outline:none}.mlyysyzu8{overflow:auto}.mlyb3r6kr{overflow:hidden}.mly1rea2x4{overflow:visible}.mly1ku5rj1{place-items:center}.mly1hl2dhg{text-decoration:none}.mly14znju7{transition:opacity .5s ease}.mly1fxp9ov:hover{border-color:var(--malloy-composer-focus,#c3d7f7)}.mlyetl2wx:focus{border-color:#4285f4}}@layer priority4{.mly1ua5tub{-webkit-box-orient:vertical}.mly1gzmk7r{-webkit-line-clamp:3}.mly6s0dn4{align-items:center}.mlypqajaz{align-items:end}.mly1cy8zhl{align-items:flex-start}.mly7a106z{align-items:start}.mly1071x5a{align-items:top}.mly7v9bd0{animation-duration:.75s}.mlya4qsjk{animation-iteration-count:infinite}.mly8jsasv{animation-name:mlyqng64z-B}.mly1esw782{animation-timing-function:linear}.mlylp1x4z{backface-visibility:hidden}.mlygmb8sa{background-color:#e6ebef}.mly83z2og{background-color:#fff}.mly1vzefiq{background-color:#f0f6ff}.mlyy9rfsq{background-color:#e6ebef}.mly10cdfl8{background-color:#f1f4f7}.mly1gzqxud{background-color:#fff}.mly1jmk7v{background-color:#25363f}.mlyjbqb8w{background-color:transparent}.mly9nb4jr{background-color:var(--malloy-color-background,white)}.mly1jjku57{background-color:var(--malloy-composer-form-disabledBackground,#f6f6f6)}.mly6wxqrg{background-color:var(--malloy-composer-form-focusBackground,#f0f6ff)}.mly12azwz9{background-color:var(--malloy-composer-menu-background,white)}.mlyrkwa2d{background-color:var(--mly19gk0g3)}.mly1pnbjq1{background-color:var(--mly1bs2mf7)}.mly12nb83b{background-color:var(--mly1yr7ch6)}.mly1x7w6om{background-color:var(--mlyhsum04)}.mly1x3oq6j{background-color:var(--mlywj8cgu)}.mly12peec7{background-color:#fff}.mly1mwwwfo{border-collapse:collapse}.mlygbc89k{box-shadow:0 0 0 1px #ccd3db}html:not([dir=rtl]) .mlyn8fsvk{box-shadow:0 0 0 1px #0064e0 inset,0 0 0 3px #0171e34d inset}html[dir=rtl] .mlyn8fsvk{box-shadow:0 0 0 1px #0064e0 inset,0 0 0 3px #0171e34d inset}.mlybwr872{box-shadow:0 0 0 2px #0064e0}html:not([dir=rtl]) .mly1kmqopl{box-shadow:0 0 5px #0000001a,0 0 1px #0000001a}html[dir=rtl] .mly1kmqopl{box-shadow:0 0 5px #0000001a,0 0 1px #0000001a}html:not([dir=rtl]) .mly5n1uv4{box-shadow:0 1px 2px #0000001a,0 2px 12px #0000001a}html[dir=rtl] .mly5n1uv4{box-shadow:0 1px 2px #0000001a,0 2px 12px #0000001a}.mly1a3rnpv{box-shadow:0 1px 5px 1px #0000001a}html:not([dir=rtl]) .mly17fq3gk{box-shadow:0 2px 12px #0000001a,0 1px 2px #0000001a}html[dir=rtl] .mly17fq3gk{box-shadow:0 2px 12px #0000001a,0 1px 2px #0000001a}.mlyx2l43u{box-shadow:0 2px 12px 0 var(--mlyz6dflh)}.mly1gnnqk1{box-shadow:none}.mlyg48p7p{box-shadow:#0171e34d 0 0 0 3px inset}.mly9f619{box-sizing:border-box}.mlyayvuls{color:#000}.mly1aejobo{color:#0064e0}.mly1v5ugh9{color:#505050}.mly358b0h{color:#909090}.mly1e2nbdu{color:red}.mly198oq2i{color:#3e9efb!important}.mlyizdh9v{color:#5f6368}.mlykfrnou{color:#0064e0}.mlyj5j7qc{color:#647685}.mly1rs82da{color:#dde2e8}.mly183j0n7{color:#e4e6eb}.mly1dhlylr{color:#050505}.mly19co3pv{color:transparent}.mly1pc1dlx{color:var(--malloy-composer-form-foreground,#5f6368)}.mly1r0d382{color:var(--mly130oqjo)}.mly1xre2ib{color:var(--mly13n7235)}.mlywzxoxx{color:var(--mly16ir2n5)}.mly1l99qkd{color:var(--mly176ansx)}.mly1evcnq1{color:var(--mly1css67u)}.mly1tw9ct1{color:var(--mly1dryxz7)}.mly1h091fy{color:var(--mly1fea1fg)}.mly1kiansi{color:var(--mly1gq6bli)}.mly1mguc6l{color:var(--mly1hmjrsb)}.mlyaerthn{color:var(--mly1hpdckv)}.mly9dwj6z{color:var(--mly1i3blw4)}.mlyann5r3{color:var(--mly1jphivy)}.mly12lmysb{color:var(--mly1ltarg1)}.mly1ard1hs{color:var(--mly1ojyoay)}.mly1jwwhvr{color:var(--mly1qcfjts)}.mly1ue28sr{color:var(--mly231nev)}.mlyydnxy5{color:var(--mly3ib3qi)}.mly15jt5ur{color:var(--mly5m5edj)}.mly1ywypuw{color:var(--mly6i1qgk)}.mly1p68tcb{color:var(--mly8s4nhd)}.mly109d434{color:var(--mlybq1dnb)}.mly1nwq7qm{color:var(--mlyf25c1a)}.mly1q8pm5h{color:var(--mlyhoywqa)}.mlywn9h7t{color:var(--mlyvygx4q)}.mly16un6j3{color:var(--mlywh4rgx)}.mlyuk6yi3{color:var(--mlyxo3nik)}.mly7neac5{color:var(--mlyz9tc12)}.mlyt0e3qv{cursor:default}.mly7eptgl{cursor:ew-resize}.mly1ipiool{cursor:initial}.mly1ypdohk{cursor:pointer}.mly104kibb{display:-webkit-box}.mly1lliihq{display:block}.mly78zum5{display:flex}.mlyrvj5dj{display:grid}.mly1rg5ohu{display:inline-block}.mly3nfvp2{display:inline-flex}.mlywz0xwf{display:inline-grid}.mly1s85apg{display:none}.mly1vsucm1{display:var(--mlynfhokh)}.mly2b4tyj{display:var(--mlyvpnzvp)}.mlydt5ytf{flex-direction:column}.mly1q0g3np{flex-direction:row}.mly1iyjqo2{flex-grow:1}.mly2lah0s{flex-shrink:0}.mly1a02dak{flex-wrap:wrap}.mly6icuqf{font-family:sans-serif}.mly1rj5sg5{font-family:SF Pro Text,-apple-system,system-ui,sans-serif}.mly12xrqmb{font-family:var(--malloy-composer-fontFamily,sans-serif)}.mlyfifm61{font-size:12px}.mlyif65rj{font-size:14px}.mly1j61zf2{font-size:16px}.mlymhiqyu{font-size:var(--malloy-composer-fontSize,14px)}.mly64z8l9{font-size:var(--malloy-composer-menu-fontSize,14px)}.mly1j61x8r{font-style:normal}.mlyo1l8bm{font-weight:400}.mly1s688f{font-weight:600}.mly1xlr1w8,.mly117nqv4{font-weight:700}.mly1fcty0u{font-weight:400}.mly1mt1orb{grid-auto-flow:column}.mlysd5ean{grid-auto-rows:max-content}.mly15396mt{grid-template-columns:100px auto 100px}.mly52fmzj{grid-template-columns:1fr auto}.mly1g3yg12{grid-template-columns:auto 1fr auto}.mlybyjr8{grid-template-columns:auto}.mly16kridx{grid-template-columns:min-content 1fr min-content}.mlyl56j7k{justify-content:center}.mly13a6bvl{justify-content:flex-end}.mly1nhvcw1{justify-content:flex-start}.mly1rfj78v{justify-content:left}.mly1lvf691{justify-content:right}.mly1l1ennw{justify-content:space-around}.mly1qughib{justify-content:space-between}.mlylqzeqv{justify-content:start}.mly11e9jwx{leading-trim:both}.mly1gu5id8{letter-spacing:-.24px}.mly12oo3zp{letter-spacing:0}.mly1d3mw78{line-height:16px}.mly1rl49lg{line-height:2.2em}.mly1fc57z9{line-height:20px}.mly1o2sk6j{line-height:24px}.mly1vqud6w{opacity:70%}.mly1d3ksz1{opacity:var(--mly1by112x)}.mly15sj6ns{opacity:var(--mlyri8z08)}.mly47corl{pointer-events:none}.mly10l6tqk{position:absolute}.mlyixxii4{position:fixed}.mly1n2onr6{position:relative}.mly7wzq59{position:sticky}.mly2b8uid{text-align:center}.mlydpxx8g{text-align:left}.mly1vqy1sf{text-edge:cap}.mlylyipyv{text-overflow:ellipsis}.mly6mezaz{text-transform:none}.mly87ps6o{user-select:none}.mlyxymvpz{vertical-align:middle}.mly1n8ftqi{vertical-align:text-top}.mly16dsc37{vertical-align:top}.mlylshs6z{visibility:hidden}.mlynpuxes{visibility:visible}.mlyuxw1ft{white-space:nowrap}.mly126k92a{white-space:pre-wrap}.mly1so62im{will-change:transform}.mly1vvkbs{word-wrap:break-word}.mly35i7{writing-mode:sideways-lr}.mly1ja2u2z{z-index:0}.mly1vjfegm{z-index:1}.mly11uqc5h{z-index:100}.mlyhtitgo{z-index:2}.mly14vaotu:is([data-state=active]){background-color:var(--mly1bs2mf7)}.mlyqweix6:is([data-disabled]){color:var(--mly1qcfjts)}.mlyb0tsu4:is([data-state=active]){color:var(--mly883cce)}.mly5ezrf1:is([data-disabled]){cursor:not-allowed}.mly1uifvsu:is([data-state=active]){font-weight:700}.mly1s07b3s:disabled{cursor:not-allowed}.mly1haqvef:hover{background-color:#dde2e8}.mlyjg9ulk:hover{background-color:#efefef}.mlyt89l8w:hover{background-color:var(--malloy-composer-form-focusBackground,#f0f6ff)}.mlyk1j4u7:hover{background-color:var(--mly4a29vv)}.mlyk1e6ed:hover{box-shadow:#ccd3db4d 0 0 0 3px inset}.mlytw1abo:focus{background-color:#fff}}@layer priority5{.mly1ey2m1c{bottom:0}.mlyqtp20y{height:0}.mly5yr21d{height:100%}.mlypyat2d{height:100px}.mlyn866dk{height:136px}.mly1v9usgg{height:14px}.mlywrnneb{height:16.5px}.mlylup9mm{height:16px}.mlymix8c7{height:18px}.mlyjm9jq1{height:1px}.mly1m3v4wt{height:200px}.mlyk2yuxw{height:209.5px}.mly1qx5ct2{height:20px}.mlyxk0z11{height:24px}.mlyd7y6wv{height:26px}.mly1fgtraw{height:28px}.mlyc9qbxq{height:36px}.mlyng8ra{height:60px}.mlydk7pt{height:8px}.mlylo07zb{height:90px}.mlyt7dq6l{height:auto}.mly1ktj5wk{height:calc(100% - 8px)}.mlyu96u03{left:0}.mly12nagc{margin-bottom:4px}.mlyu06os2{margin-bottom:5px}.mly1e56ztr{margin-bottom:8px}.mlyj3b58b{margin-left:0}.mly1tpqehw{margin-left:12px}.mlyq1n1xh{margin-left:16px}.mly1iog12x{margin-left:4px}.mlyet2fuk{margin-left:8px}.mly1yf7rl7{margin-right:0}.mly1xmf6yo{margin-top:8px}.mly1rvw3h8{max-height:136px}.mly1hkcv85{max-height:200px}.mly1xyq3li{max-height:20em}.mlyq3t0pi{max-height:280px}.mlyuyqlj2{max-height:300px}.mly1phlbz0{max-height:400px}.mly1jcbksy{max-height:420px}.mly3d5gib{max-height:50vh}.mly1l4ul0t{max-height:75vh}.mly1kbvuzt{max-height:var(--radix-tooltip-content-available-height)}.mlyqyhut4{max-width:16.5px}.mly1pdpmub{max-width:264px}.mly1jkqq1h{max-width:280px}.mly1dc814f{max-width:350px}.mlyxc7z9f{max-width:360px}.mly1j9u4d2{max-width:400px}.mly1lr1uin{max-width:420px}.mlymcgfsh{max-width:60px}.mly14zcgw3{max-width:75vw}.mly2lwn1j{min-height:0}.mly4x6u8j{min-width:16.5px}.mlygc0pbm{min-width:1px}.mlyt4ypqs{min-width:20px}.mlyytlacd{min-width:224px}.mlylm99nl{min-width:240px}.mly2ixbly{min-width:250px}.mlyfvyar9{min-width:60px}.mly1onzeue{min-width:95px}.mly1odjw0f{overflow-y:auto}.mly18d9i69{padding-bottom:0}.mly1l90r2v{padding-bottom:16px}.mlyjkvuk6{padding-bottom:4px}.mlywib8y2{padding-bottom:8px}.mlynm25rq{padding-left:16px}.mly6wrskw{padding-left:4px}.mly163pfp{padding-left:8px}.mlymzs88n{padding-right:4px}.mlyy13l1i{padding-right:8px}.mly1nn3v0j{padding-top:2px}.mly1iorvi4{padding-top:4px}.mly123j3cw{padding-top:5px}.mly1y1aw1k{padding-top:8px}.mly1bkpikb{right:-2px}.mly3m8u43{right:0}.mly13vifvy{top:0}.mlynalus7{width:0}.mlyh8yej3{width:100%}.mlynrytzq{width:10em}.mly6jxa94{width:14px}.mly18kybhu{width:15em}.mlyjxf2f8{width:16.5px}.mly1kky2od{width:16px}.mly1xp8n7a{width:18px}.mly1i1rx1s{width:1px}.mlyw4jnvo{width:20px}.mlyvy4d1p{width:24px}.mly1f1nlb9{width:25%}.mlyqyf9gi{width:250px}.mly1hfn5x7{width:260px}.mlygd8bvy{width:28px}.mlybl57os{width:323px}.mlyxsgkw5{width:350px}.mly869kya{width:5.5em}.mly1ftt334{width:5px}.mly14rvwrp{width:600px}.mly1247r65{width:60px}.mly1xc55vz{width:8px}.mlym6i5cn{width:90%}.mly10lvyaf{width:calc(100% - 12px)}.mly1rxuhir{width:calc(100% - 22px)}.mly112rgfc{width:calc(100% - 40)}.mly1g65f5b{width:var(--radix-tooltip-trigger-width)}}@layer priority6{.mly1njml60::placeholder{color:#4e606f}}@layer priority1,priority2,priority3,priority4,priority5,priority6;@layer priority1{:root,.mly16bcggl{--mly1rtpqm4:rgba(10, 19, 23, .2);--mlywmj25p:rgba(121, 82, 255, .2);--mly1f95ebd:rgba(36, 187, 94, .2);--mly1jva6ta:rgba(3, 167, 215, .2);--mly1yr7ch6:rgba(241, 244, 247, 1);--mly1bs2mf7:rgba(0, 130, 251, .2);--mlywj8cgu:rgba(11, 153, 31, .2);--mlyhsum04:rgba(226, 164, 0, .2);--mly19gk0g3:rgba(227, 25, 59, .2);--mlyrbis2b:rgba(204, 211, 219, 1);--mly1eayp21:rgba(230, 235, 239, 1);--mly1bn1nfc:rgba(37, 54, 63, 1)}:root,.mly182du4u{--mly231nev:rgba(10, 19, 23, 1);--mly1i3blw4:rgba(78, 96, 111, 1);--mly16ir2n5:rgba(164, 176, 188, 1);--mly883cce:rgba(0, 100, 224, 1);--mlyy3jzoq:rgba(255, 255, 255, 1);--mly7qnfvx:rgba(10, 19, 23, 1);--mly3ib3qi:rgba(62, 6, 151, 1);--mlyndhcph:rgba(9, 68, 31, 1);--mlykotp7t:rgba(1, 73, 117, 1);--mlyf25c1a:rgba(66, 133, 244, 1)}:root,.mlyacbved{--mly8s4nhd:rgba(10, 19, 23, 1);--mly130oqjo:rgba(78, 96, 111, 1);--mlywh4rgx:rgba(164, 176, 188, 1);--mly1gq6bli:rgba(255, 255, 255, 1);--mly1jphivy:rgba(164, 176, 188, 1);--mly6i1qgk:rgba(121, 82, 255, 1);--mly1css67u:rgba(7, 109, 41, 1);--mly1fea1fg:rgba(2, 141, 193, 1);--mlyz9tc12:rgba(233, 175, 8, 1);--mly1dryxz7:rgba(0, 100, 224, 1);--mly176ansx:rgba(13, 134, 38, 1);--mlybq1dnb:rgba(227, 25, 59, 1)}:root,.mlyugude9{--mlyiz2tia:#0064E0;--mly1nffz32:#0082FB32;--mly1mq821i:white;--mlyz6dflh:rgba(0, 0, 0, .1);--mly4a29vv:#0000000D;--mlyhoywqa:#050505;--mly1qcfjts:#A4B0BC}:root,.mly18uf1kx{--mlynfhokh:none}:root,.mly11fl7i8{--mlyvpnzvp:none}.mly10cf5cp{--mly10mhzaa:var(--mly1f95ebd)}.mlykvi9ht{--mly10mhzaa:var(--mly1jva6ta)}.mly1rve117{--mly10mhzaa:var(--mly1rtpqm4)}.mlyihc5ie{--mly10mhzaa:var(--mlywmj25p)}.mly8bgh0r{--mly13n7235:var(--mly231nev)}.mly1r5zvhd{--mly13n7235:var(--mly3ib3qi)}.mlys5r2en{--mly13n7235:var(--mlykotp7t)}.mly1u6t2w6{--mly13n7235:var(--mlyndhcph)}.mlynu5hmx{--mly1by112x:0}.mly15rdse5{--mly1hmjrsb:var(--mly8s4nhd)}.mly5xbp4t{--mly1hpdckv:var(--mly231nev)}.mly3mt86g{--mly1hpdckv:var(--mlyy3jzoq)}.mly5deeek{--mly1ltarg1:var(--mly231nev)}.mlybcavtu{--mly1ojyoay:var(--mly231nev)}.mlywis56f{--mly1ojyoay:var(--mly3ib3qi)}.mly1eg6ybj{--mly1ojyoay:var(--mlykotp7t)}.mlyy280wj{--mly1ojyoay:var(--mlyndhcph)}.mly7ouyw2{--mly5m5edj:var(--mly1i3blw4)}.mlym9y5t7{--mlynfhokh:block}.mly28fmrt{--mlynfhokh:none}.mly1bo1i26{--mlyri8z08:0}.mly1ae5hkt{--mlyvpnzvp:block}.mly11ogjb6{--mlyvpnzvp:none}.mlyf8wvcd{--mlyvygx4q:var(--mly1css67u)}.mlyrtwgpv{--mlyvygx4q:var(--mly1fea1fg)}.mly1f8soc4{--mlyvygx4q:var(--mly6i1qgk)}.mly1izbou4{--mlyvygx4q:var(--mly8s4nhd)}.mly1n5rdk7{--mlyxo3nik:var(--mly1gq6bli)}.mlypfd894{--mlyxo3nik:var(--mly8s4nhd)}@keyframes mlyqng64z-B{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.mly1z060rf:is([data-disabled]){--mly1hmjrsb:var(--mlywh4rgx)}.mly1jacekv:is([data-disabled]){--mly1ltarg1:var(--mly16ir2n5)}.mly7h4d18:is([data-disabled]){--mly5m5edj:var(--mly16ir2n5)}.mly1iu3zmn:disabled{--mly1hpdckv:var(--mly1i3blw4)}.mly13vk70h:disabled{--mly1hpdckv:var(--mlyy3jzoq)}.mly1dsjhx:disabled{--mlyxo3nik:var(--mly1gq6bli)}.mlyiv1q3g:disabled{--mlyxo3nik:var(--mlywh4rgx)}.mly1u5txqc:hover{--mly1by112x:.3}.mly1x0xcia:hover{--mlynfhokh:block}.mly1fzkygm:hover{--mlyri8z08:.3}.mly1g9of4s:hover{--mlyvpnzvp:block}.mly157rht3:hover{--mlyvpnzvp:inline-flex}}@layer priority2{.mly1o4sr5b{background:#0a1317}.mly3j5mvw{background:#d0d3d7}.mlyo6guvx,.mly17eh757{background:#fff}.mly5uxqc1{background:#0000}.mlyhcrij8{background:#0064e0}.mly1xnbgy5{background:#ccd3db}.mlygqa5hp{background:#e6ebef}.mlyzy8d55{background:#ffffff80}.mlyotlr4g{background:#fff}.mly1md70p1{background:transparent}.mlysu8s4a{background:var(--mly10mhzaa)}.mly1np9qvj{background:var(--mly1eayp21)}.mly1b4wx6v{background:var(--mly1mq821i)}.mly16o7sp0{background:var(--mly1nffz32)}.mlyzkdzjc{border:1px solid #CCD3DB}.mly2yh2zd{border:1px solid #e0e0e0}.mly8fuzfi{border:1px solid #efefef}.mly1dc9p4k{border:1px solid red}.mly27xtdb{border:1px solid rgb(239,239,239)}.mly520xni{border:1px solid rgba(204,211,219,1)}.mlyvckdp7{border:1px solid rgba(230,235,239,1)}.mlyfj9a5l{border:1px solid transparent}.mly1vspu6z{border:1px solid var(--malloy-composer-form-background,#efefef)}.mlyss3vti{border:1px solid var(--malloy-composer-form-border,#ececed)}.mlyv3vvaf{border:1px solid var(--malloy-composer-form-focus,#4285f4)}.mly15q0wj1{border:1px solid var(--malloy-composer-menu-border,#ececed)}.mly1gs6z28{border:none}.mly15r89dc{grid-area:1 / 1}.mly1ghz6dp{margin:0}.mlynfbntj{margin:5px 0}.mly16zck5j{margin:5px}.mlykib98w{margin:8px}.mly1bpp3o7{margin:auto}.mlywp4ipm{padding:0 24px 24px}.mlyehqz9p{padding:0 4px}.mly1l4tkcb{padding:0 8px 8px}.mly1717udv{padding:0}.mly1b4vry6{padding:10px 0}.mlyc7ga6q{padding:12px}.mly1tamke2{padding:16px}.mly1e41zw8{padding:1px 5px}.mlyfvt8nb{padding:2px 12px 2px 6px}.mlybsehbd{padding:2px 3px}.mlyxzb6uj{padding:2px 4px}.mly195ery5{padding:3.75px 7px}.mly1gqu590{padding:3px 10px}.mly34lxi1{padding:3px 3px 3px 10px}.mly92jh8x{padding:4px 0 8px}.mlyztvwtv{padding:4px 0}.mly1fut7tt{padding:4px 12px 12px}.mlytdwleo{padding:4px 12px}.mly9cpjcd,.mlydqdrvq{padding:4px 8px}.mlyfawy5m{padding:4px}.mly17qkr04{padding:5px 0}.mly36usyh{padding:5px 10px}.mly14odnwx{padding:5px}.mly153ncpu{padding:8px 12px}.mlye8ttls{padding:8px}.mly1bw6wve:is([data-highlighted]){background:#0000000d}.mlyamyxth:is([data-state=checked]){background:#0082fb33}.mlyejs3c0:is([data-highlighted]):is([data-state=checked]){background:#0082fb4d}.mly14hn1a8:hover{background:#0000000d}.mly1uceoyp:hover{background:#dde2e8}.mly1vdl2d1:hover{background:#0457cb}.mlywghvya:active{background:#0000001a}.mly1u4cpcs:active{background:#004cbc}.mly1cncicd:active{background:#ccd3db}}@layer priority3{.mlyllpv0l{border-bottom:1px solid #e0e0e0}.mlyv3yj8d{border-bottom:1px solid var(--malloy-color-border,#e0e0e0)}.mly1akygb0{border-color:none}.mly1y5yj0f{border-color:#0064e0}.mly10bk7bj{border-color:var(--malloy-composer-focus,#c3d7f7)}.mly17v018m{border-color:var(--mlyrbis2b)}.mly11zuszs{border-radius:0 0 10px 10px}.mly19ctu66{border-radius:0 4px 4px 0}.mlyq516e8{border-radius:10px 10px 0 0}.mly1q4ynmn{border-radius:10px}.mly4pepcl{border-radius:12px}.mly18zih8k{border-radius:3px}.mlytah5vv{border-radius:4px 0 0 4px}.mly12oqio5{border-radius:4px}.mly1f96onm{border-radius:50px}.mly1sxf85j{border-radius:5px}.mly1kogg8i{border-radius:6px}.mlyur7f20{border-radius:8px}.mly10hpsqq{border-radius:9999px}.mly1pjcqnp{border-radius:inherit}.mlyfuqftd{border-right:1px solid #C8CCD2}.mly1roky18{border-right:1px solid rgba(204,211,219,1)}.mlyng3xce{border-style:none}.mly1y0btm7{border-style:solid}.mlye536se{border-top:1px solid #e0e0e0}.mly77krkw{border-top:1px solid var(--malloy-composer-form-border,#ececec)}.mlyc342km{border-width:0}.mlymkeg23{border-width:1px}.mly3psx0u{flex:0 0 auto}.mly98rzlu{flex:1}.mly883omv{gap:10px}.mlyou54vl{gap:16px}.mly12mrbbr{gap:1px}.mly1665zp3{gap:24px}.mly195vfkc{gap:2px}.mly1ed6fcf{gap:3px}.mly1jnr06f{gap:4px}.mly1nejdyq{gap:5px}.mly167g77z{gap:8px}.mly623te4{grid-column:span 2}.mly1a80n4u{grid-column:span 3}.mly1a2a7pz{outline:none}.mlyysyzu8{overflow:auto}.mlyb3r6kr{overflow:hidden}.mly1rea2x4{overflow:visible}.mly1ku5rj1{place-items:center}.mly1hl2dhg{text-decoration:none}.mly14znju7{transition:opacity .5s ease}.mly1fxp9ov:hover{border-color:var(--malloy-composer-focus,#c3d7f7)}.mlyetl2wx:focus{border-color:#4285f4}}@layer priority4{.mly1ua5tub{-webkit-box-orient:vertical}.mly1gzmk7r{-webkit-line-clamp:3}.mly6s0dn4{align-items:center}.mlypqajaz{align-items:end}.mly1cy8zhl{align-items:flex-start}.mly7a106z{align-items:start}.mly1071x5a{align-items:top}.mly7v9bd0{animation-duration:.75s}.mlya4qsjk{animation-iteration-count:infinite}.mly8jsasv{animation-name:mlyqng64z-B}.mly1esw782{animation-timing-function:linear}.mlylp1x4z{backface-visibility:hidden}.mlygmb8sa{background-color:#e6ebef}.mly83z2og{background-color:#fff}.mly1vzefiq{background-color:#f0f6ff}.mlyy9rfsq{background-color:#e6ebef}.mly10cdfl8{background-color:#f1f4f7}.mly1gzqxud{background-color:#fff}.mly1jmk7v{background-color:#25363f}.mlyjbqb8w{background-color:transparent}.mly9nb4jr{background-color:var(--malloy-color-background,white)}.mly1jjku57{background-color:var(--malloy-composer-form-disabledBackground,#f6f6f6)}.mly6wxqrg{background-color:var(--malloy-composer-form-focusBackground,#f0f6ff)}.mly12azwz9{background-color:var(--malloy-composer-menu-background,white)}.mlyrkwa2d{background-color:var(--mly19gk0g3)}.mly1pnbjq1{background-color:var(--mly1bs2mf7)}.mly12nb83b{background-color:var(--mly1yr7ch6)}.mly1x7w6om{background-color:var(--mlyhsum04)}.mly1x3oq6j{background-color:var(--mlywj8cgu)}.mly12peec7{background-color:#fff}.mly1mwwwfo{border-collapse:collapse}.mlygbc89k{box-shadow:0 0 0 1px #ccd3db}html:not([dir=rtl]) .mlyn8fsvk{box-shadow:0 0 0 1px #0064e0 inset,0 0 0 3px #0171e34d inset}html[dir=rtl] .mlyn8fsvk{box-shadow:0 0 0 1px #0064e0 inset,0 0 0 3px #0171e34d inset}.mlybwr872{box-shadow:0 0 0 2px #0064e0}html:not([dir=rtl]) .mly1kmqopl{box-shadow:0 0 5px #0000001a,0 0 1px #0000001a}html[dir=rtl] .mly1kmqopl{box-shadow:0 0 5px #0000001a,0 0 1px #0000001a}html:not([dir=rtl]) .mly5n1uv4{box-shadow:0 1px 2px #0000001a,0 2px 12px #0000001a}html[dir=rtl] .mly5n1uv4{box-shadow:0 1px 2px #0000001a,0 2px 12px #0000001a}.mly1a3rnpv{box-shadow:0 1px 5px 1px #0000001a}html:not([dir=rtl]) .mly17fq3gk{box-shadow:0 2px 12px #0000001a,0 1px 2px #0000001a}html[dir=rtl] .mly17fq3gk{box-shadow:0 2px 12px #0000001a,0 1px 2px #0000001a}.mlyx2l43u{box-shadow:0 2px 12px 0 var(--mlyz6dflh)}.mly1gnnqk1{box-shadow:none}.mlyg48p7p{box-shadow:#0171e34d 0 0 0 3px inset}.mly9f619{box-sizing:border-box}.mlyayvuls{color:#000}.mly1aejobo{color:#0064e0}.mly1v5ugh9{color:#505050}.mly358b0h{color:#909090}.mly1e2nbdu{color:red}.mly198oq2i{color:#3e9efb!important}.mlyizdh9v{color:#5f6368}.mlykfrnou{color:#0064e0}.mlyj5j7qc{color:#647685}.mly1rs82da{color:#dde2e8}.mly183j0n7{color:#e4e6eb}.mly1dhlylr{color:#050505}.mly19co3pv{color:transparent}.mly1pc1dlx{color:var(--malloy-composer-form-foreground,#5f6368)}.mly1r0d382{color:var(--mly130oqjo)}.mly1xre2ib{color:var(--mly13n7235)}.mlywzxoxx{color:var(--mly16ir2n5)}.mly1l99qkd{color:var(--mly176ansx)}.mly1evcnq1{color:var(--mly1css67u)}.mly1tw9ct1{color:var(--mly1dryxz7)}.mly1h091fy{color:var(--mly1fea1fg)}.mly1kiansi{color:var(--mly1gq6bli)}.mly1mguc6l{color:var(--mly1hmjrsb)}.mlyaerthn{color:var(--mly1hpdckv)}.mly9dwj6z{color:var(--mly1i3blw4)}.mlyann5r3{color:var(--mly1jphivy)}.mly12lmysb{color:var(--mly1ltarg1)}.mly1ard1hs{color:var(--mly1ojyoay)}.mly1jwwhvr{color:var(--mly1qcfjts)}.mly1ue28sr{color:var(--mly231nev)}.mlyydnxy5{color:var(--mly3ib3qi)}.mly15jt5ur{color:var(--mly5m5edj)}.mly1ywypuw{color:var(--mly6i1qgk)}.mly1p68tcb{color:var(--mly8s4nhd)}.mly109d434{color:var(--mlybq1dnb)}.mly1nwq7qm{color:var(--mlyf25c1a)}.mly1q8pm5h{color:var(--mlyhoywqa)}.mlywn9h7t{color:var(--mlyvygx4q)}.mly16un6j3{color:var(--mlywh4rgx)}.mlyuk6yi3{color:var(--mlyxo3nik)}.mly7neac5{color:var(--mlyz9tc12)}.mlyt0e3qv{cursor:default}.mly7eptgl{cursor:ew-resize}.mly1ipiool{cursor:initial}.mly1ypdohk{cursor:pointer}.mly104kibb{display:-webkit-box}.mly1lliihq{display:block}.mly78zum5{display:flex}.mlyrvj5dj{display:grid}.mly1rg5ohu{display:inline-block}.mly3nfvp2{display:inline-flex}.mlywz0xwf{display:inline-grid}.mly1s85apg{display:none}.mly1vsucm1{display:var(--mlynfhokh)}.mly2b4tyj{display:var(--mlyvpnzvp)}.mlydt5ytf{flex-direction:column}.mly1q0g3np{flex-direction:row}.mly1iyjqo2{flex-grow:1}.mly2lah0s{flex-shrink:0}.mly1a02dak{flex-wrap:wrap}.mly6icuqf{font-family:sans-serif}.mly1rj5sg5{font-family:SF Pro Text,-apple-system,system-ui,sans-serif}.mly12xrqmb{font-family:var(--malloy-composer-fontFamily,sans-serif)}.mlyfifm61{font-size:12px}.mlyif65rj{font-size:14px}.mly1j61zf2{font-size:16px}.mlymhiqyu{font-size:var(--malloy-composer-fontSize,14px)}.mly64z8l9{font-size:var(--malloy-composer-menu-fontSize,14px)}.mly1j61x8r{font-style:normal}.mlyo1l8bm{font-weight:400}.mly1s688f{font-weight:600}.mly1xlr1w8,.mly117nqv4{font-weight:700}.mly1fcty0u{font-weight:400}.mly1mt1orb{grid-auto-flow:column}.mlysd5ean{grid-auto-rows:max-content}.mly15396mt{grid-template-columns:100px auto 100px}.mly52fmzj{grid-template-columns:1fr auto}.mly1g3yg12{grid-template-columns:auto 1fr auto}.mlybyjr8{grid-template-columns:auto}.mly16kridx{grid-template-columns:min-content 1fr min-content}.mlyl56j7k{justify-content:center}.mly13a6bvl{justify-content:flex-end}.mly1nhvcw1{justify-content:flex-start}.mly1rfj78v{justify-content:left}.mly1lvf691{justify-content:right}.mly1l1ennw{justify-content:space-around}.mly1qughib{justify-content:space-between}.mlylqzeqv{justify-content:start}.mly11e9jwx{leading-trim:both}.mly1gu5id8{letter-spacing:-.24px}.mly12oo3zp{letter-spacing:0}.mly1d3mw78{line-height:16px}.mly1rl49lg{line-height:2.2em}.mly1fc57z9{line-height:20px}.mly1o2sk6j{line-height:24px}.mly1vqud6w{opacity:70%}.mly1d3ksz1{opacity:var(--mly1by112x)}.mly15sj6ns{opacity:var(--mlyri8z08)}.mly47corl{pointer-events:none}.mly10l6tqk{position:absolute}.mlyixxii4{position:fixed}.mly1n2onr6{position:relative}.mly7wzq59{position:sticky}.mly2b8uid{text-align:center}.mlydpxx8g{text-align:left}.mly1vqy1sf{text-edge:cap}.mlylyipyv{text-overflow:ellipsis}.mly6mezaz{text-transform:none}.mly87ps6o{user-select:none}.mlyxymvpz{vertical-align:middle}.mly1n8ftqi{vertical-align:text-top}.mly16dsc37{vertical-align:top}.mlylshs6z{visibility:hidden}.mlynpuxes{visibility:visible}.mlyuxw1ft{white-space:nowrap}.mly126k92a{white-space:pre-wrap}.mly1so62im{will-change:transform}.mly1vvkbs{word-wrap:break-word}.mly35i7{writing-mode:sideways-lr}.mly1ja2u2z{z-index:0}.mly1vjfegm{z-index:1}.mly11uqc5h{z-index:100}.mlyhtitgo{z-index:2}.mly14vaotu:is([data-state=active]){background-color:var(--mly1bs2mf7)}.mlyqweix6:is([data-disabled]){color:var(--mly1qcfjts)}.mlyb0tsu4:is([data-state=active]){color:var(--mly883cce)}.mly5ezrf1:is([data-disabled]){cursor:not-allowed}.mly1uifvsu:is([data-state=active]){font-weight:700}.mly1s07b3s:disabled{cursor:not-allowed}.mly1haqvef:hover{background-color:#dde2e8}.mlyjg9ulk:hover{background-color:#efefef}.mlyt89l8w:hover{background-color:var(--malloy-composer-form-focusBackground,#f0f6ff)}.mlyk1j4u7:hover{background-color:var(--mly4a29vv)}.mlyk1e6ed:hover{box-shadow:#ccd3db4d 0 0 0 3px inset}.mlytw1abo:focus{background-color:#fff}}@layer priority5{.mly1ey2m1c{bottom:0}.mlyqtp20y{height:0}.mly5yr21d{height:100%}.mlypyat2d{height:100px}.mlyn866dk{height:136px}.mly1v9usgg{height:14px}.mlywrnneb{height:16.5px}.mlylup9mm{height:16px}.mlymix8c7{height:18px}.mlyjm9jq1{height:1px}.mly1m3v4wt{height:200px}.mlyk2yuxw{height:209.5px}.mly1qx5ct2{height:20px}.mlyxk0z11{height:24px}.mlyd7y6wv{height:26px}.mly1fgtraw{height:28px}.mlyc9qbxq{height:36px}.mlyng8ra{height:60px}.mlydk7pt{height:8px}.mlylo07zb{height:90px}.mlyt7dq6l{height:auto}.mly1ktj5wk{height:calc(100% - 8px)}.mlyu96u03{left:0}.mly12nagc{margin-bottom:4px}.mlyu06os2{margin-bottom:5px}.mly1e56ztr{margin-bottom:8px}.mlyj3b58b{margin-left:0}.mly1tpqehw{margin-left:12px}.mlyq1n1xh{margin-left:16px}.mly1iog12x{margin-left:4px}.mlyet2fuk{margin-left:8px}.mly1yf7rl7{margin-right:0}.mly1xmf6yo{margin-top:8px}.mly1rvw3h8{max-height:136px}.mly1hkcv85{max-height:200px}.mly1xyq3li{max-height:20em}.mlyq3t0pi{max-height:280px}.mlyuyqlj2{max-height:300px}.mly1phlbz0{max-height:400px}.mly1jcbksy{max-height:420px}.mly3d5gib{max-height:50vh}.mly1l4ul0t{max-height:75vh}.mly1kbvuzt{max-height:var(--radix-tooltip-content-available-height)}.mlyqyhut4{max-width:16.5px}.mly1pdpmub{max-width:264px}.mly1jkqq1h{max-width:280px}.mly1dc814f{max-width:350px}.mlyxc7z9f{max-width:360px}.mly1j9u4d2{max-width:400px}.mly1lr1uin{max-width:420px}.mlymcgfsh{max-width:60px}.mly14zcgw3{max-width:75vw}.mly2lwn1j{min-height:0}.mly4x6u8j{min-width:16.5px}.mlygc0pbm{min-width:1px}.mlyt4ypqs{min-width:20px}.mlyytlacd{min-width:224px}.mlylm99nl{min-width:240px}.mly2ixbly{min-width:250px}.mlyfvyar9{min-width:60px}.mly1onzeue{min-width:95px}.mly1odjw0f{overflow-y:auto}.mly18d9i69{padding-bottom:0}.mly1l90r2v{padding-bottom:16px}.mlyjkvuk6{padding-bottom:4px}.mlywib8y2{padding-bottom:8px}.mlynm25rq{padding-left:16px}.mly6wrskw{padding-left:4px}.mly163pfp{padding-left:8px}.mlymzs88n{padding-right:4px}.mlyy13l1i{padding-right:8px}.mly1nn3v0j{padding-top:2px}.mly1iorvi4{padding-top:4px}.mly123j3cw{padding-top:5px}.mly1y1aw1k{padding-top:8px}.mly1bkpikb{right:-2px}.mly3m8u43{right:0}.mly13vifvy{top:0}.mlynalus7{width:0}.mlyh8yej3{width:100%}.mlynrytzq{width:10em}.mly6jxa94{width:14px}.mly18kybhu{width:15em}.mlyjxf2f8{width:16.5px}.mly1kky2od{width:16px}.mly1xp8n7a{width:18px}.mly1i1rx1s{width:1px}.mlyw4jnvo{width:20px}.mlyvy4d1p{width:24px}.mly1f1nlb9{width:25%}.mlyqyf9gi{width:250px}.mly1hfn5x7{width:260px}.mlygd8bvy{width:28px}.mlybl57os{width:323px}.mlyxsgkw5{width:350px}.mly869kya{width:5.5em}.mly1ftt334{width:5px}.mly14rvwrp{width:600px}.mly1247r65{width:60px}.mly1xc55vz{width:8px}.mlym6i5cn{width:90%}.mly10lvyaf{width:calc(100% - 12px)}.mly1rxuhir{width:calc(100% - 22px)}.mly112rgfc{width:calc(100% - 40)}.mly1g65f5b{width:var(--radix-tooltip-trigger-width)}}@layer priority6{.mly1njml60::placeholder{color:#4e606f}}div[data-radix-popper-content-wrapper]{z-index:100!important}.w-md-editor-bar{position:absolute;cursor:s-resize;right:0;bottom:0;margin-top:-11px;margin-right:0;width:14px;z-index:3;height:10px;border-radius:0 0 3px;-webkit-user-select:none;user-select:none}.w-md-editor-bar svg{display:block;margin:0 auto}.w-md-editor-area{overflow:auto;border-radius:5px}.w-md-editor-text{min-height:100%;position:relative;text-align:left;white-space:pre-wrap;word-break:keep-all;overflow-wrap:break-word;box-sizing:border-box;padding:10px;margin:0;font-size:14px!important;line-height:18px!important;font-variant-ligatures:common-ligatures}.w-md-editor-text-pre,.w-md-editor-text-input,.w-md-editor-text>.w-md-editor-text-pre{margin:0;border:0;background:none;box-sizing:inherit;display:inherit;font-family:inherit;font-family:var(--md-editor-font-family)!important;font-size:inherit;font-style:inherit;font-variant-ligatures:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;tab-size:inherit;text-indent:inherit;text-rendering:inherit;text-transform:inherit;white-space:inherit;overflow-wrap:inherit;word-break:inherit;word-break:normal;padding:0}.w-md-editor-text-pre{position:relative;margin:0!important;pointer-events:none;background-color:transparent!important}.w-md-editor-text-pre>code{padding:0!important;font-family:var(--md-editor-font-family)!important;font-size:14px!important;line-height:18px!important}.w-md-editor-text-input{position:absolute;top:0;left:0;height:100%;width:100%;resize:none;color:inherit;overflow:hidden;outline:0;padding:inherit;-webkit-font-smoothing:antialiased;-webkit-text-fill-color:transparent}.w-md-editor-text-input:empty{-webkit-text-fill-color:inherit!important}.w-md-editor-text-pre,.w-md-editor-text-input{word-wrap:pre;word-break:break-word;white-space:pre-wrap}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.w-md-editor-text-input{color:transparent!important}.w-md-editor-text-input::selection{background-color:#accef7!important;color:transparent!important}}.w-md-editor-text-pre .punctuation{color:var(--color-prettylights-syntax-comment, #8b949e)!important}.w-md-editor-text-pre .token.url,.w-md-editor-text-pre .token.content{color:var(--color-prettylights-syntax-constant, #0550ae)!important}.w-md-editor-text-pre .token.title.important{color:var(--color-prettylights-syntax-markup-bold, #24292f)}.w-md-editor-text-pre .token.code-block .function{color:var(--color-prettylights-syntax-entity, #8250df)}.w-md-editor-text-pre .token.bold{font-weight:unset!important}.w-md-editor-text-pre .token.title{line-height:unset!important;font-size:unset!important;font-weight:unset!important}.w-md-editor-text-pre .token.code.keyword{color:var(--color-prettylights-syntax-constant, #0550ae)!important}.w-md-editor-text-pre .token.strike,.w-md-editor-text-pre .token.strike .content{color:var(--color-prettylights-syntax-markup-deleted-text, #82071e)!important}.w-md-editor-toolbar-child{position:absolute;border-radius:3px;box-shadow:0 0 0 1px var(--md-editor-box-shadow-color),0 0 0 var(--md-editor-box-shadow-color),0 1px 1px var(--md-editor-box-shadow-color);background-color:var(--md-editor-background-color);z-index:1;display:none}.w-md-editor-toolbar-child.active{display:block}.w-md-editor-toolbar-child .w-md-editor-toolbar{border-bottom:0;padding:3px;border-radius:3px}.w-md-editor-toolbar-child .w-md-editor-toolbar ul>li{display:block}.w-md-editor-toolbar-child .w-md-editor-toolbar ul>li button{width:-webkit-fill-available;height:initial;box-sizing:border-box;padding:3px 4px 2px;margin:0}.w-md-editor-toolbar{border-bottom:1px solid var(--md-editor-box-shadow-color);background-color:var(--md-editor-background-color);padding:3px;display:flex;justify-content:space-between;align-items:center;border-radius:3px 3px 0 0;-webkit-user-select:none;user-select:none;flex-wrap:wrap}.w-md-editor-toolbar.bottom{border-bottom:0px;border-top:1px solid var(--md-editor-box-shadow-color);border-radius:0 0 3px 3px}.w-md-editor-toolbar ul,.w-md-editor-toolbar li{margin:0;padding:0;list-style:none;line-height:initial}.w-md-editor-toolbar li{display:inline-block;font-size:14px}.w-md-editor-toolbar li+li{margin:0}.w-md-editor-toolbar li>button{border:none;height:20px;line-height:14px;background:none;padding:4px;margin:0 1px;border-radius:2px;text-transform:none;font-weight:400;overflow:visible;outline:none;cursor:pointer;transition:all .3s;white-space:nowrap;color:var(--color-fg-default)}.w-md-editor-toolbar li>button:hover,.w-md-editor-toolbar li>button:focus{background-color:var(--color-neutral-muted);color:var(--color-accent-fg)}.w-md-editor-toolbar li>button:active{background-color:var(--color-neutral-muted);color:var(--color-danger-fg)}.w-md-editor-toolbar li>button:disabled{color:var(--md-editor-box-shadow-color);cursor:not-allowed}.w-md-editor-toolbar li>button:disabled:hover{background-color:transparent;color:var(--md-editor-box-shadow-color)}.w-md-editor-toolbar li.active>button{color:var(--color-accent-fg);background-color:var(--color-neutral-muted)}.w-md-editor-toolbar-divider{height:14px;width:1px;margin:-3px 3px 0!important;vertical-align:middle;background-color:var(--md-editor-box-shadow-color)}.w-md-editor{text-align:left;border-radius:3px;padding-bottom:1px;position:relative;color:var(--color-fg-default);--md-editor-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;--md-editor-background-color: var(--color-canvas-default, #ffffff);--md-editor-box-shadow-color: var(--color-border-default, #d0d7de);box-shadow:0 0 0 1px var(--md-editor-box-shadow-color),0 0 0 var(--md-editor-box-shadow-color),0 1px 1px var(--md-editor-box-shadow-color);background-color:var(--md-editor-background-color);font-family:Helvetica Neue,Helvetica,Arial,sans-serif;display:flex;flex-direction:column}.w-md-editor.w-md-editor-rtl{direction:rtl!important;text-align:right!important}.w-md-editor.w-md-editor-rtl .w-md-editor-preview{right:unset!important;left:0;text-align:right!important;box-shadow:inset -1px 0 0 0 var(--md-editor-box-shadow-color)}.w-md-editor.w-md-editor-rtl .w-md-editor-text{text-align:right!important}.w-md-editor-toolbar{height:-webkit-fit-content;height:fit-content}.w-md-editor-content{height:100%;overflow:auto;position:relative;border-radius:0 0 3px}.w-md-editor .copied{display:none!important}.w-md-editor-input{width:50%;height:100%}.w-md-editor-text-pre>code{word-break:break-word!important;white-space:pre-wrap!important}.w-md-editor-preview{width:50%;box-sizing:border-box;box-shadow:inset 1px 0 0 0 var(--md-editor-box-shadow-color);position:absolute;padding:10px 20px;overflow:auto;top:0;right:0;bottom:0;border-radius:0 0 5px;display:flex;flex-direction:column}.w-md-editor-preview .anchor{display:none}.w-md-editor-preview .contains-task-list li.task-list-item{list-style:none}.w-md-editor-show-preview .w-md-editor-input{width:0%;overflow:hidden;background-color:var(--md-editor-background-color)}.w-md-editor-show-preview .w-md-editor-preview{width:100%;box-shadow:inset 0 0}.w-md-editor-show-edit .w-md-editor-input{width:100%}.w-md-editor-show-edit .w-md-editor-preview{width:0%;padding:0}.w-md-editor-fullscreen{overflow:hidden;position:fixed;z-index:99999;inset:0;height:100%!important}.w-md-editor-fullscreen .w-md-editor-content{height:100%}
|
|
1
|
+
@layer priority1,priority2,priority3,priority4,priority5,priority6;@layer priority1{:root,.mly16bcggl{--mly1rtpqm4:rgba(10, 19, 23, .2);--mlywmj25p:rgba(121, 82, 255, .2);--mly1f95ebd:rgba(36, 187, 94, .2);--mly1jva6ta:rgba(3, 167, 215, .2);--mly1yr7ch6:rgba(241, 244, 247, 1);--mly1bs2mf7:rgba(0, 130, 251, .2);--mlywj8cgu:rgba(11, 153, 31, .2);--mlyhsum04:rgba(226, 164, 0, .2);--mly19gk0g3:rgba(227, 25, 59, .2);--mlyrbis2b:rgba(204, 211, 219, 1);--mly1eayp21:rgba(230, 235, 239, 1);--mly1bn1nfc:rgba(37, 54, 63, 1)}:root,.mly182du4u{--mly231nev:rgba(10, 19, 23, 1);--mly1i3blw4:rgba(78, 96, 111, 1);--mly16ir2n5:rgba(164, 176, 188, 1);--mly883cce:rgba(0, 100, 224, 1);--mlyy3jzoq:rgba(255, 255, 255, 1);--mly7qnfvx:rgba(10, 19, 23, 1);--mly3ib3qi:rgba(62, 6, 151, 1);--mlyndhcph:rgba(9, 68, 31, 1);--mlykotp7t:rgba(1, 73, 117, 1);--mlyf25c1a:rgba(66, 133, 244, 1)}:root,.mlyacbved{--mly8s4nhd:rgba(10, 19, 23, 1);--mly130oqjo:rgba(78, 96, 111, 1);--mlywh4rgx:rgba(164, 176, 188, 1);--mly1gq6bli:rgba(255, 255, 255, 1);--mly1jphivy:rgba(164, 176, 188, 1);--mly6i1qgk:rgba(121, 82, 255, 1);--mly1css67u:rgba(7, 109, 41, 1);--mly1fea1fg:rgba(2, 141, 193, 1);--mlyz9tc12:rgba(233, 175, 8, 1);--mly1dryxz7:rgba(0, 100, 224, 1);--mly176ansx:rgba(13, 134, 38, 1);--mlybq1dnb:rgba(227, 25, 59, 1)}:root,.mlyugude9{--mlyiz2tia:#0064E0;--mly1nffz32:#0082FB32;--mly1mq821i:white;--mlyz6dflh:rgba(0, 0, 0, .1);--mly4a29vv:#0000000D;--mlyhoywqa:#050505;--mly1qcfjts:#A4B0BC}:root,.mly18uf1kx{--mlynfhokh:none}:root,.mly11fl7i8{--mlyvpnzvp:none}.mly10cf5cp{--mly10mhzaa:var(--mly1f95ebd)}.mlykvi9ht{--mly10mhzaa:var(--mly1jva6ta)}.mly1rve117{--mly10mhzaa:var(--mly1rtpqm4)}.mlyihc5ie{--mly10mhzaa:var(--mlywmj25p)}.mly8bgh0r{--mly13n7235:var(--mly231nev)}.mly1r5zvhd{--mly13n7235:var(--mly3ib3qi)}.mlys5r2en{--mly13n7235:var(--mlykotp7t)}.mly1u6t2w6{--mly13n7235:var(--mlyndhcph)}.mlynu5hmx{--mly1by112x:0}.mly15rdse5{--mly1hmjrsb:var(--mly8s4nhd)}.mly5xbp4t{--mly1hpdckv:var(--mly231nev)}.mly3mt86g{--mly1hpdckv:var(--mlyy3jzoq)}.mly5deeek{--mly1ltarg1:var(--mly231nev)}.mlybcavtu{--mly1ojyoay:var(--mly231nev)}.mlywis56f{--mly1ojyoay:var(--mly3ib3qi)}.mly1eg6ybj{--mly1ojyoay:var(--mlykotp7t)}.mlyy280wj{--mly1ojyoay:var(--mlyndhcph)}.mly7ouyw2{--mly5m5edj:var(--mly1i3blw4)}.mlym9y5t7{--mlynfhokh:block}.mly28fmrt{--mlynfhokh:none}.mly1bo1i26{--mlyri8z08:0}.mly1ae5hkt{--mlyvpnzvp:block}.mly11ogjb6{--mlyvpnzvp:none}.mlyf8wvcd{--mlyvygx4q:var(--mly1css67u)}.mlyrtwgpv{--mlyvygx4q:var(--mly1fea1fg)}.mly1f8soc4{--mlyvygx4q:var(--mly6i1qgk)}.mly1izbou4{--mlyvygx4q:var(--mly8s4nhd)}.mly1n5rdk7{--mlyxo3nik:var(--mly1gq6bli)}.mlypfd894{--mlyxo3nik:var(--mly8s4nhd)}@keyframes mlyqng64z-B{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.mly1z060rf:is([data-disabled]){--mly1hmjrsb:var(--mlywh4rgx)}.mly1jacekv:is([data-disabled]){--mly1ltarg1:var(--mly16ir2n5)}.mly7h4d18:is([data-disabled]){--mly5m5edj:var(--mly16ir2n5)}.mly1iu3zmn:disabled{--mly1hpdckv:var(--mly1i3blw4)}.mly13vk70h:disabled{--mly1hpdckv:var(--mlyy3jzoq)}.mly1dsjhx:disabled{--mlyxo3nik:var(--mly1gq6bli)}.mlyiv1q3g:disabled{--mlyxo3nik:var(--mlywh4rgx)}.mly1u5txqc:hover{--mly1by112x:.3}.mly1x0xcia:hover{--mlynfhokh:block}.mly1fzkygm:hover{--mlyri8z08:.3}.mly1g9of4s:hover{--mlyvpnzvp:block}.mly157rht3:hover{--mlyvpnzvp:inline-flex}}@layer priority2{.mly1o4sr5b{background:#0a1317}.mly3j5mvw{background:#d0d3d7}.mlyo6guvx,.mly17eh757{background:#fff}.mly5uxqc1{background:#0000}.mlyhcrij8{background:#0064e0}.mly1xnbgy5{background:#ccd3db}.mlygqa5hp{background:#e6ebef}.mlyzy8d55{background:#ffffff80}.mlyotlr4g{background:#fff}.mly1md70p1{background:transparent}.mlysu8s4a{background:var(--mly10mhzaa)}.mly1np9qvj{background:var(--mly1eayp21)}.mly1b4wx6v{background:var(--mly1mq821i)}.mly16o7sp0{background:var(--mly1nffz32)}.mlyzkdzjc{border:1px solid #CCD3DB}.mly2yh2zd{border:1px solid #e0e0e0}.mly8fuzfi{border:1px solid #efefef}.mly1dc9p4k{border:1px solid red}.mly27xtdb{border:1px solid rgb(239,239,239)}.mly520xni{border:1px solid rgba(204,211,219,1)}.mlyvckdp7{border:1px solid rgba(230,235,239,1)}.mlyfj9a5l{border:1px solid transparent}.mly1vspu6z{border:1px solid var(--malloy-composer-form-background,#efefef)}.mlyss3vti{border:1px solid var(--malloy-composer-form-border,#ececed)}.mlyv3vvaf{border:1px solid var(--malloy-composer-form-focus,#4285f4)}.mly15q0wj1{border:1px solid var(--malloy-composer-menu-border,#ececed)}.mly1gs6z28{border:none}.mly15r89dc{grid-area:1 / 1}.mly1ghz6dp{margin:0}.mlynfbntj{margin:5px 0}.mly16zck5j{margin:5px}.mlykib98w{margin:8px}.mly1bpp3o7{margin:auto}.mlywp4ipm{padding:0 24px 24px}.mlyehqz9p{padding:0 4px}.mly1l4tkcb{padding:0 8px 8px}.mly1717udv{padding:0}.mly1b4vry6{padding:10px 0}.mlyc7ga6q{padding:12px}.mly1tamke2{padding:16px}.mly1e41zw8{padding:1px 5px}.mlyfvt8nb{padding:2px 12px 2px 6px}.mlybsehbd{padding:2px 3px}.mlyxzb6uj{padding:2px 4px}.mly195ery5{padding:3.75px 7px}.mly1gqu590{padding:3px 10px}.mly34lxi1{padding:3px 3px 3px 10px}.mly92jh8x{padding:4px 0 8px}.mlyztvwtv{padding:4px 0}.mly1fut7tt{padding:4px 12px 12px}.mlytdwleo{padding:4px 12px}.mly9cpjcd,.mlydqdrvq{padding:4px 8px}.mlyfawy5m{padding:4px}.mly17qkr04{padding:5px 0}.mly36usyh{padding:5px 10px}.mly14odnwx{padding:5px}.mly153ncpu{padding:8px 12px}.mlye8ttls{padding:8px}.mly1bw6wve:is([data-highlighted]){background:#0000000d}.mlyamyxth:is([data-state=checked]){background:#0082fb33}.mlyejs3c0:is([data-highlighted]):is([data-state=checked]){background:#0082fb4d}.mly14hn1a8:hover{background:#0000000d}.mly1uceoyp:hover{background:#dde2e8}.mly1vdl2d1:hover{background:#0457cb}.mlywghvya:active{background:#0000001a}.mly1u4cpcs:active{background:#004cbc}.mly1cncicd:active{background:#ccd3db}}@layer priority3{.mlyllpv0l{border-bottom:1px solid #e0e0e0}.mlyv3yj8d{border-bottom:1px solid var(--malloy-color-border,#e0e0e0)}.mly1akygb0{border-color:none}.mly1y5yj0f{border-color:#0064e0}.mly10bk7bj{border-color:var(--malloy-composer-focus,#c3d7f7)}.mly17v018m{border-color:var(--mlyrbis2b)}.mly11zuszs{border-radius:0 0 10px 10px}.mly19ctu66{border-radius:0 4px 4px 0}.mlyq516e8{border-radius:10px 10px 0 0}.mly1q4ynmn{border-radius:10px}.mly4pepcl{border-radius:12px}.mly18zih8k{border-radius:3px}.mlytah5vv{border-radius:4px 0 0 4px}.mly12oqio5{border-radius:4px}.mly1f96onm{border-radius:50px}.mly1sxf85j{border-radius:5px}.mly1kogg8i{border-radius:6px}.mlyur7f20{border-radius:8px}.mly10hpsqq{border-radius:9999px}.mly1pjcqnp{border-radius:inherit}.mlyfuqftd{border-right:1px solid #C8CCD2}.mly1roky18{border-right:1px solid rgba(204,211,219,1)}.mlyng3xce{border-style:none}.mly1y0btm7{border-style:solid}.mlye536se{border-top:1px solid #e0e0e0}.mly77krkw{border-top:1px solid var(--malloy-composer-form-border,#ececec)}.mlyc342km{border-width:0}.mlymkeg23{border-width:1px}.mly3psx0u{flex:0 0 auto}.mly98rzlu{flex:1}.mly883omv{gap:10px}.mlyou54vl{gap:16px}.mly12mrbbr{gap:1px}.mly1665zp3{gap:24px}.mly195vfkc{gap:2px}.mly1ed6fcf{gap:3px}.mly1jnr06f{gap:4px}.mly1nejdyq{gap:5px}.mly167g77z{gap:8px}.mly623te4{grid-column:span 2}.mly1a80n4u{grid-column:span 3}.mly1a2a7pz{outline:none}.mlyysyzu8{overflow:auto}.mlyb3r6kr{overflow:hidden}.mly1rea2x4{overflow:visible}.mly1ku5rj1{place-items:center}.mly1hl2dhg{text-decoration:none}.mly14znju7{transition:opacity .5s ease}.mly1fxp9ov:hover{border-color:var(--malloy-composer-focus,#c3d7f7)}.mlyetl2wx:focus{border-color:#4285f4}}@layer priority4{.mly1ua5tub{-webkit-box-orient:vertical}.mly1gzmk7r{-webkit-line-clamp:3}.mly6s0dn4{align-items:center}.mlypqajaz{align-items:end}.mly1cy8zhl{align-items:flex-start}.mly7a106z{align-items:start}.mly1071x5a{align-items:top}.mly7v9bd0{animation-duration:.75s}.mlya4qsjk{animation-iteration-count:infinite}.mly8jsasv{animation-name:mlyqng64z-B}.mly1esw782{animation-timing-function:linear}.mlylp1x4z{backface-visibility:hidden}.mlygmb8sa{background-color:#e6ebef}.mly83z2og{background-color:#fff}.mly1vzefiq{background-color:#f0f6ff}.mlyy9rfsq{background-color:#e6ebef}.mly10cdfl8{background-color:#f1f4f7}.mly1gzqxud{background-color:#fff}.mly1jmk7v{background-color:#25363f}.mlyjbqb8w{background-color:transparent}.mly9nb4jr{background-color:var(--malloy-color-background,white)}.mly1jjku57{background-color:var(--malloy-composer-form-disabledBackground,#f6f6f6)}.mly6wxqrg{background-color:var(--malloy-composer-form-focusBackground,#f0f6ff)}.mly12azwz9{background-color:var(--malloy-composer-menu-background,white)}.mlyrkwa2d{background-color:var(--mly19gk0g3)}.mly1pnbjq1{background-color:var(--mly1bs2mf7)}.mly12nb83b{background-color:var(--mly1yr7ch6)}.mly1x7w6om{background-color:var(--mlyhsum04)}.mly1x3oq6j{background-color:var(--mlywj8cgu)}.mly12peec7{background-color:#fff}.mly1mwwwfo{border-collapse:collapse}.mlygbc89k{box-shadow:0 0 0 1px #ccd3db}html:not([dir=rtl]) .mlyn8fsvk{box-shadow:0 0 0 1px #0064e0 inset,0 0 0 3px #0171e34d inset}html[dir=rtl] .mlyn8fsvk{box-shadow:0 0 0 1px #0064e0 inset,0 0 0 3px #0171e34d inset}.mlybwr872{box-shadow:0 0 0 2px #0064e0}html:not([dir=rtl]) .mly1kmqopl{box-shadow:0 0 5px #0000001a,0 0 1px #0000001a}html[dir=rtl] .mly1kmqopl{box-shadow:0 0 5px #0000001a,0 0 1px #0000001a}html:not([dir=rtl]) .mly5n1uv4{box-shadow:0 1px 2px #0000001a,0 2px 12px #0000001a}html[dir=rtl] .mly5n1uv4{box-shadow:0 1px 2px #0000001a,0 2px 12px #0000001a}.mly1a3rnpv{box-shadow:0 1px 5px 1px #0000001a}html:not([dir=rtl]) .mly17fq3gk{box-shadow:0 2px 12px #0000001a,0 1px 2px #0000001a}html[dir=rtl] .mly17fq3gk{box-shadow:0 2px 12px #0000001a,0 1px 2px #0000001a}.mlyx2l43u{box-shadow:0 2px 12px 0 var(--mlyz6dflh)}.mly1gnnqk1{box-shadow:none}.mlyg48p7p{box-shadow:#0171e34d 0 0 0 3px inset}.mly9f619{box-sizing:border-box}.mlyayvuls{color:#000}.mly1aejobo{color:#0064e0}.mly1v5ugh9{color:#505050}.mly358b0h{color:#909090}.mly1e2nbdu{color:red}.mly198oq2i{color:#3e9efb!important}.mlyizdh9v{color:#5f6368}.mlykfrnou{color:#0064e0}.mlyj5j7qc{color:#647685}.mly1rs82da{color:#dde2e8}.mly183j0n7{color:#e4e6eb}.mly1dhlylr{color:#050505}.mly19co3pv{color:transparent}.mly1pc1dlx{color:var(--malloy-composer-form-foreground,#5f6368)}.mly1r0d382{color:var(--mly130oqjo)}.mly1xre2ib{color:var(--mly13n7235)}.mlywzxoxx{color:var(--mly16ir2n5)}.mly1l99qkd{color:var(--mly176ansx)}.mly1evcnq1{color:var(--mly1css67u)}.mly1tw9ct1{color:var(--mly1dryxz7)}.mly1h091fy{color:var(--mly1fea1fg)}.mly1kiansi{color:var(--mly1gq6bli)}.mly1mguc6l{color:var(--mly1hmjrsb)}.mlyaerthn{color:var(--mly1hpdckv)}.mly9dwj6z{color:var(--mly1i3blw4)}.mlyann5r3{color:var(--mly1jphivy)}.mly12lmysb{color:var(--mly1ltarg1)}.mly1ard1hs{color:var(--mly1ojyoay)}.mly1jwwhvr{color:var(--mly1qcfjts)}.mly1ue28sr{color:var(--mly231nev)}.mlyydnxy5{color:var(--mly3ib3qi)}.mly15jt5ur{color:var(--mly5m5edj)}.mly1ywypuw{color:var(--mly6i1qgk)}.mly1p68tcb{color:var(--mly8s4nhd)}.mly109d434{color:var(--mlybq1dnb)}.mly1nwq7qm{color:var(--mlyf25c1a)}.mly1q8pm5h{color:var(--mlyhoywqa)}.mlywn9h7t{color:var(--mlyvygx4q)}.mly16un6j3{color:var(--mlywh4rgx)}.mlyuk6yi3{color:var(--mlyxo3nik)}.mly7neac5{color:var(--mlyz9tc12)}.mlyt0e3qv{cursor:default}.mly7eptgl{cursor:ew-resize}.mly1ipiool{cursor:initial}.mly1ypdohk{cursor:pointer}.mly104kibb{display:-webkit-box}.mly1lliihq{display:block}.mly78zum5{display:flex}.mlyrvj5dj{display:grid}.mly1rg5ohu{display:inline-block}.mly3nfvp2{display:inline-flex}.mlywz0xwf{display:inline-grid}.mly1s85apg{display:none}.mly1vsucm1{display:var(--mlynfhokh)}.mly2b4tyj{display:var(--mlyvpnzvp)}.mlydt5ytf{flex-direction:column}.mly1q0g3np{flex-direction:row}.mly1iyjqo2{flex-grow:1}.mly2lah0s{flex-shrink:0}.mly1a02dak{flex-wrap:wrap}.mly6icuqf{font-family:sans-serif}.mly1rj5sg5{font-family:SF Pro Text,-apple-system,system-ui,sans-serif}.mly12xrqmb{font-family:var(--malloy-composer-fontFamily,sans-serif)}.mlyfifm61{font-size:12px}.mlyif65rj{font-size:14px}.mly1j61zf2{font-size:16px}.mlymhiqyu{font-size:var(--malloy-composer-fontSize,14px)}.mly64z8l9{font-size:var(--malloy-composer-menu-fontSize,14px)}.mly1j61x8r{font-style:normal}.mlyo1l8bm{font-weight:400}.mly1s688f{font-weight:600}.mly1xlr1w8,.mly117nqv4{font-weight:700}.mly1fcty0u{font-weight:400}.mly1mt1orb{grid-auto-flow:column}.mlysd5ean{grid-auto-rows:max-content}.mly15396mt{grid-template-columns:100px auto 100px}.mly52fmzj{grid-template-columns:1fr auto}.mly1g3yg12{grid-template-columns:auto 1fr auto}.mlybyjr8{grid-template-columns:auto}.mly16kridx{grid-template-columns:min-content 1fr min-content}.mlyl56j7k{justify-content:center}.mly13a6bvl{justify-content:flex-end}.mly1nhvcw1{justify-content:flex-start}.mly1rfj78v{justify-content:left}.mly1lvf691{justify-content:right}.mly1l1ennw{justify-content:space-around}.mly1qughib{justify-content:space-between}.mlylqzeqv{justify-content:start}.mly11e9jwx{leading-trim:both}.mly1gu5id8{letter-spacing:-.24px}.mly12oo3zp{letter-spacing:0}.mly1d3mw78{line-height:16px}.mly1rl49lg{line-height:2.2em}.mly1fc57z9{line-height:20px}.mly1o2sk6j{line-height:24px}.mly1vqud6w{opacity:70%}.mly1d3ksz1{opacity:var(--mly1by112x)}.mly15sj6ns{opacity:var(--mlyri8z08)}.mly47corl{pointer-events:none}.mly10l6tqk{position:absolute}.mlyixxii4{position:fixed}.mly1n2onr6{position:relative}.mly7wzq59{position:sticky}.mly2b8uid{text-align:center}.mlydpxx8g{text-align:left}.mly1vqy1sf{text-edge:cap}.mlylyipyv{text-overflow:ellipsis}.mly6mezaz{text-transform:none}.mly87ps6o{user-select:none}.mlyxymvpz{vertical-align:middle}.mly1n8ftqi{vertical-align:text-top}.mly16dsc37{vertical-align:top}.mlylshs6z{visibility:hidden}.mlynpuxes{visibility:visible}.mlyuxw1ft{white-space:nowrap}.mly126k92a{white-space:pre-wrap}.mly1so62im{will-change:transform}.mly1vvkbs{word-wrap:break-word}.mly35i7{writing-mode:sideways-lr}.mly1ja2u2z{z-index:0}.mly1vjfegm{z-index:1}.mly11uqc5h{z-index:100}.mlyhtitgo{z-index:2}.mly14vaotu:is([data-state=active]){background-color:var(--mly1bs2mf7)}.mlyqweix6:is([data-disabled]){color:var(--mly1qcfjts)}.mlyb0tsu4:is([data-state=active]){color:var(--mly883cce)}.mly5ezrf1:is([data-disabled]){cursor:not-allowed}.mly1uifvsu:is([data-state=active]){font-weight:700}.mly1s07b3s:disabled{cursor:not-allowed}.mly1haqvef:hover{background-color:#dde2e8}.mlyjg9ulk:hover{background-color:#efefef}.mlyt89l8w:hover{background-color:var(--malloy-composer-form-focusBackground,#f0f6ff)}.mlyk1j4u7:hover{background-color:var(--mly4a29vv)}.mlyk1e6ed:hover{box-shadow:#ccd3db4d 0 0 0 3px inset}.mlytw1abo:focus{background-color:#fff}}@layer priority5{.mly1ey2m1c{bottom:0}.mlyqtp20y{height:0}.mly5yr21d{height:100%}.mlypyat2d{height:100px}.mlyn866dk{height:136px}.mly1v9usgg{height:14px}.mlywrnneb{height:16.5px}.mlylup9mm{height:16px}.mlymix8c7{height:18px}.mlyjm9jq1{height:1px}.mly1m3v4wt{height:200px}.mlyk2yuxw{height:209.5px}.mly1qx5ct2{height:20px}.mlyxk0z11{height:24px}.mlyd7y6wv{height:26px}.mly1fgtraw{height:28px}.mlyc9qbxq{height:36px}.mlyng8ra{height:60px}.mlydk7pt{height:8px}.mlylo07zb{height:90px}.mlyt7dq6l{height:auto}.mly1ktj5wk{height:calc(100% - 8px)}.mlyu96u03{left:0}.mly12nagc{margin-bottom:4px}.mlyu06os2{margin-bottom:5px}.mly1e56ztr{margin-bottom:8px}.mlyj3b58b{margin-left:0}.mly1tpqehw{margin-left:12px}.mlyq1n1xh{margin-left:16px}.mly1iog12x{margin-left:4px}.mlyet2fuk{margin-left:8px}.mly1yf7rl7{margin-right:0}.mly1xmf6yo{margin-top:8px}.mly1rvw3h8{max-height:136px}.mly1hkcv85{max-height:200px}.mly1xyq3li{max-height:20em}.mlyq3t0pi{max-height:280px}.mlyuyqlj2{max-height:300px}.mly1phlbz0{max-height:400px}.mly1jcbksy{max-height:420px}.mly3d5gib{max-height:50vh}.mly1l4ul0t{max-height:75vh}.mly1kbvuzt{max-height:var(--radix-tooltip-content-available-height)}.mlyqyhut4{max-width:16.5px}.mly1pdpmub{max-width:264px}.mly1jkqq1h{max-width:280px}.mly1dc814f{max-width:350px}.mlyxc7z9f{max-width:360px}.mly1j9u4d2{max-width:400px}.mly1lr1uin{max-width:420px}.mlymcgfsh{max-width:60px}.mly14zcgw3{max-width:75vw}.mly2lwn1j{min-height:0}.mly4x6u8j{min-width:16.5px}.mlygc0pbm{min-width:1px}.mlyt4ypqs{min-width:20px}.mlyytlacd{min-width:224px}.mlylm99nl{min-width:240px}.mly2ixbly{min-width:250px}.mlyfvyar9{min-width:60px}.mly1onzeue{min-width:95px}.mly1odjw0f{overflow-y:auto}.mly18d9i69{padding-bottom:0}.mly1l90r2v{padding-bottom:16px}.mlyjkvuk6{padding-bottom:4px}.mlywib8y2{padding-bottom:8px}.mlynm25rq{padding-left:16px}.mly6wrskw{padding-left:4px}.mly163pfp{padding-left:8px}.mlymzs88n{padding-right:4px}.mlyy13l1i{padding-right:8px}.mly1nn3v0j{padding-top:2px}.mly1iorvi4{padding-top:4px}.mly123j3cw{padding-top:5px}.mly1y1aw1k{padding-top:8px}.mly1bkpikb{right:-2px}.mly3m8u43{right:0}.mly13vifvy{top:0}.mlynalus7{width:0}.mlyh8yej3{width:100%}.mlynrytzq{width:10em}.mly6jxa94{width:14px}.mly18kybhu{width:15em}.mlyjxf2f8{width:16.5px}.mly1kky2od{width:16px}.mly1xp8n7a{width:18px}.mly1i1rx1s{width:1px}.mlyw4jnvo{width:20px}.mlyvy4d1p{width:24px}.mly1f1nlb9{width:25%}.mlyqyf9gi{width:250px}.mly1hfn5x7{width:260px}.mlygd8bvy{width:28px}.mlybl57os{width:323px}.mlyxsgkw5{width:350px}.mly869kya{width:5.5em}.mly1ftt334{width:5px}.mly14rvwrp{width:600px}.mly1247r65{width:60px}.mly1xc55vz{width:8px}.mlym6i5cn{width:90%}.mly10lvyaf{width:calc(100% - 12px)}.mly1rxuhir{width:calc(100% - 22px)}.mly112rgfc{width:calc(100% - 40)}.mly1g65f5b{width:var(--radix-tooltip-trigger-width)}}@layer priority6{.mly1njml60::placeholder{color:#4e606f}}@layer priority1,priority2,priority3,priority4,priority5,priority6;@layer priority1{:root,.mly16bcggl{--mly1rtpqm4:rgba(10, 19, 23, .2);--mlywmj25p:rgba(121, 82, 255, .2);--mly1f95ebd:rgba(36, 187, 94, .2);--mly1jva6ta:rgba(3, 167, 215, .2);--mly1yr7ch6:rgba(241, 244, 247, 1);--mly1bs2mf7:rgba(0, 130, 251, .2);--mlywj8cgu:rgba(11, 153, 31, .2);--mlyhsum04:rgba(226, 164, 0, .2);--mly19gk0g3:rgba(227, 25, 59, .2);--mlyrbis2b:rgba(204, 211, 219, 1);--mly1eayp21:rgba(230, 235, 239, 1);--mly1bn1nfc:rgba(37, 54, 63, 1)}:root,.mly182du4u{--mly231nev:rgba(10, 19, 23, 1);--mly1i3blw4:rgba(78, 96, 111, 1);--mly16ir2n5:rgba(164, 176, 188, 1);--mly883cce:rgba(0, 100, 224, 1);--mlyy3jzoq:rgba(255, 255, 255, 1);--mly7qnfvx:rgba(10, 19, 23, 1);--mly3ib3qi:rgba(62, 6, 151, 1);--mlyndhcph:rgba(9, 68, 31, 1);--mlykotp7t:rgba(1, 73, 117, 1);--mlyf25c1a:rgba(66, 133, 244, 1)}:root,.mlyacbved{--mly8s4nhd:rgba(10, 19, 23, 1);--mly130oqjo:rgba(78, 96, 111, 1);--mlywh4rgx:rgba(164, 176, 188, 1);--mly1gq6bli:rgba(255, 255, 255, 1);--mly1jphivy:rgba(164, 176, 188, 1);--mly6i1qgk:rgba(121, 82, 255, 1);--mly1css67u:rgba(7, 109, 41, 1);--mly1fea1fg:rgba(2, 141, 193, 1);--mlyz9tc12:rgba(233, 175, 8, 1);--mly1dryxz7:rgba(0, 100, 224, 1);--mly176ansx:rgba(13, 134, 38, 1);--mlybq1dnb:rgba(227, 25, 59, 1)}:root,.mlyugude9{--mlyiz2tia:#0064E0;--mly1nffz32:#0082FB32;--mly1mq821i:white;--mlyz6dflh:rgba(0, 0, 0, .1);--mly4a29vv:#0000000D;--mlyhoywqa:#050505;--mly1qcfjts:#A4B0BC}:root,.mly18uf1kx{--mlynfhokh:none}:root,.mly11fl7i8{--mlyvpnzvp:none}.mly10cf5cp{--mly10mhzaa:var(--mly1f95ebd)}.mlykvi9ht{--mly10mhzaa:var(--mly1jva6ta)}.mly1rve117{--mly10mhzaa:var(--mly1rtpqm4)}.mlyihc5ie{--mly10mhzaa:var(--mlywmj25p)}.mly8bgh0r{--mly13n7235:var(--mly231nev)}.mly1r5zvhd{--mly13n7235:var(--mly3ib3qi)}.mlys5r2en{--mly13n7235:var(--mlykotp7t)}.mly1u6t2w6{--mly13n7235:var(--mlyndhcph)}.mlynu5hmx{--mly1by112x:0}.mly15rdse5{--mly1hmjrsb:var(--mly8s4nhd)}.mly5xbp4t{--mly1hpdckv:var(--mly231nev)}.mly3mt86g{--mly1hpdckv:var(--mlyy3jzoq)}.mly5deeek{--mly1ltarg1:var(--mly231nev)}.mlybcavtu{--mly1ojyoay:var(--mly231nev)}.mlywis56f{--mly1ojyoay:var(--mly3ib3qi)}.mly1eg6ybj{--mly1ojyoay:var(--mlykotp7t)}.mlyy280wj{--mly1ojyoay:var(--mlyndhcph)}.mly7ouyw2{--mly5m5edj:var(--mly1i3blw4)}.mlym9y5t7{--mlynfhokh:block}.mly28fmrt{--mlynfhokh:none}.mly1bo1i26{--mlyri8z08:0}.mly1ae5hkt{--mlyvpnzvp:block}.mly11ogjb6{--mlyvpnzvp:none}.mlyf8wvcd{--mlyvygx4q:var(--mly1css67u)}.mlyrtwgpv{--mlyvygx4q:var(--mly1fea1fg)}.mly1f8soc4{--mlyvygx4q:var(--mly6i1qgk)}.mly1izbou4{--mlyvygx4q:var(--mly8s4nhd)}.mly1n5rdk7{--mlyxo3nik:var(--mly1gq6bli)}.mlypfd894{--mlyxo3nik:var(--mly8s4nhd)}@keyframes mlyqng64z-B{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.mly1z060rf:is([data-disabled]){--mly1hmjrsb:var(--mlywh4rgx)}.mly1jacekv:is([data-disabled]){--mly1ltarg1:var(--mly16ir2n5)}.mly7h4d18:is([data-disabled]){--mly5m5edj:var(--mly16ir2n5)}.mly1iu3zmn:disabled{--mly1hpdckv:var(--mly1i3blw4)}.mly13vk70h:disabled{--mly1hpdckv:var(--mlyy3jzoq)}.mly1dsjhx:disabled{--mlyxo3nik:var(--mly1gq6bli)}.mlyiv1q3g:disabled{--mlyxo3nik:var(--mlywh4rgx)}.mly1u5txqc:hover{--mly1by112x:.3}.mly1x0xcia:hover{--mlynfhokh:block}.mly1fzkygm:hover{--mlyri8z08:.3}.mly1g9of4s:hover{--mlyvpnzvp:block}.mly157rht3:hover{--mlyvpnzvp:inline-flex}}@layer priority2{.mly1o4sr5b{background:#0a1317}.mly3j5mvw{background:#d0d3d7}.mlyo6guvx,.mly17eh757{background:#fff}.mly5uxqc1{background:#0000}.mlyhcrij8{background:#0064e0}.mly1xnbgy5{background:#ccd3db}.mlygqa5hp{background:#e6ebef}.mlyzy8d55{background:#ffffff80}.mlyotlr4g{background:#fff}.mly1md70p1{background:transparent}.mlysu8s4a{background:var(--mly10mhzaa)}.mly1np9qvj{background:var(--mly1eayp21)}.mly1b4wx6v{background:var(--mly1mq821i)}.mly16o7sp0{background:var(--mly1nffz32)}.mlyzkdzjc{border:1px solid #CCD3DB}.mly2yh2zd{border:1px solid #e0e0e0}.mly8fuzfi{border:1px solid #efefef}.mly1dc9p4k{border:1px solid red}.mly27xtdb{border:1px solid rgb(239,239,239)}.mly520xni{border:1px solid rgba(204,211,219,1)}.mlyvckdp7{border:1px solid rgba(230,235,239,1)}.mlyfj9a5l{border:1px solid transparent}.mly1vspu6z{border:1px solid var(--malloy-composer-form-background,#efefef)}.mlyss3vti{border:1px solid var(--malloy-composer-form-border,#ececed)}.mlyv3vvaf{border:1px solid var(--malloy-composer-form-focus,#4285f4)}.mly15q0wj1{border:1px solid var(--malloy-composer-menu-border,#ececed)}.mly1gs6z28{border:none}.mly15r89dc{grid-area:1 / 1}.mly1ghz6dp{margin:0}.mlynfbntj{margin:5px 0}.mly16zck5j{margin:5px}.mlykib98w{margin:8px}.mly1bpp3o7{margin:auto}.mlywp4ipm{padding:0 24px 24px}.mlyehqz9p{padding:0 4px}.mly1l4tkcb{padding:0 8px 8px}.mly1717udv{padding:0}.mly1b4vry6{padding:10px 0}.mlyc7ga6q{padding:12px}.mly1tamke2{padding:16px}.mly1e41zw8{padding:1px 5px}.mlyfvt8nb{padding:2px 12px 2px 6px}.mlybsehbd{padding:2px 3px}.mlyxzb6uj{padding:2px 4px}.mly195ery5{padding:3.75px 7px}.mly1gqu590{padding:3px 10px}.mly34lxi1{padding:3px 3px 3px 10px}.mly92jh8x{padding:4px 0 8px}.mlyztvwtv{padding:4px 0}.mly1fut7tt{padding:4px 12px 12px}.mlytdwleo{padding:4px 12px}.mly9cpjcd,.mlydqdrvq{padding:4px 8px}.mlyfawy5m{padding:4px}.mly17qkr04{padding:5px 0}.mly36usyh{padding:5px 10px}.mly14odnwx{padding:5px}.mly153ncpu{padding:8px 12px}.mlye8ttls{padding:8px}.mly1bw6wve:is([data-highlighted]){background:#0000000d}.mlyamyxth:is([data-state=checked]){background:#0082fb33}.mlyejs3c0:is([data-highlighted]):is([data-state=checked]){background:#0082fb4d}.mly14hn1a8:hover{background:#0000000d}.mly1uceoyp:hover{background:#dde2e8}.mly1vdl2d1:hover{background:#0457cb}.mlywghvya:active{background:#0000001a}.mly1u4cpcs:active{background:#004cbc}.mly1cncicd:active{background:#ccd3db}}@layer priority3{.mlyllpv0l{border-bottom:1px solid #e0e0e0}.mlyv3yj8d{border-bottom:1px solid var(--malloy-color-border,#e0e0e0)}.mly1akygb0{border-color:none}.mly1y5yj0f{border-color:#0064e0}.mly10bk7bj{border-color:var(--malloy-composer-focus,#c3d7f7)}.mly17v018m{border-color:var(--mlyrbis2b)}.mly11zuszs{border-radius:0 0 10px 10px}.mly19ctu66{border-radius:0 4px 4px 0}.mlyq516e8{border-radius:10px 10px 0 0}.mly1q4ynmn{border-radius:10px}.mly4pepcl{border-radius:12px}.mly18zih8k{border-radius:3px}.mlytah5vv{border-radius:4px 0 0 4px}.mly12oqio5{border-radius:4px}.mly1f96onm{border-radius:50px}.mly1sxf85j{border-radius:5px}.mly1kogg8i{border-radius:6px}.mlyur7f20{border-radius:8px}.mly10hpsqq{border-radius:9999px}.mly1pjcqnp{border-radius:inherit}.mlyfuqftd{border-right:1px solid #C8CCD2}.mly1roky18{border-right:1px solid rgba(204,211,219,1)}.mlyng3xce{border-style:none}.mly1y0btm7{border-style:solid}.mlye536se{border-top:1px solid #e0e0e0}.mly77krkw{border-top:1px solid var(--malloy-composer-form-border,#ececec)}.mlyc342km{border-width:0}.mlymkeg23{border-width:1px}.mly3psx0u{flex:0 0 auto}.mly98rzlu{flex:1}.mly883omv{gap:10px}.mlyou54vl{gap:16px}.mly12mrbbr{gap:1px}.mly1665zp3{gap:24px}.mly195vfkc{gap:2px}.mly1ed6fcf{gap:3px}.mly1jnr06f{gap:4px}.mly1nejdyq{gap:5px}.mly167g77z{gap:8px}.mly623te4{grid-column:span 2}.mly1a80n4u{grid-column:span 3}.mly1a2a7pz{outline:none}.mlyysyzu8{overflow:auto}.mlyb3r6kr{overflow:hidden}.mly1rea2x4{overflow:visible}.mly1ku5rj1{place-items:center}.mly1hl2dhg{text-decoration:none}.mly14znju7{transition:opacity .5s ease}.mly1fxp9ov:hover{border-color:var(--malloy-composer-focus,#c3d7f7)}.mlyetl2wx:focus{border-color:#4285f4}}@layer priority4{.mly1ua5tub{-webkit-box-orient:vertical}.mly1gzmk7r{-webkit-line-clamp:3}.mly6s0dn4{align-items:center}.mlypqajaz{align-items:end}.mly1cy8zhl{align-items:flex-start}.mly7a106z{align-items:start}.mly1071x5a{align-items:top}.mly7v9bd0{animation-duration:.75s}.mlya4qsjk{animation-iteration-count:infinite}.mly8jsasv{animation-name:mlyqng64z-B}.mly1esw782{animation-timing-function:linear}.mlylp1x4z{backface-visibility:hidden}.mlygmb8sa{background-color:#e6ebef}.mly83z2og{background-color:#fff}.mly1vzefiq{background-color:#f0f6ff}.mlyy9rfsq{background-color:#e6ebef}.mly10cdfl8{background-color:#f1f4f7}.mly1gzqxud{background-color:#fff}.mly1jmk7v{background-color:#25363f}.mlyjbqb8w{background-color:transparent}.mly9nb4jr{background-color:var(--malloy-color-background,white)}.mly1jjku57{background-color:var(--malloy-composer-form-disabledBackground,#f6f6f6)}.mly6wxqrg{background-color:var(--malloy-composer-form-focusBackground,#f0f6ff)}.mly12azwz9{background-color:var(--malloy-composer-menu-background,white)}.mlyrkwa2d{background-color:var(--mly19gk0g3)}.mly1pnbjq1{background-color:var(--mly1bs2mf7)}.mly12nb83b{background-color:var(--mly1yr7ch6)}.mly1x7w6om{background-color:var(--mlyhsum04)}.mly1x3oq6j{background-color:var(--mlywj8cgu)}.mly12peec7{background-color:#fff}.mly1mwwwfo{border-collapse:collapse}.mlygbc89k{box-shadow:0 0 0 1px #ccd3db}html:not([dir=rtl]) .mlyn8fsvk{box-shadow:0 0 0 1px #0064e0 inset,0 0 0 3px #0171e34d inset}html[dir=rtl] .mlyn8fsvk{box-shadow:0 0 0 1px #0064e0 inset,0 0 0 3px #0171e34d inset}.mlybwr872{box-shadow:0 0 0 2px #0064e0}html:not([dir=rtl]) .mly1kmqopl{box-shadow:0 0 5px #0000001a,0 0 1px #0000001a}html[dir=rtl] .mly1kmqopl{box-shadow:0 0 5px #0000001a,0 0 1px #0000001a}html:not([dir=rtl]) .mly5n1uv4{box-shadow:0 1px 2px #0000001a,0 2px 12px #0000001a}html[dir=rtl] .mly5n1uv4{box-shadow:0 1px 2px #0000001a,0 2px 12px #0000001a}.mly1a3rnpv{box-shadow:0 1px 5px 1px #0000001a}html:not([dir=rtl]) .mly17fq3gk{box-shadow:0 2px 12px #0000001a,0 1px 2px #0000001a}html[dir=rtl] .mly17fq3gk{box-shadow:0 2px 12px #0000001a,0 1px 2px #0000001a}.mlyx2l43u{box-shadow:0 2px 12px 0 var(--mlyz6dflh)}.mly1gnnqk1{box-shadow:none}.mlyg48p7p{box-shadow:#0171e34d 0 0 0 3px inset}.mly9f619{box-sizing:border-box}.mlyayvuls{color:#000}.mly1aejobo{color:#0064e0}.mly1v5ugh9{color:#505050}.mly358b0h{color:#909090}.mly1e2nbdu{color:red}.mly198oq2i{color:#3e9efb!important}.mlyizdh9v{color:#5f6368}.mlykfrnou{color:#0064e0}.mlyj5j7qc{color:#647685}.mly1rs82da{color:#dde2e8}.mly183j0n7{color:#e4e6eb}.mly1dhlylr{color:#050505}.mly19co3pv{color:transparent}.mly1pc1dlx{color:var(--malloy-composer-form-foreground,#5f6368)}.mly1r0d382{color:var(--mly130oqjo)}.mly1xre2ib{color:var(--mly13n7235)}.mlywzxoxx{color:var(--mly16ir2n5)}.mly1l99qkd{color:var(--mly176ansx)}.mly1evcnq1{color:var(--mly1css67u)}.mly1tw9ct1{color:var(--mly1dryxz7)}.mly1h091fy{color:var(--mly1fea1fg)}.mly1kiansi{color:var(--mly1gq6bli)}.mly1mguc6l{color:var(--mly1hmjrsb)}.mlyaerthn{color:var(--mly1hpdckv)}.mly9dwj6z{color:var(--mly1i3blw4)}.mlyann5r3{color:var(--mly1jphivy)}.mly12lmysb{color:var(--mly1ltarg1)}.mly1ard1hs{color:var(--mly1ojyoay)}.mly1jwwhvr{color:var(--mly1qcfjts)}.mly1ue28sr{color:var(--mly231nev)}.mlyydnxy5{color:var(--mly3ib3qi)}.mly15jt5ur{color:var(--mly5m5edj)}.mly1ywypuw{color:var(--mly6i1qgk)}.mly1p68tcb{color:var(--mly8s4nhd)}.mly109d434{color:var(--mlybq1dnb)}.mly1nwq7qm{color:var(--mlyf25c1a)}.mly1q8pm5h{color:var(--mlyhoywqa)}.mlywn9h7t{color:var(--mlyvygx4q)}.mly16un6j3{color:var(--mlywh4rgx)}.mlyuk6yi3{color:var(--mlyxo3nik)}.mly7neac5{color:var(--mlyz9tc12)}.mlyt0e3qv{cursor:default}.mly7eptgl{cursor:ew-resize}.mly1ipiool{cursor:initial}.mly1ypdohk{cursor:pointer}.mly104kibb{display:-webkit-box}.mly1lliihq{display:block}.mly78zum5{display:flex}.mlyrvj5dj{display:grid}.mly1rg5ohu{display:inline-block}.mly3nfvp2{display:inline-flex}.mlywz0xwf{display:inline-grid}.mly1s85apg{display:none}.mly1vsucm1{display:var(--mlynfhokh)}.mly2b4tyj{display:var(--mlyvpnzvp)}.mlydt5ytf{flex-direction:column}.mly1q0g3np{flex-direction:row}.mly1iyjqo2{flex-grow:1}.mly2lah0s{flex-shrink:0}.mly1a02dak{flex-wrap:wrap}.mly6icuqf{font-family:sans-serif}.mly1rj5sg5{font-family:SF Pro Text,-apple-system,system-ui,sans-serif}.mly12xrqmb{font-family:var(--malloy-composer-fontFamily,sans-serif)}.mlyfifm61{font-size:12px}.mlyif65rj{font-size:14px}.mly1j61zf2{font-size:16px}.mlymhiqyu{font-size:var(--malloy-composer-fontSize,14px)}.mly64z8l9{font-size:var(--malloy-composer-menu-fontSize,14px)}.mly1j61x8r{font-style:normal}.mlyo1l8bm{font-weight:400}.mly1s688f{font-weight:600}.mly1xlr1w8,.mly117nqv4{font-weight:700}.mly1fcty0u{font-weight:400}.mly1mt1orb{grid-auto-flow:column}.mlysd5ean{grid-auto-rows:max-content}.mly15396mt{grid-template-columns:100px auto 100px}.mly52fmzj{grid-template-columns:1fr auto}.mly1g3yg12{grid-template-columns:auto 1fr auto}.mlybyjr8{grid-template-columns:auto}.mly16kridx{grid-template-columns:min-content 1fr min-content}.mlyl56j7k{justify-content:center}.mly13a6bvl{justify-content:flex-end}.mly1nhvcw1{justify-content:flex-start}.mly1rfj78v{justify-content:left}.mly1lvf691{justify-content:right}.mly1l1ennw{justify-content:space-around}.mly1qughib{justify-content:space-between}.mlylqzeqv{justify-content:start}.mly11e9jwx{leading-trim:both}.mly1gu5id8{letter-spacing:-.24px}.mly12oo3zp{letter-spacing:0}.mly1d3mw78{line-height:16px}.mly1rl49lg{line-height:2.2em}.mly1fc57z9{line-height:20px}.mly1o2sk6j{line-height:24px}.mly1vqud6w{opacity:70%}.mly1d3ksz1{opacity:var(--mly1by112x)}.mly15sj6ns{opacity:var(--mlyri8z08)}.mly47corl{pointer-events:none}.mly10l6tqk{position:absolute}.mlyixxii4{position:fixed}.mly1n2onr6{position:relative}.mly7wzq59{position:sticky}.mly2b8uid{text-align:center}.mlydpxx8g{text-align:left}.mly1vqy1sf{text-edge:cap}.mlylyipyv{text-overflow:ellipsis}.mly6mezaz{text-transform:none}.mly87ps6o{user-select:none}.mlyxymvpz{vertical-align:middle}.mly1n8ftqi{vertical-align:text-top}.mly16dsc37{vertical-align:top}.mlylshs6z{visibility:hidden}.mlynpuxes{visibility:visible}.mlyuxw1ft{white-space:nowrap}.mly126k92a{white-space:pre-wrap}.mly1so62im{will-change:transform}.mly1vvkbs{word-wrap:break-word}.mly35i7{writing-mode:sideways-lr}.mly1ja2u2z{z-index:0}.mly1vjfegm{z-index:1}.mly11uqc5h{z-index:100}.mlyhtitgo{z-index:2}.mly14vaotu:is([data-state=active]){background-color:var(--mly1bs2mf7)}.mlyqweix6:is([data-disabled]){color:var(--mly1qcfjts)}.mlyb0tsu4:is([data-state=active]){color:var(--mly883cce)}.mly5ezrf1:is([data-disabled]){cursor:not-allowed}.mly1uifvsu:is([data-state=active]){font-weight:700}.mly1s07b3s:disabled{cursor:not-allowed}.mly1haqvef:hover{background-color:#dde2e8}.mlyjg9ulk:hover{background-color:#efefef}.mlyt89l8w:hover{background-color:var(--malloy-composer-form-focusBackground,#f0f6ff)}.mlyk1j4u7:hover{background-color:var(--mly4a29vv)}.mlyk1e6ed:hover{box-shadow:#ccd3db4d 0 0 0 3px inset}.mlytw1abo:focus{background-color:#fff}}@layer priority5{.mly1ey2m1c{bottom:0}.mlyqtp20y{height:0}.mly5yr21d{height:100%}.mlypyat2d{height:100px}.mlyn866dk{height:136px}.mly1v9usgg{height:14px}.mlywrnneb{height:16.5px}.mlylup9mm{height:16px}.mlymix8c7{height:18px}.mlyjm9jq1{height:1px}.mly1m3v4wt{height:200px}.mlyk2yuxw{height:209.5px}.mly1qx5ct2{height:20px}.mlyxk0z11{height:24px}.mlyd7y6wv{height:26px}.mly1fgtraw{height:28px}.mlyc9qbxq{height:36px}.mlyng8ra{height:60px}.mlydk7pt{height:8px}.mlylo07zb{height:90px}.mlyt7dq6l{height:auto}.mly1ktj5wk{height:calc(100% - 8px)}.mlyu96u03{left:0}.mly12nagc{margin-bottom:4px}.mlyu06os2{margin-bottom:5px}.mly1e56ztr{margin-bottom:8px}.mlyj3b58b{margin-left:0}.mly1tpqehw{margin-left:12px}.mlyq1n1xh{margin-left:16px}.mly1iog12x{margin-left:4px}.mlyet2fuk{margin-left:8px}.mly1yf7rl7{margin-right:0}.mly1xmf6yo{margin-top:8px}.mly1rvw3h8{max-height:136px}.mly1hkcv85{max-height:200px}.mly1xyq3li{max-height:20em}.mlyq3t0pi{max-height:280px}.mlyuyqlj2{max-height:300px}.mly1phlbz0{max-height:400px}.mly1jcbksy{max-height:420px}.mly3d5gib{max-height:50vh}.mly1l4ul0t{max-height:75vh}.mly1kbvuzt{max-height:var(--radix-tooltip-content-available-height)}.mlyqyhut4{max-width:16.5px}.mly1pdpmub{max-width:264px}.mly1jkqq1h{max-width:280px}.mly1dc814f{max-width:350px}.mlyxc7z9f{max-width:360px}.mly1j9u4d2{max-width:400px}.mly1lr1uin{max-width:420px}.mlymcgfsh{max-width:60px}.mly14zcgw3{max-width:75vw}.mly2lwn1j{min-height:0}.mly4x6u8j{min-width:16.5px}.mlygc0pbm{min-width:1px}.mlyt4ypqs{min-width:20px}.mlyytlacd{min-width:224px}.mlylm99nl{min-width:240px}.mly2ixbly{min-width:250px}.mlyfvyar9{min-width:60px}.mly1onzeue{min-width:95px}.mly1odjw0f{overflow-y:auto}.mly18d9i69{padding-bottom:0}.mly1l90r2v{padding-bottom:16px}.mlyjkvuk6{padding-bottom:4px}.mlywib8y2{padding-bottom:8px}.mlynm25rq{padding-left:16px}.mly6wrskw{padding-left:4px}.mly163pfp{padding-left:8px}.mlymzs88n{padding-right:4px}.mlyy13l1i{padding-right:8px}.mly1nn3v0j{padding-top:2px}.mly1iorvi4{padding-top:4px}.mly123j3cw{padding-top:5px}.mly1y1aw1k{padding-top:8px}.mly1bkpikb{right:-2px}.mly3m8u43{right:0}.mly13vifvy{top:0}.mlynalus7{width:0}.mlyh8yej3{width:100%}.mlynrytzq{width:10em}.mly6jxa94{width:14px}.mly18kybhu{width:15em}.mlyjxf2f8{width:16.5px}.mly1kky2od{width:16px}.mly1xp8n7a{width:18px}.mly1i1rx1s{width:1px}.mlyw4jnvo{width:20px}.mlyvy4d1p{width:24px}.mly1f1nlb9{width:25%}.mlyqyf9gi{width:250px}.mly1hfn5x7{width:260px}.mlygd8bvy{width:28px}.mlybl57os{width:323px}.mlyxsgkw5{width:350px}.mly869kya{width:5.5em}.mly1ftt334{width:5px}.mly14rvwrp{width:600px}.mly1247r65{width:60px}.mly1xc55vz{width:8px}.mlym6i5cn{width:90%}.mly10lvyaf{width:calc(100% - 12px)}.mly1rxuhir{width:calc(100% - 22px)}.mly112rgfc{width:calc(100% - 40)}.mly1g65f5b{width:var(--radix-tooltip-trigger-width)}}@layer priority6{.mly1njml60::placeholder{color:#4e606f}}div[data-radix-popper-content-wrapper]{z-index:100!important}.w-md-editor-bar{position:absolute;cursor:s-resize;right:0;bottom:0;margin-top:-11px;margin-right:0;width:14px;z-index:3;height:10px;border-radius:0 0 3px;-webkit-user-select:none;user-select:none}.w-md-editor-bar svg{display:block;margin:0 auto}.w-md-editor-area{overflow:auto;border-radius:5px}.w-md-editor-text{min-height:100%;position:relative;text-align:left;white-space:pre-wrap;word-break:keep-all;overflow-wrap:break-word;box-sizing:border-box;padding:10px;margin:0;font-size:14px!important;line-height:18px!important;font-variant-ligatures:common-ligatures}.w-md-editor-text-pre,.w-md-editor-text-input,.w-md-editor-text>.w-md-editor-text-pre{margin:0;border:0;background:none;box-sizing:inherit;display:inherit;font-family:inherit;font-family:var(--md-editor-font-family)!important;font-size:inherit;font-style:inherit;font-variant-ligatures:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;tab-size:inherit;text-indent:inherit;text-rendering:inherit;text-transform:inherit;white-space:inherit;overflow-wrap:inherit;word-break:inherit;word-break:normal;padding:0}.w-md-editor-text-pre{position:relative;margin:0!important;pointer-events:none;background-color:transparent!important}.w-md-editor-text-pre>code{padding:0!important;font-family:var(--md-editor-font-family)!important;font-size:14px!important;line-height:18px!important}.w-md-editor-text-input{position:absolute;top:0;left:0;height:100%;width:100%;resize:none;color:inherit;overflow:hidden;outline:0;padding:inherit;-webkit-font-smoothing:antialiased;-webkit-text-fill-color:transparent}.w-md-editor-text-input:empty{-webkit-text-fill-color:inherit!important}.w-md-editor-text-pre,.w-md-editor-text-input{word-wrap:pre;word-break:break-word;white-space:pre-wrap}@media all and (-ms-high-contrast: none),(-ms-high-contrast: active){.w-md-editor-text-input{color:transparent!important}.w-md-editor-text-input::selection{background-color:#accef7!important;color:transparent!important}}.w-md-editor-text-pre .punctuation{color:var(--color-prettylights-syntax-comment, #8b949e)!important}.w-md-editor-text-pre .token.url,.w-md-editor-text-pre .token.content{color:var(--color-prettylights-syntax-constant, #0550ae)!important}.w-md-editor-text-pre .token.title.important{color:var(--color-prettylights-syntax-markup-bold, #24292f)}.w-md-editor-text-pre .token.code-block .function{color:var(--color-prettylights-syntax-entity, #8250df)}.w-md-editor-text-pre .token.bold{font-weight:unset!important}.w-md-editor-text-pre .token.title{line-height:unset!important;font-size:unset!important;font-weight:unset!important}.w-md-editor-text-pre .token.code.keyword{color:var(--color-prettylights-syntax-constant, #0550ae)!important}.w-md-editor-text-pre .token.strike,.w-md-editor-text-pre .token.strike .content{color:var(--color-prettylights-syntax-markup-deleted-text, #82071e)!important}.w-md-editor-toolbar-child{position:absolute;border-radius:3px;box-shadow:0 0 0 1px var(--md-editor-box-shadow-color),0 0 0 var(--md-editor-box-shadow-color),0 1px 1px var(--md-editor-box-shadow-color);background-color:var(--md-editor-background-color);z-index:1;display:none}.w-md-editor-toolbar-child.active{display:block}.w-md-editor-toolbar-child .w-md-editor-toolbar{border-bottom:0;padding:3px;border-radius:3px}.w-md-editor-toolbar-child .w-md-editor-toolbar ul>li{display:block}.w-md-editor-toolbar-child .w-md-editor-toolbar ul>li button{width:-webkit-fill-available;height:initial;box-sizing:border-box;padding:3px 4px 2px;margin:0}.w-md-editor-toolbar{border-bottom:1px solid var(--md-editor-box-shadow-color);background-color:var(--md-editor-background-color);padding:3px;display:flex;justify-content:space-between;align-items:center;border-radius:3px 3px 0 0;-webkit-user-select:none;user-select:none;flex-wrap:wrap}.w-md-editor-toolbar.bottom{border-bottom:0px;border-top:1px solid var(--md-editor-box-shadow-color);border-radius:0 0 3px 3px}.w-md-editor-toolbar ul,.w-md-editor-toolbar li{margin:0;padding:0;list-style:none;line-height:initial}.w-md-editor-toolbar li{display:inline-block;font-size:14px}.w-md-editor-toolbar li+li{margin:0}.w-md-editor-toolbar li>button{border:none;height:20px;line-height:14px;background:none;padding:4px;margin:0 1px;border-radius:2px;text-transform:none;font-weight:400;overflow:visible;outline:none;cursor:pointer;transition:all .3s;white-space:nowrap;color:var(--color-fg-default)}.w-md-editor-toolbar li>button:hover,.w-md-editor-toolbar li>button:focus{background-color:var(--color-neutral-muted);color:var(--color-accent-fg)}.w-md-editor-toolbar li>button:active{background-color:var(--color-neutral-muted);color:var(--color-danger-fg)}.w-md-editor-toolbar li>button:disabled{color:var(--md-editor-box-shadow-color);cursor:not-allowed}.w-md-editor-toolbar li>button:disabled:hover{background-color:transparent;color:var(--md-editor-box-shadow-color)}.w-md-editor-toolbar li.active>button{color:var(--color-accent-fg);background-color:var(--color-neutral-muted)}.w-md-editor-toolbar-divider{height:14px;width:1px;margin:-3px 3px 0!important;vertical-align:middle;background-color:var(--md-editor-box-shadow-color)}.w-md-editor{text-align:left;border-radius:3px;padding-bottom:1px;position:relative;color:var(--color-fg-default);--md-editor-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;--md-editor-background-color: var(--color-canvas-default, #ffffff);--md-editor-box-shadow-color: var(--color-border-default, #d0d7de);box-shadow:0 0 0 1px var(--md-editor-box-shadow-color),0 0 0 var(--md-editor-box-shadow-color),0 1px 1px var(--md-editor-box-shadow-color);background-color:var(--md-editor-background-color);font-family:Helvetica Neue,Helvetica,Arial,sans-serif;display:flex;flex-direction:column}.w-md-editor.w-md-editor-rtl{direction:rtl!important;text-align:right!important}.w-md-editor.w-md-editor-rtl .w-md-editor-preview{right:unset!important;left:0;text-align:right!important;box-shadow:inset -1px 0 0 0 var(--md-editor-box-shadow-color)}.w-md-editor.w-md-editor-rtl .w-md-editor-text{text-align:right!important}.w-md-editor-toolbar{height:fit-content}.w-md-editor-content{height:100%;overflow:auto;position:relative;border-radius:0 0 3px}.w-md-editor .copied{display:none!important}.w-md-editor-input{width:50%;height:100%}.w-md-editor-text-pre>code{word-break:break-word!important;white-space:pre-wrap!important}.w-md-editor-preview{width:50%;box-sizing:border-box;box-shadow:inset 1px 0 0 0 var(--md-editor-box-shadow-color);position:absolute;padding:10px 20px;overflow:auto;top:0;right:0;bottom:0;border-radius:0 0 5px;display:flex;flex-direction:column}.w-md-editor-preview .anchor{display:none}.w-md-editor-preview .contains-task-list li.task-list-item{list-style:none}.w-md-editor-show-preview .w-md-editor-input{width:0%;overflow:hidden;background-color:var(--md-editor-background-color)}.w-md-editor-show-preview .w-md-editor-preview{width:100%;box-shadow:inset 0 0}.w-md-editor-show-edit .w-md-editor-input{width:100%}.w-md-editor-show-edit .w-md-editor-preview{width:0%;padding:0}.w-md-editor-fullscreen{overflow:hidden;position:fixed;z-index:99999;inset:0;height:100%!important}.w-md-editor-fullscreen .w-md-editor-content{height:100%}
|