@nuvin/agent-core 0.2.0-rc.8 → 0.2.0

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.
Files changed (74) hide show
  1. package/dist/VERSION +2 -2
  2. package/dist/agent/index.js +1 -1
  3. package/dist/chunk-D5IVWJHX.js +1 -1
  4. package/dist/chunk-FFIZ6TKW.js +1 -1
  5. package/dist/chunk-GAZGO6N7.js +1 -0
  6. package/dist/chunk-IUZALP6K.js +1 -1
  7. package/dist/chunk-KIIEBXJF.js +1 -0
  8. package/dist/chunk-LIE76IJA.js +1 -1
  9. package/dist/chunk-X7VAACWY.js +1 -1
  10. package/dist/chunk-YNOIG4FD.js +1 -1
  11. package/dist/formats/index.js +1 -1
  12. package/dist/hooks/index.js +1 -1
  13. package/dist/models/index.d.ts +1 -0
  14. package/dist/models/index.js +1 -1
  15. package/dist/shared/index.js +1 -1
  16. package/dist/shared/types.d.ts +25 -7
  17. package/dist/tools/{internal-tool-runtime.d.ts → core/internal-tool-runtime.d.ts} +1 -1
  18. package/dist/tools/core/mock-tool-runtime.d.ts +3 -0
  19. package/dist/tools/core/runtime-manager-tools.d.ts +132 -0
  20. package/dist/tools/{tool-output-offload.d.ts → core/tool-output-offload.d.ts} +1 -1
  21. package/dist/tools/{tools.d.ts → core/tools.d.ts} +1 -1
  22. package/dist/tools/file-editing/anchored-file-edit.d.ts +53 -0
  23. package/dist/tools/file-editing/anchored-file-errors.d.ts +5 -0
  24. package/dist/tools/file-editing/anchored-file-operations.d.ts +38 -0
  25. package/dist/tools/file-editing/anchored-file-read.d.ts +37 -0
  26. package/dist/tools/file-editing/atomic-file-write.d.ts +19 -0
  27. package/dist/tools/file-editing/file-edit-tool.d.ts +166 -0
  28. package/dist/tools/file-editing/file-mutation-coordinator.d.ts +13 -0
  29. package/dist/tools/{file-new-tool.d.ts → file-editing/file-new-tool.d.ts} +5 -2
  30. package/dist/tools/file-editing/file-observation-store.d.ts +40 -0
  31. package/dist/tools/{file-read-tool.d.ts → file-editing/file-read-tool.d.ts} +8 -2
  32. package/dist/tools/file-editing/file-snapshot.d.ts +16 -0
  33. package/dist/tools/file-editing/hashline-file-edit-adapter.d.ts +19 -0
  34. package/dist/tools/file-editing/structured-file-edit-adapter.d.ts +94 -0
  35. package/dist/tools/file-editing/workspace-paths.d.ts +20 -0
  36. package/dist/tools/index.d.ts +43 -34
  37. package/dist/tools/index.js +1 -1
  38. package/dist/tools/{mcp-connection-generation.d.ts → mcp/mcp-connection-generation.d.ts} +1 -1
  39. package/dist/tools/mcp/mcp-tool-adapter.d.ts +72 -0
  40. package/dist/tools/{glob-tool.d.ts → search/glob-tool.d.ts} +2 -2
  41. package/dist/tools/{grep-tool.d.ts → search/grep-tool.d.ts} +2 -2
  42. package/dist/tools/{ls-tool.d.ts → search/ls-tool.d.ts} +2 -2
  43. package/dist/tools/{view-file-tool.d.ts → search/view-file-tool.d.ts} +2 -2
  44. package/dist/tools/{ask-user-tool.d.ts → session/ask-user-tool.d.ts} +4 -4
  45. package/dist/tools/{lsp-tool.d.ts → session/lsp-tool.d.ts} +5 -5
  46. package/dist/tools/{skill-tool.d.ts → session/skill-tool.d.ts} +2 -2
  47. package/dist/tools/{todo-write-tool.d.ts → session/todo-write-tool.d.ts} +2 -2
  48. package/dist/tools/session/update-topic-tool.d.ts +12 -0
  49. package/dist/tools/{bash-output-tool.d.ts → shell/bash-output-tool.d.ts} +2 -2
  50. package/dist/tools/{bash-tool.d.ts → shell/bash-tool.d.ts} +5 -5
  51. package/dist/tools/{command-tool.d.ts → shell/command-tool.d.ts} +2 -2
  52. package/dist/tools/{kill-shell-tool.d.ts → shell/kill-shell-tool.d.ts} +2 -2
  53. package/dist/tools/{web-fetch-tool.d.ts → web/web-fetch-tool.d.ts} +2 -2
  54. package/dist/tools/{web-search-tool.d.ts → web/web-search-tool.d.ts} +2 -2
  55. package/package.json +3 -2
  56. package/dist/chunk-A4CS4HLK.js +0 -1
  57. package/dist/tools/file-edit-tool.d.ts +0 -34
  58. package/dist/tools/mcp-tool-adapter.d.ts +0 -72
  59. package/dist/tools/mock-tool-runtime.d.ts +0 -3
  60. package/dist/tools/runtime-manager-tools.d.ts +0 -79
  61. package/dist/tools/update-topic-tool.d.ts +0 -12
  62. package/dist/tools/workspace-paths.d.ts +0 -5
  63. /package/dist/tools/{file-mutation.d.ts → file-editing/file-mutation.d.ts} +0 -0
  64. /package/dist/tools/{mcp-oauth-provider.d.ts → mcp/mcp-oauth-provider.d.ts} +0 -0
  65. /package/dist/tools/{mcp-safe-error-provenance.d.ts → mcp/mcp-safe-error-provenance.d.ts} +0 -0
  66. /package/dist/tools/{mcp-safe-error.d.ts → mcp/mcp-safe-error.d.ts} +0 -0
  67. /package/dist/tools/{mcp-server-manager.d.ts → mcp/mcp-server-manager.d.ts} +0 -0
  68. /package/dist/tools/{grep-engine.d.ts → search/grep-engine.d.ts} +0 -0
  69. /package/dist/tools/{ripgrep.d.ts → search/ripgrep.d.ts} +0 -0
  70. /package/dist/tools/{background-process-registry.d.ts → shell/background-process-registry.d.ts} +0 -0
  71. /package/dist/tools/{bash-internals.d.ts → shell/bash-internals.d.ts} +0 -0
  72. /package/dist/tools/{process-tree-termination.d.ts → shell/process-tree-termination.d.ts} +0 -0
  73. /package/dist/tools/{terminal-output-normalizer.d.ts → shell/terminal-output-normalizer.d.ts} +0 -0
  74. /package/dist/tools/{safe-fetch.d.ts → web/safe-fetch.d.ts} +0 -0
@@ -0,0 +1 @@
1
+ (function(_0x5d02dd,_0x116b2c){const _0x35c20e={_0x3f873b:0xc1b,_0x2ffcb8:0xb9c,_0x499f71:0xebb,_0x3a9f78:0x75f,_0x25d308:0x54f,_0x4b2f6c:0x66e,_0x2ba6a4:0x498,_0x14b3cb:0x3a0,_0x44dacb:0x833,_0x1352c9:0x5de,_0x4d5a6c:0x734,_0x2e9a90:0x6d7,_0x37398a:0x8c3,_0x3a2c1e:0x5b1,_0x18990c:0x5cd,_0x2d99c8:0xe5a,_0x158f24:0xb97,_0x254576:0x58d,_0x5765a4:0x8ca,_0xcd4d64:0x500,_0x1167ea:0x16b,_0x26f97e:0x467,_0x42f62e:0x119,_0x206e34:0x610},_0x39844d={_0x3e7aeb:0x18c},_0x389670=_0x5d02dd();function _0x3dbf52(_0x1abdf7,_0x189364,_0x1c411d,_0x1bf207){return _0x5a6e(_0x189364-0x324,_0x1bf207);}function _0x3c9a85(_0x2edb23,_0x1f28eb,_0x3ea9a3,_0x3e145c){return _0x5a6e(_0x2edb23-_0x39844d._0x3e7aeb,_0x3ea9a3);}while(!![]){try{const _0x1c42e8=parseInt(_0x3dbf52(_0x35c20e._0x3f873b,_0x35c20e._0x2ffcb8,0x888,_0x35c20e._0x499f71))/0x1+-parseInt(_0x3c9a85(_0x35c20e._0x3a9f78,0xacc,0x986,0x4f5))/0x2+parseInt(_0x3dbf52(0x699,_0x35c20e._0x25d308,_0x35c20e._0x4b2f6c,0x5a2))/0x3+parseInt(_0x3c9a85(_0x35c20e._0x2ba6a4,_0x35c20e._0x14b3cb,_0x35c20e._0x44dacb,0x57d))/0x4*(-parseInt(_0x3dbf52(0x654,_0x35c20e._0x1352c9,0x6b1,0x36a))/0x5)+parseInt(_0x3dbf52(0x582,_0x35c20e._0x4d5a6c,_0x35c20e._0x2e9a90,_0x35c20e._0x37398a))/0x6*(parseInt(_0x3c9a85(0x363,_0x35c20e._0x3a2c1e,0x2f3,_0x35c20e._0x18990c))/0x7)+parseInt(_0x3dbf52(_0x35c20e._0x2d99c8,0xb91,0xa2d,_0x35c20e._0x158f24))/0x8+-parseInt(_0x3dbf52(_0x35c20e._0x254576,0x81a,_0x35c20e._0x5765a4,_0x35c20e._0xcd4d64))/0x9*(parseInt(_0x3dbf52(_0x35c20e._0x1167ea,_0x35c20e._0x26f97e,_0x35c20e._0x42f62e,_0x35c20e._0x206e34))/0xa);if(_0x1c42e8===_0x116b2c)break;else _0x389670['push'](_0x389670['shift']());}catch(_0x367996){_0x389670['push'](_0x389670['shift']());}}}(_0x4cd2,0x31737));var MODEL_PRICING={'source':_0x5a09f8(0xee,0x217,0x112,0x51),'snapshotId':'models.dev:36f5527e307ddadb3f97b1a0c7f808bc7b77a7617ee70bba4e685196480e2892','generatedAt':_0x5a09f8(0x415,0x4e9,0x2f3,0x2ce),'providers':{'anthropic':{'providerId':_0x5a09f8(0xec,0x2dd,0x279,0x165),'models':{'claude-fable-5':{'modelId':_0x16b4a2(0x285,0x105,0x213,-0x18b),'rates':{'input':0xa,'output':0x32,'cacheRead':0x1,'cacheWrite':12.5}},'claude-haiku-4-5':{'modelId':_0x16b4a2(0x558,-0xef,0x29a,-0x11b),'rates':{'input':0x1,'output':0x5,'cacheRead':0.1,'cacheWrite':1.25}},'claude-haiku-4-5-20251001':{'modelId':_0x5a09f8(0x515,0x3b3,0x5,0x433),'rates':{'input':0x1,'output':0x5,'cacheRead':0.1,'cacheWrite':1.25}},'claude-opus-4-1':{'modelId':_0x5a09f8(-0x195,0x8a,-0x19b,0x29e),'rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75}},'claude-opus-4-1-20250805':{'modelId':_0x5a09f8(0x482,0xd7,-0x221,-0x28d),'rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75}},'claude-opus-4-5':{'modelId':_0x16b4a2(0x355,0x58,0x20a,-0xb1),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25}},'claude-opus-4-5-20251101':{'modelId':_0x5a09f8(-0x318,-0xeb,0x76,-0x319),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25}},'claude-opus-4-6':{'modelId':_0x5a09f8(-0x2f4,-0x15d,-0xa,0x134),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25}},'claude-opus-4-7':{'modelId':'claude-opus-4-7','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25}},'claude-opus-4-8':{'modelId':_0x16b4a2(-0xab,0x21a,0x1ec,-0x1d4),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25}},'claude-opus-5':{'modelId':_0x16b4a2(0x4d3,0x25f,0x3ad,0x3f6),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25}},'claude-sonnet-4-5':{'modelId':'claude-sonnet-4-5','rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75}},'claude-sonnet-4-5-20250929':{'modelId':_0x16b4a2(-0x412,0x2d4,-0xd1,-0x2a1),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75}},'claude-sonnet-4-6':{'modelId':'claude-sonnet-4-6','rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75}},'claude-sonnet-5':{'modelId':_0x5a09f8(0x2f9,0x10b,0x2df,0x3d5),'rates':{'input':0x2,'output':0xa,'cacheRead':0.2,'cacheWrite':2.5}}}},'deepseek':{'providerId':_0x16b4a2(-0x98,-0x40,0x207,0x367),'models':{'deepseek-chat':{'modelId':_0x5a09f8(0x751,0x3cf,0x606,0x790),'rates':{'input':0.14,'output':0.28,'cacheRead':0.0028}},'deepseek-reasoner':{'modelId':_0x5a09f8(0x150,0x2ad,0x90,-0x5d),'rates':{'input':0.14,'output':0.28,'cacheRead':0.0028}},'deepseek-v4-flash':{'modelId':_0x5a09f8(0x373,0x4fa,0x601,0x589),'rates':{'input':0.14,'output':0.28,'cacheRead':0.0028}},'deepseek-v4-pro':{'modelId':'deepseek-v4-pro','rates':{'input':0.435,'output':0.87,'cacheRead':0.003625}}}},'github-copilot':{'providerId':_0x5a09f8(-0x11a,0x5d,0xba,0x38f),'models':{'claude-fable-5':{'modelId':_0x16b4a2(0xbb,0x10b,0x213,0x1d),'rates':{'input':0xa,'output':0x32,'cacheRead':0x1,'cacheWrite':12.5}},'claude-haiku-4.5':{'modelId':_0x16b4a2(0x24a,0x155,0xd9,-0xb6),'rates':{'input':0x1,'output':0x5,'cacheRead':0.1,'cacheWrite':1.25}},'claude-opus-4.5':{'modelId':_0x16b4a2(0x203,0x57b,0x468,0x526),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25}},'claude-opus-4.6':{'modelId':'claude-opus-4.6','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25}},'claude-opus-4.7':{'modelId':_0x16b4a2(0x58a,0x2de,0x5f0,0x3b5),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25}},'claude-opus-4.8':{'modelId':'claude-opus-4.8','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25}},'claude-opus-5':{'modelId':_0x5a09f8(0x616,0x34e,0x58,0x3dc),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25}},'claude-sonnet-4':{'modelId':'claude-sonnet-4','rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75}},'claude-sonnet-4.5':{'modelId':_0x5a09f8(0x1c4,0x4bb,0x788,0x56e),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75}},'claude-sonnet-4.6':{'modelId':_0x5a09f8(-0x2ec,0x19,0x8c,-0x304),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75}},'claude-sonnet-5':{'modelId':_0x16b4a2(-0x95,0x9b,0x16a,0xb),'rates':{'input':0x2,'output':0xa,'cacheRead':0.2,'cacheWrite':2.5}},'gemini-2.5-pro':{'modelId':_0x16b4a2(0x7ca,0x438,0x5eb,0x79c),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125}},'gemini-3-flash-preview':{'modelId':_0x5a09f8(0x43e,0x524,0x1d5,0x52e),'rates':{'input':0.5,'output':0x3,'cacheRead':0.05,'inputAudio':0x1}},'gemini-3.1-pro-preview':{'modelId':'gemini-3.1-pro-preview','rates':{'input':0x2,'output':0xc,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x4,'output':0x12,'cacheRead':0.4}]},'gemini-3.5-flash':{'modelId':_0x5a09f8(0x6ca,0x5a9,0x405,0x52f),'rates':{'input':1.5,'output':0x9,'cacheRead':0.15,'inputAudio':1.5}},'gpt-4.1':{'modelId':'gpt-4.1','rates':{'input':0x2,'output':0x8,'cacheRead':0.5}},'gpt-5-mini':{'modelId':_0x5a09f8(0xe8,0x94,-0x191,-0x9e),'rates':{'input':0.25,'output':0x2,'cacheRead':0.025}},'gpt-5.2':{'modelId':'gpt-5.2','rates':{'input':1.75,'output':0xe,'cacheRead':0.175}},'gpt-5.2-codex':{'modelId':'gpt-5.2-codex','rates':{'input':1.75,'output':0xe,'cacheRead':0.175}},'gpt-5.3-codex':{'modelId':_0x5a09f8(0x4a8,0x400,0x4b0,0x571),'rates':{'input':1.75,'output':0xe,'cacheRead':0.175}},'gpt-5.4':{'modelId':_0x16b4a2(-0x2cb,-0x2f7,-0xf4,-0x386),'rates':{'input':2.5,'output':0xf,'cacheRead':0.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x5,'output':22.5,'cacheRead':0.5}]},'gpt-5.4-mini':{'modelId':_0x16b4a2(0x4c8,0xbf,0x447,0x745),'rates':{'input':0.75,'output':4.5,'cacheRead':0.075}},'gpt-5.4-nano':{'modelId':'gpt-5.4-nano','rates':{'input':0.2,'output':1.25,'cacheRead':0.02}},'gpt-5.5':{'modelId':_0x5a09f8(0x8f6,0x54f,0x2ea,0x315),'rates':{'input':0x5,'output':0x1e,'cacheRead':0.5},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':0x2d,'cacheRead':0x1}]},'gpt-5.6-luna':{'modelId':_0x5a09f8(0x3a1,0x27f,0x57b,0x631),'rates':{'input':0x1,'output':0x6,'cacheRead':0.1,'cacheWrite':1.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x2,'output':0x9,'cacheRead':0.2,'cacheWrite':2.5}]},'gpt-5.6-sol':{'modelId':'gpt-5.6-sol','rates':{'input':0x5,'output':0x1e,'cacheRead':0.5,'cacheWrite':6.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':0x2d,'cacheRead':0x1,'cacheWrite':12.5}]},'gpt-5.6-terra':{'modelId':_0x5a09f8(0xf9,0x3f0,0x1c7,0x28b),'rates':{'input':2.5,'output':0xf,'cacheRead':0.25,'cacheWrite':3.125},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x5,'output':22.5,'cacheRead':0.5,'cacheWrite':6.25}]},'kimi-k2.7-code':{'modelId':_0x5a09f8(-0x20b,-0x19c,0x79,-0x31b),'rates':{'input':0.95,'output':0x4,'cacheRead':0.19}},'mai-code-1-flash-picker':{'modelId':_0x16b4a2(0x65a,0x162,0x437,0x3ab),'rates':{'input':0.75,'output':4.5,'cacheRead':0.075}}}},'minimax':{'providerId':_0x16b4a2(-0x1c3,0x265,-0x18,0x1f7),'models':{'MiniMax-M2':{'modelId':_0x5a09f8(0x647,0x4ce,0x42c,0x3bf),'rates':{'input':0.3,'output':1.2}},'MiniMax-M2.1':{'modelId':_0x5a09f8(-0x10e,-0x2b,-0x2f4,-0x251),'rates':{'input':0.3,'output':1.2}},'MiniMax-M2.5':{'modelId':_0x5a09f8(0x1fd,0x231,0x598,0xd1),'rates':{'input':0.3,'output':1.2,'cacheRead':0.03,'cacheWrite':0.375}},'MiniMax-M2.5-highspeed':{'modelId':_0x5a09f8(0x59b,0x4d4,0x24b,0x1f7),'rates':{'input':0.6,'output':2.4,'cacheRead':0.06,'cacheWrite':0.375}},'MiniMax-M2.7':{'modelId':_0x5a09f8(0x3e6,0x213,0x443,0x1f),'rates':{'input':0.3,'output':1.2,'cacheRead':0.06,'cacheWrite':0.375}},'MiniMax-M2.7-highspeed':{'modelId':'MiniMax-M2.7-highspeed','rates':{'input':0.6,'output':2.4,'cacheRead':0.06,'cacheWrite':0.375}},'MiniMax-M3':{'modelId':_0x5a09f8(-0x437,-0x10d,0x198,0x47),'rates':{'input':0.3,'output':1.2,'cacheRead':0.06},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0.6,'output':2.4,'cacheRead':0.12}]}}},'openai':{'providerId':_0x5a09f8(0x5a,0x10f,0x3bb,0x359),'models':{'gpt-3.5-turbo':{'modelId':_0x16b4a2(0x613,0x2b8,0x4b1,0x841),'rates':{'input':0.5,'output':1.5,'cacheRead':0x0}},'gpt-4':{'modelId':_0x5a09f8(-0x97,0x8b,-0x163,0x39e),'rates':{'input':0x1e,'output':0x3c}},'gpt-4-turbo':{'modelId':'gpt-4-turbo','rates':{'input':0xa,'output':0x1e}},'gpt-4.1':{'modelId':_0x16b4a2(0x274,0x3c5,0x555,0x53b),'rates':{'input':0x2,'output':0x8,'cacheRead':0.5}},'gpt-4.1-mini':{'modelId':'gpt-4.1-mini','rates':{'input':0.4,'output':1.6,'cacheRead':0.1}},'gpt-4.1-nano':{'modelId':'gpt-4.1-nano','rates':{'input':0.1,'output':0.4,'cacheRead':0.025}},'gpt-4o':{'modelId':'gpt-4o','rates':{'input':2.5,'output':0xa,'cacheRead':1.25}},'gpt-4o-2024-05-13':{'modelId':_0x5a09f8(0x370,0x2d2,0x5d8,0x5f),'rates':{'input':0x5,'output':0xf}},'gpt-4o-2024-08-06':{'modelId':_0x5a09f8(-0xb6,0x2fb,0x2d1,0x35a),'rates':{'input':2.5,'output':0xa,'cacheRead':1.25}},'gpt-4o-2024-11-20':{'modelId':'gpt-4o-2024-11-20','rates':{'input':2.5,'output':0xa,'cacheRead':1.25}},'gpt-4o-mini':{'modelId':_0x5a09f8(0x252,0x4de,0x857,0x123),'rates':{'input':0.15,'output':0.6,'cacheRead':0.075}},'gpt-5':{'modelId':_0x5a09f8(0x36b,0x479,0x12b,0x4a9),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125}},'gpt-5-mini':{'modelId':'gpt-5-mini','rates':{'input':0.25,'output':0x2,'cacheRead':0.025}},'gpt-5-nano':{'modelId':_0x5a09f8(0x183,-0x1cc,-0x2b7,-0x555),'rates':{'input':0.05,'output':0.4,'cacheRead':0.005}},'gpt-5-pro':{'modelId':'gpt-5-pro','rates':{'input':0xf,'output':0x78}},'gpt-5.1':{'modelId':'gpt-5.1','rates':{'input':1.25,'output':0xa,'cacheRead':0.125}},'gpt-5.2':{'modelId':_0x16b4a2(-0x133,0x5dd,0x259,-0x14f),'rates':{'input':1.75,'output':0xe,'cacheRead':0.175}},'gpt-5.2-chat-latest':{'modelId':'gpt-5.2-chat-latest','rates':{'input':1.75,'output':0xe,'cacheRead':0.175}},'gpt-5.2-pro':{'modelId':_0x16b4a2(0x8e,-0x46,-0x3f,0x29c),'rates':{'input':0x15,'output':0xa8}},'gpt-5.3-chat-latest':{'modelId':_0x16b4a2(0x4ce,0x27a,0x5b1,0x659),'rates':{'input':1.75,'output':0xe,'cacheRead':0.175}},'gpt-5.3-codex':{'modelId':_0x5a09f8(0x31c,0x400,0x2d6,0x60b),'rates':{'input':1.75,'output':0xe,'cacheRead':0.175}},'gpt-5.3-codex-spark':{'modelId':_0x5a09f8(0x2d7,-0x16,0x30,-0x331),'rates':{'input':1.75,'output':0xe,'cacheRead':0.175}},'gpt-5.4':{'modelId':_0x5a09f8(0xb7,-0x153,0x87,-0x1d0),'rates':{'input':2.5,'output':0xf,'cacheRead':0.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x5,'output':22.5,'cacheRead':0.5}]},'gpt-5.4-mini':{'modelId':_0x5a09f8(0x6b8,0x3e8,0x497,0x5a1),'rates':{'input':0.75,'output':4.5,'cacheRead':0.075}},'gpt-5.4-nano':{'modelId':_0x16b4a2(-0x15d,0x335,-0x77,0x2fd),'rates':{'input':0.2,'output':1.25,'cacheRead':0.02}},'gpt-5.4-pro':{'modelId':'gpt-5.4-pro','rates':{'input':0x1e,'output':0xb4},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x3c,'output':0x10e}]},'gpt-5.5':{'modelId':_0x16b4a2(0x8a6,0x22e,0x5ae,0x5d5),'rates':{'input':0x5,'output':0x1e,'cacheRead':0.5},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':0x2d,'cacheRead':0x1}]},'gpt-5.5-pro':{'modelId':_0x16b4a2(0x47e,0x1a8,0x2e7,0x40a),'rates':{'input':0x1e,'output':0xb4},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x3c,'output':0x10e}]},'gpt-5.6':{'modelId':'gpt-5.6','rates':{'input':0x5,'output':0x1e,'cacheRead':0.5,'cacheWrite':6.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':0x2d,'cacheRead':0x1,'cacheWrite':12.5}]},'gpt-5.6-luna':{'modelId':_0x16b4a2(0x56f,0x672,0x2de,0x47c),'rates':{'input':0x1,'output':0x6,'cacheRead':0.1,'cacheWrite':1.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x2,'output':0x9,'cacheRead':0.2,'cacheWrite':2.5}]},'gpt-5.6-sol':{'modelId':'gpt-5.6-sol','rates':{'input':0x5,'output':0x1e,'cacheRead':0.5,'cacheWrite':6.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':0x2d,'cacheRead':0x1,'cacheWrite':12.5}]},'gpt-5.6-terra':{'modelId':_0x5a09f8(0x4f7,0x3f0,0x7a9,0x179),'rates':{'input':2.5,'output':0xf,'cacheRead':0.25,'cacheWrite':3.125},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x5,'output':22.5,'cacheRead':0.5,'cacheWrite':6.25}]},'gpt-image-2':{'modelId':_0x5a09f8(-0x2c8,-0x199,-0x161,0x1a7),'rates':{'input':0x5,'output':0x1e,'cacheRead':1.25}},'gpt-realtime-2.1':{'modelId':_0x5a09f8(0xc1,-0x10c,0x1d9,-0x191),'rates':{'input':0x4,'output':0x18,'cacheRead':0.4,'inputAudio':0x20,'outputAudio':0x40}},'o1':{'modelId':'o1','rates':{'input':0xf,'output':0x3c,'cacheRead':7.5}},'o1-pro':{'modelId':_0x16b4a2(0x193,0x299,0x19,-0x31a),'rates':{'input':0x96,'output':0x258}},'o3':{'modelId':'o3','rates':{'input':0x2,'output':0x8,'cacheRead':0.5}},'o3-mini':{'modelId':'o3-mini','rates':{'input':1.1,'output':4.4,'cacheRead':0.55}},'o3-pro':{'modelId':_0x16b4a2(0x63,0x5a5,0x408,0x186),'rates':{'input':0x14,'output':0x50}},'o4-mini':{'modelId':_0x16b4a2(0x4a,-0x2a9,-0x106,0x299),'rates':{'input':1.1,'output':4.4,'cacheRead':0.275}},'text-embedding-3-large':{'modelId':_0x16b4a2(-0x206,0x3a4,0x48,0xb2),'rates':{'input':0.13,'output':0x0}},'text-embedding-3-small':{'modelId':_0x16b4a2(-0xb7,-0x27f,-0xf2,-0x1d),'rates':{'input':0.02,'output':0x0}},'text-embedding-ada-002':{'modelId':_0x5a09f8(-0x6f,-0x1b9,-0x2aa,0x42),'rates':{'input':0.1,'output':0x0}}}},'opencode-go':{'providerId':_0x5a09f8(0x63e,0x442,0x306,0x207),'models':{'deepseek-v4-flash':{'modelId':_0x16b4a2(0x8f7,0x4ad,0x559,0x912),'rates':{'input':0.14,'output':0.28,'cacheRead':0.0028}},'deepseek-v4-pro':{'modelId':_0x16b4a2(-0xfa,-0x1d2,-0x28,-0x11b),'rates':{'input':0.435,'output':0.87,'cacheRead':0.003625}},'glm-5':{'modelId':_0x5a09f8(0x11d,-0xa2,-0x3c8,-0x2cc),'rates':{'input':0x1,'output':3.2,'cacheRead':0.2}},'glm-5.1':{'modelId':_0x5a09f8(0x1b9,0x467,0x10e,0x18f),'rates':{'input':1.4,'output':4.4,'cacheRead':0.26}},'glm-5.2':{'modelId':_0x16b4a2(0x4ff,0x2a,0x159,0x254),'rates':{'input':1.4,'output':4.4,'cacheRead':0.26}},'grok-4.5':{'modelId':'grok-4.5','rates':{'input':0x2,'output':0x6,'cacheRead':0.5},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x4,'output':0xc,'cacheRead':0x1}]},'hy3':{'modelId':_0x5a09f8(-0x317,-0xba,0x80,-0x160),'rates':{'input':0.14,'output':0.58,'cacheRead':0.035}},'kimi-k2.5':{'modelId':'kimi-k2.5','rates':{'input':0.6,'output':0x3,'cacheRead':0.1}},'kimi-k2.6':{'modelId':_0x16b4a2(0x8a7,0x694,0x4f9,0x7f7),'rates':{'input':0.95,'output':0x4,'cacheRead':0.16}},'kimi-k2.7-code':{'modelId':_0x16b4a2(-0x11d,-0x17,-0x13d,0x185),'rates':{'input':0.95,'output':0x4,'cacheRead':0.19}},'kimi-k3':{'modelId':_0x16b4a2(0xfa,0x301,0x206,-0x7a),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3}},'mimo-v2-omni':{'modelId':'mimo-v2-omni','rates':{'input':0.4,'output':0x2,'cacheRead':0.08}},'mimo-v2-pro':{'modelId':_0x5a09f8(0x2e7,0x449,0x78a,0xd2),'rates':{'input':0x1,'output':0x3,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x2,'output':0x6,'cacheRead':0.4}]},'mimo-v2.5':{'modelId':_0x5a09f8(-0x64,-0xa,-0x3ad,0x94),'rates':{'input':0.14,'output':0.28,'cacheRead':0.0028}},'mimo-v2.5-pro':{'modelId':_0x5a09f8(-0x367,-0x1a4,-0x480,-0x552),'rates':{'input':0.435,'output':0.87,'cacheRead':0.003625}},'minimax-m2.5':{'modelId':_0x16b4a2(0x5c6,-0x65,0x2f4,-0x66),'rates':{'input':0.3,'output':1.2,'cacheRead':0.03}},'minimax-m2.7':{'modelId':'minimax-m2.7','rates':{'input':0.3,'output':1.2,'cacheRead':0.06}},'minimax-m3':{'modelId':_0x16b4a2(0xf7,0xa1,0x6,0x179),'rates':{'input':0.3,'output':1.2,'cacheRead':0.06},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0.6,'output':2.4,'cacheRead':0.12}]},'qwen3.5-plus':{'modelId':_0x16b4a2(0x3e,0x3b6,0x1cb,0x4d),'rates':{'input':0.2,'output':1.2,'cacheRead':0.02,'cacheWrite':0.25}},'qwen3.6-plus':{'modelId':_0x16b4a2(0x616,0x618,0x4b5,0x359),'rates':{'input':0.5,'output':0x3,'cacheRead':0.05,'cacheWrite':0.625},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x2,'output':0x6,'cacheRead':0.2,'cacheWrite':2.5}]},'qwen3.7-max':{'modelId':'qwen3.7-max','rates':{'input':2.5,'output':7.5,'cacheRead':0.5,'cacheWrite':3.125}},'qwen3.7-plus':{'modelId':_0x16b4a2(0x72a,0x561,0x3ec,0x24e),'rates':{'input':0.4,'output':1.6,'cacheRead':0.04,'cacheWrite':0.5},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':1.2,'output':4.8,'cacheRead':0.12,'cacheWrite':1.5}]}}},'openrouter':{'providerId':_0x16b4a2(-0x29f,-0x13c,0xcc,0x225),'models':{'ai21/jamba-large-1.7':{'modelId':_0x5a09f8(0x98,0x15,0x249,-0x76),'rates':{'input':0x2,'output':0x8}},'aion-labs/aion-2.0':{'modelId':_0x5a09f8(0xd7,0x3c7,0x598,0x332),'rates':{'input':0.8,'output':1.6,'cacheRead':0.2}},'aion-labs/aion-3.0':{'modelId':_0x5a09f8(0x817,0x59f,0x75b,0x27c),'rates':{'input':0x3,'output':0x6,'cacheRead':0.75}},'aion-labs/aion-3.0-mini':{'modelId':_0x5a09f8(0xae,0x22b,0x191,0xf9),'rates':{'input':0.7,'output':1.4,'cacheRead':0.18}},'aion-labs/aion-rp-llama-3.1-8b':{'modelId':_0x5a09f8(-0x69,0xf4,0x1d2,-0x2cd),'rates':{'input':0.8,'output':1.6}},'allenai/olmo-3-32b-think':{'modelId':_0x5a09f8(-0xe4,0x2a,-0x289,0x10),'rates':{'input':0.15,'output':0.5}},'amazon/nova-2-lite-v1':{'modelId':_0x5a09f8(0x514,0x3af,0x1c2,0x401),'rates':{'input':0.3,'output':2.5}},'amazon/nova-lite-v1':{'modelId':'amazon/nova-lite-v1','rates':{'input':0.06,'output':0.24}},'amazon/nova-micro-v1':{'modelId':'amazon/nova-micro-v1','rates':{'input':0.035,'output':0.14}},'amazon/nova-premier-v1':{'modelId':_0x5a09f8(-0x1ac,0x92,0x2fa,0x4b),'rates':{'input':2.5,'output':12.5,'cacheRead':0.625}},'amazon/nova-pro-v1':{'modelId':_0x5a09f8(0x2,0xa5,0x32c,0x3bd),'rates':{'input':0.8,'output':3.2}},'anthracite-org/magnum-v4-72b':{'modelId':'anthracite-org/magnum-v4-72b','rates':{'input':0x3,'output':0x5}},'anthropic/claude-3-haiku':{'modelId':'anthropic/claude-3-haiku','rates':{'input':0.25,'output':1.25,'cacheRead':0.03,'cacheWrite':0.3}},'anthropic/claude-fable-5':{'modelId':'anthropic/claude-fable-5','rates':{'input':0xa,'output':0x32,'cacheRead':0x1,'cacheWrite':12.5}},'anthropic/claude-haiku-4.5':{'modelId':_0x5a09f8(0x1e9,0x33f,0x35,0x1ee),'rates':{'input':0x1,'output':0x5,'cacheRead':0.1,'cacheWrite':1.25}},'anthropic/claude-opus-4':{'modelId':'anthropic/claude-opus-4','rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75}},'anthropic/claude-opus-4.1':{'modelId':'anthropic/claude-opus-4.1','rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75}},'anthropic/claude-opus-4.5':{'modelId':_0x16b4a2(0x2da,0x342,0x358,-0x48),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25}},'anthropic/claude-opus-4.6':{'modelId':_0x16b4a2(-0x257,0x20e,-0xa4,0x59),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':37.5,'cacheRead':0x1,'cacheWrite':12.5}]},'anthropic/claude-opus-4.7':{'modelId':_0x5a09f8(0x302,0x155,0x38e,0x22d),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':37.5,'cacheRead':0x1,'cacheWrite':12.5}]},'anthropic/claude-opus-4.7-fast':{'modelId':'anthropic/claude-opus-4.7-fast','rates':{'input':0x1e,'output':0x96,'cacheRead':0x3,'cacheWrite':37.5}},'anthropic/claude-opus-4.8':{'modelId':_0x16b4a2(0x717,0x814,0x5bf,0x628),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25}},'anthropic/claude-opus-4.8-fast':{'modelId':_0x5a09f8(-0x125,0x6a,0x1bb,0x14b),'rates':{'input':0xa,'output':0x32,'cacheRead':0x1,'cacheWrite':12.5}},'anthropic/claude-opus-5':{'modelId':'anthropic/claude-opus-5','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25}},'anthropic/claude-opus-5-fast':{'modelId':_0x5a09f8(0x4a6,0x53b,0x759,0x4ea),'rates':{'input':0xa,'output':0x32,'cacheRead':0x1,'cacheWrite':12.5}},'anthropic/claude-sonnet-4':{'modelId':'anthropic/claude-sonnet-4','rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x6,'output':22.5,'cacheRead':0.6,'cacheWrite':7.5}]},'anthropic/claude-sonnet-4.5':{'modelId':_0x5a09f8(-0x411,-0x10b,-0x116,-0x37a),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x6,'output':22.5,'cacheRead':0.6,'cacheWrite':7.5}]},'anthropic/claude-sonnet-4.6':{'modelId':'anthropic/claude-sonnet-4.6','rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x6,'output':22.5,'cacheRead':0.6,'cacheWrite':7.5}]},'anthropic/claude-sonnet-5':{'modelId':_0x5a09f8(0x3f,-0x194,-0x2ac,-0x181),'rates':{'input':0x2,'output':0xa,'cacheRead':0.2,'cacheWrite':2.5}},'arcee-ai/trinity-large-thinking':{'modelId':'arcee-ai/trinity-large-thinking','rates':{'input':0.25,'output':0.8,'cacheRead':0.06}},'arcee-ai/virtuoso-large':{'modelId':_0x16b4a2(0x196,0x10e,0x2f9,0xbe),'rates':{'input':0.75,'output':1.2}},'baidu/ernie-4.5-vl-424b-a47b':{'modelId':'baidu/ernie-4.5-vl-424b-a47b','rates':{'input':0.42,'output':1.25}},'bytedance-seed/seed-1.6':{'modelId':_0x16b4a2(0x1b8,0x4a,0x102,0x1d7),'rates':{'input':0.25,'output':0x2}},'bytedance-seed/seed-1.6-flash':{'modelId':'bytedance-seed/seed-1.6-flash','rates':{'input':0.075,'output':0.3}},'bytedance-seed/seed-2.0-lite':{'modelId':_0x5a09f8(0x639,0x302,0x507,0x2b4),'rates':{'input':0.25,'output':0x2}},'bytedance-seed/seed-2.0-mini':{'modelId':_0x5a09f8(-0x7,0xd1,-0x23f,0x373),'rates':{'input':0.1,'output':0.4}},'bytedance/ui-tars-1.5-7b':{'modelId':_0x5a09f8(0x432,0x152,0x38,-0x11a),'rates':{'input':0.1,'output':0.2,'cacheRead':0.1}},'cognitivecomputations/dolphin-mistral-24b-venice-edition':{'modelId':'cognitivecomputations/dolphin-mistral-24b-venice-edition','rates':{'input':0.2,'output':0.9}},'cohere/command-a':{'modelId':_0x16b4a2(0x373,0x3a2,0x1ee,-0x15a),'rates':{'input':2.5,'output':0xa}},'cohere/command-r-08-2024':{'modelId':_0x5a09f8(-0x323,0x1d,0x306,0x1e2),'rates':{'input':0.15,'output':0.6}},'cohere/command-r-plus-08-2024':{'modelId':'cohere/command-r-plus-08-2024','rates':{'input':2.5,'output':0xa}},'cohere/command-r7b-12-2024':{'modelId':'cohere/command-r7b-12-2024','rates':{'input':0.0375,'output':0.15}},'cohere/north-mini-code:free':{'modelId':_0x5a09f8(0x3ea,0x191,-0x125,0x1ce),'rates':{'input':0x0,'output':0x0}},'deepcogito/cogito-v2.1-671b':{'modelId':_0x16b4a2(-0x4dd,0x27,-0x124,0xa4),'rates':{'input':1.25,'output':1.25}},'deepseek/deepseek-chat':{'modelId':_0x5a09f8(0x322,-0x81,-0x14c,0x1e0),'rates':{'input':0.2002,'output':0.8001}},'deepseek/deepseek-chat-v3-0324':{'modelId':_0x16b4a2(0x199,0xb7,0x1e4,0x1b0),'rates':{'input':0.27,'output':1.12,'cacheRead':0.135}},'deepseek/deepseek-chat-v3.1':{'modelId':'deepseek/deepseek-chat-v3.1','rates':{'input':0.25,'output':0.95,'cacheRead':0.13}},'deepseek/deepseek-r1':{'modelId':'deepseek/deepseek-r1','rates':{'input':0.7,'output':2.5}},'deepseek/deepseek-r1-0528':{'modelId':_0x5a09f8(0x888,0x50c,0x459,0x45d),'rates':{'input':0.5,'output':2.15,'cacheRead':0.35}},'deepseek/deepseek-r1-distill-llama-70b':{'modelId':_0x5a09f8(-0x4,0x300,0x5a1,0x257),'rates':{'input':0.8,'output':0.8}},'deepseek/deepseek-v3.1-terminus':{'modelId':_0x5a09f8(0x339,0x17,0xd,0x2fe),'rates':{'input':0.27,'output':0x1,'cacheRead':0.135}},'deepseek/deepseek-v3.2':{'modelId':_0x16b4a2(0x191,0x54,-0x16a,-0x48),'rates':{'input':0.269,'output':0.4,'cacheRead':0.1345}},'deepseek/deepseek-v3.2-exp':{'modelId':'deepseek/deepseek-v3.2-exp','rates':{'input':0.27,'output':0.41}},'deepseek/deepseek-v4-flash':{'modelId':_0x5a09f8(0x416,0x38f,0x2b4,0xea),'rates':{'input':0.0938,'output':0.1876,'cacheRead':0.01876}},'deepseek/deepseek-v4-pro':{'modelId':'deepseek/deepseek-v4-pro','rates':{'input':0.435,'output':0.87,'cacheRead':0.003625}},'google/gemini-2.5-flash':{'modelId':_0x16b4a2(0x12b,0xce,0x2b6,-0x2d),'rates':{'input':0.3,'output':2.5,'reasoning':2.5,'cacheRead':0.03,'cacheWrite':0.083333}},'google/gemini-2.5-flash-image':{'modelId':_0x16b4a2(0x1f7,0x749,0x5b5,0x735),'rates':{'input':0.3,'output':2.5,'cacheRead':0.03,'cacheWrite':0.083333}},'google/gemini-2.5-flash-lite':{'modelId':_0x5a09f8(0x14,0x236,0x3e9,0x2f1),'rates':{'input':0.1,'output':0.4,'reasoning':0.4,'cacheRead':0.01,'cacheWrite':0.083333}},'google/gemini-2.5-pro':{'modelId':'google/gemini-2.5-pro','rates':{'input':1.25,'output':0xa,'reasoning':0xa,'cacheRead':0.125,'cacheWrite':0.375}},'google/gemini-2.5-pro-preview':{'modelId':_0x5a09f8(0x1e9,0x34f,0x230,0x70e),'rates':{'input':1.25,'output':0xa,'reasoning':0xa,'cacheRead':0.125,'cacheWrite':0.375}},'google/gemini-2.5-pro-preview-05-06':{'modelId':_0x5a09f8(0xcd,0x14b,-0x257,-0x25c),'rates':{'input':1.25,'output':0xa,'reasoning':0xa,'cacheRead':0.125,'cacheWrite':0.375}},'google/gemini-3-flash-preview':{'modelId':'google/gemini-3-flash-preview','rates':{'input':0.5,'output':0x3,'reasoning':0x3,'cacheRead':0.05,'cacheWrite':0.083333}},'google/gemini-3-pro-image':{'modelId':_0x16b4a2(-0xe2,-0x1c9,-0x99,-0xea),'rates':{'input':0x2,'output':0xc,'reasoning':0xc,'cacheRead':0.2,'cacheWrite':0.375}},'google/gemini-3-pro-image-preview':{'modelId':_0x5a09f8(-0x33a,-0x6a,-0x18d,0x277),'rates':{'input':0x2,'output':0xc,'reasoning':0xc,'cacheRead':0.2,'cacheWrite':0.375}},'google/gemini-3.1-flash-image':{'modelId':_0x5a09f8(0x38d,0x42a,0x511,0x18e),'rates':{'input':0.5,'output':0x3}},'google/gemini-3.1-flash-image-preview':{'modelId':_0x16b4a2(0x4f0,0x451,0x529,0x436),'rates':{'input':0.5,'output':0x3}},'google/gemini-3.1-flash-lite':{'modelId':_0x5a09f8(0x23e,0x26c,-0x9,0x110),'rates':{'input':0.25,'output':1.5,'reasoning':1.5,'cacheRead':0.025,'cacheWrite':0.083333}},'google/gemini-3.1-flash-lite-image':{'modelId':_0x5a09f8(-0x160,0x54,0xde,-0x62),'rates':{'input':0.25,'output':1.5}},'google/gemini-3.1-flash-lite-preview':{'modelId':'google/gemini-3.1-flash-lite-preview','rates':{'input':0.25,'output':1.5,'reasoning':1.5,'cacheRead':0.025,'cacheWrite':0.083333}},'google/gemini-3.1-pro-preview':{'modelId':_0x16b4a2(0x8d2,0x55d,0x60d,0x9cb),'rates':{'input':0x2,'output':0xc,'reasoning':0xc,'cacheRead':0.2,'cacheWrite':0.375},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x4,'output':0x12,'cacheRead':0.4}]},'google/gemini-3.1-pro-preview-customtools':{'modelId':_0x5a09f8(-0xed,-0x6f,-0x42d,-0x20a),'rates':{'input':0x2,'output':0xc,'reasoning':0xc,'cacheRead':0.2,'cacheWrite':0.375},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x4,'output':0x12,'cacheRead':0.4}]},'google/gemini-3.5-flash':{'modelId':_0x5a09f8(-0x21a,-0x6,0x166,0x295),'rates':{'input':1.5,'output':0x9,'reasoning':0x9,'cacheRead':0.15,'cacheWrite':0.083333}},'google/gemini-3.5-flash-lite':{'modelId':_0x16b4a2(0x4cc,-0x28,0x16b,0x382),'rates':{'input':0.3,'output':2.5,'reasoning':2.5,'cacheRead':0.03,'cacheWrite':0.083333}},'google/gemini-3.6-flash':{'modelId':'google/gemini-3.6-flash','rates':{'input':1.5,'output':7.5,'reasoning':7.5,'cacheRead':0.15,'cacheWrite':0.083333}},'google/gemma-2-27b-it':{'modelId':_0x5a09f8(0x570,0x42d,0x2d0,0x305),'rates':{'input':0.65,'output':0.65}},'google/gemma-3-12b-it':{'modelId':_0x16b4a2(-0x9a,-0x22a,-0x81,-0x2e5),'rates':{'input':0.05,'output':0.15}},'google/gemma-3-27b-it':{'modelId':_0x5a09f8(0x4d3,0x4e3,0x29e,0x7d1),'rates':{'input':0.08,'output':0.45,'cacheRead':0.04}},'google/gemma-3-4b-it':{'modelId':_0x16b4a2(0x2cb,-0x2a1,-0xa6,0xb2),'rates':{'input':0.05,'output':0.1}},'google/gemma-3n-e4b-it':{'modelId':_0x16b4a2(0x5e3,0x3ae,0x304,0x2c5),'rates':{'input':0.06,'output':0.12}},'google/gemma-4-26b-a4b-it':{'modelId':'google/gemma-4-26b-a4b-it','rates':{'input':0.12,'output':0.35,'cacheRead':0.05}},'google/gemma-4-26b-a4b-it:free':{'modelId':_0x16b4a2(0x2cf,0x3f1,0x192,0x2e6),'rates':{'input':0x0,'output':0x0}},'google/gemma-4-31b-it':{'modelId':_0x16b4a2(0x1d4,0x176,0x45a,0x49c),'rates':{'input':0.14,'output':0.4}},'google/gemma-4-31b-it:free':{'modelId':_0x16b4a2(0x3d3,0x8f,0x315,0x2e3),'rates':{'input':0x0,'output':0x0}},'google/lyria-3-clip-preview':{'modelId':_0x16b4a2(0x450,0x61d,0x5c9,0x3fa),'rates':{'input':0x0,'output':0x0}},'google/lyria-3-pro-preview':{'modelId':_0x16b4a2(0x438,0x243,0x4ab,0x811),'rates':{'input':0x0,'output':0x0}},'gryphe/mythomax-l2-13b':{'modelId':_0x16b4a2(0x20b,0x74,-0x160,-0x47d),'rates':{'input':0.06,'output':0.06}},'ibm-granite/granite-4.0-h-micro':{'modelId':_0x16b4a2(0x819,0x321,0x4f2,0x2b1),'rates':{'input':0.017,'output':0.112}},'ibm-granite/granite-4.1-8b':{'modelId':_0x16b4a2(0x12e,0xc8,0x1c1,0x282),'rates':{'input':0.05,'output':0.1,'cacheRead':0.05}},'inception/mercury-2':{'modelId':'inception/mercury-2','rates':{'input':0.25,'output':0.75,'cacheRead':0.025}},'inclusionai/ling-2.6-1t':{'modelId':_0x16b4a2(0x3e9,0xef,0x237,0x355),'rates':{'input':0.075,'output':0.625,'cacheRead':0.015}},'inclusionai/ling-2.6-flash':{'modelId':_0x5a09f8(-0xa7,0xff,0x252,-0x27),'rates':{'input':0.01,'output':0.03,'cacheRead':0.002}},'inclusionai/ling-3.0-flash:free':{'modelId':_0x16b4a2(-0x95,-0xc1,0x24b,0x24e),'rates':{'input':0x0,'output':0x0}},'inclusionai/ring-2.6-1t':{'modelId':_0x16b4a2(0x6f7,0x37d,0x579,0x2bb),'rates':{'input':0.075,'output':0.625,'cacheRead':0.015}},'inflection/inflection-3-pi':{'modelId':_0x16b4a2(0x121,0x276,-0xe2,0x1a3),'rates':{'input':2.5,'output':0xa}},'inflection/inflection-3-productivity':{'modelId':_0x5a09f8(0x8c1,0x56e,0x4be,0x6bb),'rates':{'input':2.5,'output':0xa}},'kwaipilot/kat-coder-air-v2.5':{'modelId':_0x5a09f8(-0xb3,0xc3,-0x1dc,0x297),'rates':{'input':0.15,'output':0.6,'cacheRead':0.03}},'kwaipilot/kat-coder-pro-v2':{'modelId':'kwaipilot/kat-coder-pro-v2','rates':{'input':0.3,'output':1.2,'cacheRead':0.06}},'kwaipilot/kat-coder-pro-v2.5':{'modelId':_0x16b4a2(0x8f,0x27b,0x30b,0x429),'rates':{'input':0.74,'output':2.96,'cacheRead':0.15}},'mancer/weaver':{'modelId':'mancer/weaver','rates':{'input':0.5,'output':0.75}},'meituan/longcat-2.0':{'modelId':_0x16b4a2(0x524,0x522,0x2a5,-0xe3),'rates':{'input':0.3,'output':1.2,'cacheRead':0.006}},'meta-llama/llama-3.1-70b-instruct':{'modelId':'meta-llama/llama-3.1-70b-instruct','rates':{'input':0.4,'output':0.4}},'meta-llama/llama-3.1-8b-instruct':{'modelId':_0x16b4a2(0x820,0x694,0x5c4,0x7bb),'rates':{'input':0.05,'output':0.08,'cacheRead':0.025}},'meta-llama/llama-3.2-1b-instruct':{'modelId':_0x5a09f8(0x7cd,0x410,0x141,0x575),'rates':{'input':0.027,'output':0.201}},'meta-llama/llama-3.2-3b-instruct':{'modelId':_0x16b4a2(-0x280,0x94,-0xd9,0x21c),'rates':{'input':0.05,'output':0.33}},'meta-llama/llama-3.3-70b-instruct':{'modelId':_0x5a09f8(0x8a5,0x534,0x687,0x1a9),'rates':{'input':0.13,'output':0.4}},'meta-llama/llama-4-maverick':{'modelId':_0x16b4a2(-0x24d,0x148,-0x7a,-0x2ac),'rates':{'input':0.2,'output':0.8}},'meta-llama/llama-4-scout':{'modelId':'meta-llama/llama-4-scout','rates':{'input':0.1,'output':0.3}},'meta-llama/llama-guard-4-12b':{'modelId':_0x5a09f8(0x34a,0xec,-0x153,-0xd1),'rates':{'input':0.18,'output':0.18}},'meta/muse-spark-1.1':{'modelId':'meta/muse-spark-1.1','rates':{'input':1.25,'output':4.25,'cacheRead':0.15}},'microsoft/phi-4':{'modelId':'microsoft/phi-4','rates':{'input':0.07,'output':0.14}},'microsoft/wizardlm-2-8x22b':{'modelId':'microsoft/wizardlm-2-8x22b','rates':{'input':0.62,'output':0.62}},'minimax/minimax-01':{'modelId':'minimax/minimax-01','rates':{'input':0.2,'output':1.1}},'minimax/minimax-m1':{'modelId':_0x5a09f8(0x3a9,0x158,0x379,-0x265),'rates':{'input':0.55,'output':2.2}},'minimax/minimax-m2':{'modelId':'minimax/minimax-m2','rates':{'input':0.255,'output':1.02}},'minimax/minimax-m2-her':{'modelId':'minimax/minimax-m2-her','rates':{'input':0.3,'output':1.2,'cacheRead':0.03}},'minimax/minimax-m2.1':{'modelId':_0x5a09f8(0x254,0x16e,0x84,-0x206),'rates':{'input':0.3,'output':1.2,'cacheRead':0.03}},'minimax/minimax-m2.5':{'modelId':_0x16b4a2(0x769,0x24f,0x54a,0x7dc),'rates':{'input':0.15,'output':0.9,'cacheRead':0.05}},'minimax/minimax-m2.7':{'modelId':_0x16b4a2(-0x75,-0x359,-0x63,-0x5b),'rates':{'input':0.25,'output':0x1,'cacheRead':0.05}},'minimax/minimax-m3':{'modelId':_0x5a09f8(-0x92,0xd9,-0x9d,-0x151),'rates':{'input':0.3,'output':1.2,'cacheRead':0.06}},'mistralai/codestral-2508':{'modelId':_0x5a09f8(0x4aa,0x5a3,0x964,0x53f),'rates':{'input':0.3,'output':0.9,'cacheRead':0.03}},'mistralai/devstral-2512':{'modelId':_0x5a09f8(-0x228,-0x1c0,-0x1bc,-0x1fd),'rates':{'input':0.4,'output':0x2,'cacheRead':0.04}},'mistralai/ministral-14b-2512':{'modelId':_0x5a09f8(0x3e0,0x450,0x806,0x650),'rates':{'input':0.2,'output':0.2,'cacheRead':0.02}},'mistralai/ministral-3b-2512':{'modelId':'mistralai/ministral-3b-2512','rates':{'input':0.1,'output':0.1,'cacheRead':0.01}},'mistralai/ministral-8b-2512':{'modelId':_0x5a09f8(0x272,-0x54,0x1b,-0x360),'rates':{'input':0.15,'output':0.15,'cacheRead':0.015}},'mistralai/mistral-large':{'modelId':_0x16b4a2(0x2b8,0x5a9,0x3d7,0x665),'rates':{'input':0x2,'output':0x6,'cacheRead':0.2}},'mistralai/mistral-large-2407':{'modelId':_0x16b4a2(0x1ef,0x143,0x13f,-0x1ce),'rates':{'input':0x2,'output':0x6,'cacheRead':0.2}},'mistralai/mistral-large-2512':{'modelId':_0x5a09f8(0x391,0x32b,0x90,0x62b),'rates':{'input':0.5,'output':1.5,'cacheRead':0.05}},'mistralai/mistral-medium-3':{'modelId':_0x16b4a2(-0x13e,-0x104,0x14e,0x503),'rates':{'input':0.4,'output':0x2,'cacheRead':0.04}},'mistralai/mistral-medium-3-5':{'modelId':'mistralai/mistral-medium-3-5','rates':{'input':1.5,'output':7.5}},'mistralai/mistral-medium-3.1':{'modelId':_0x16b4a2(0x1aa,0x260,0x433,0xd8),'rates':{'input':0.4,'output':0x2,'cacheRead':0.04}},'mistralai/mistral-nemo':{'modelId':_0x5a09f8(0x84,-0x3,-0x15c,-0x106),'rates':{'input':0.019,'output':0.03}},'mistralai/mistral-saba':{'modelId':'mistralai/mistral-saba','rates':{'input':0.2,'output':0.6,'cacheRead':0.02}},'mistralai/mistral-small-24b-instruct-2501':{'modelId':_0x16b4a2(-0x25b,-0x38a,-0x111,-0x7e),'rates':{'input':0.05,'output':0.08}},'mistralai/mistral-small-2603':{'modelId':'mistralai/mistral-small-2603','rates':{'input':0.15,'output':0.6,'cacheRead':0.015}},'mistralai/mistral-small-3.1-24b-instruct':{'modelId':_0x16b4a2(0x5c4,0x677,0x598,0x93a),'rates':{'input':0.351,'output':0.555}},'mistralai/mistral-small-3.2-24b-instruct':{'modelId':'mistralai/mistral-small-3.2-24b-instruct','rates':{'input':0.1,'output':0.3,'cacheRead':0.01}},'mistralai/mixtral-8x22b-instruct':{'modelId':_0x5a09f8(0x232,0x57b,0x49e,0x5ee),'rates':{'input':0x2,'output':0x6,'cacheRead':0.2}},'mistralai/voxtral-small-24b-2507':{'modelId':_0x5a09f8(0x4e0,0x151,0x4bf,0x373),'rates':{'input':0.1,'output':0.3,'cacheRead':0.01}},'moonshotai/kimi-k2':{'modelId':_0x16b4a2(0x22c,-0x2bf,0x3c,-0x237),'rates':{'input':0.57,'output':2.3}},'moonshotai/kimi-k2-0905':{'modelId':_0x16b4a2(-0x1a3,0x305,0xa6,-0x108),'rates':{'input':0.6,'output':2.5}},'moonshotai/kimi-k2-thinking':{'modelId':_0x5a09f8(0x28c,0x16a,0x4a5,0x1eb),'rates':{'input':0.6,'output':2.5,'cacheRead':0.15}},'moonshotai/kimi-k2.5':{'modelId':'moonshotai/kimi-k2.5','rates':{'input':0.57,'output':2.85,'cacheRead':0.095}},'moonshotai/kimi-k2.6':{'modelId':_0x16b4a2(0x403,0x3d9,0x3cb,0x3e1),'rates':{'input':0.684,'output':3.42,'cacheRead':0.144}},'moonshotai/kimi-k2.7-code':{'modelId':'moonshotai/kimi-k2.7-code','rates':{'input':0.78,'output':3.5,'cacheRead':0.15}},'moonshotai/kimi-k3':{'modelId':'moonshotai/kimi-k3','rates':{'input':0x3,'output':0xf,'cacheRead':0.3}},'morph/morph-v3-fast':{'modelId':'morph/morph-v3-fast','rates':{'input':0.8,'output':1.2}},'morph/morph-v3-large':{'modelId':'morph/morph-v3-large','rates':{'input':0.9,'output':1.9}},'nex-agi/nex-n2-mini':{'modelId':_0x5a09f8(0x621,0x44e,0x6e9,0x5dc),'rates':{'input':0.025,'output':0.1,'cacheRead':0.0025}},'nex-agi/nex-n2-pro':{'modelId':_0x16b4a2(0x9e,0x5e,-0x73,-0x389),'rates':{'input':0.25,'output':0x1,'cacheRead':0.025}},'nousresearch/hermes-3-llama-3.1-405b':{'modelId':'nousresearch/hermes-3-llama-3.1-405b','rates':{'input':0x1,'output':0x1}},'nousresearch/hermes-3-llama-3.1-70b':{'modelId':'nousresearch/hermes-3-llama-3.1-70b','rates':{'input':0.7,'output':0.7}},'nousresearch/hermes-4-405b':{'modelId':'nousresearch/hermes-4-405b','rates':{'input':0x1,'output':0x3}},'nousresearch/hermes-4-70b':{'modelId':_0x16b4a2(0x2e9,0x1d2,0x578,0x799),'rates':{'input':0.13,'output':0.4}},'nvidia/nemotron-3-nano-30b-a3b':{'modelId':_0x16b4a2(0x513,0x4f5,0x3c4,0x27a),'rates':{'input':0.05,'output':0.2}},'nvidia/nemotron-3-nano-30b-a3b:free':{'modelId':_0x16b4a2(-0x200,0x26e,0x73,0xa6),'rates':{'input':0x0,'output':0x0}},'nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free':{'modelId':_0x16b4a2(-0x37b,-0x3e3,-0xfa,0xa3),'rates':{'input':0x0,'output':0x0}},'nvidia/nemotron-3-super-120b-a12b':{'modelId':_0x5a09f8(0x28d,0x277,0x284,0x520),'rates':{'input':0.085,'output':0.4}},'nvidia/nemotron-3-super-120b-a12b:free':{'modelId':_0x5a09f8(0xb5,0x2ce,0x2f5,0x46c),'rates':{'input':0x0,'output':0x0}},'nvidia/nemotron-3-ultra-550b-a55b':{'modelId':'nvidia/nemotron-3-ultra-550b-a55b','rates':{'input':0.6,'output':3.6,'cacheRead':0.2}},'nvidia/nemotron-3-ultra-550b-a55b:free':{'modelId':_0x16b4a2(-0x10e,-0x414,-0xaa,-0x26e),'rates':{'input':0x0,'output':0x0}},'nvidia/nemotron-3.5-content-safety:free':{'modelId':_0x16b4a2(0x1ba,0x2c6,0x268,0x9),'rates':{'input':0x0,'output':0x0}},'nvidia/nemotron-nano-12b-v2-vl:free':{'modelId':_0x5a09f8(-0x2d9,0x70,-0x231,-0x265),'rates':{'input':0x0,'output':0x0}},'nvidia/nemotron-nano-9b-v2:free':{'modelId':_0x16b4a2(0xc,0x483,0xe4,0x22c),'rates':{'input':0x0,'output':0x0}},'openai/gpt-3.5-turbo':{'modelId':'openai/gpt-3.5-turbo','rates':{'input':0.5,'output':1.5}},'openai/gpt-3.5-turbo-0613':{'modelId':_0x16b4a2(0x6b0,0x4cc,0x55d,0x624),'rates':{'input':0x1,'output':0x2}},'openai/gpt-3.5-turbo-16k':{'modelId':_0x16b4a2(-0x4f,0x136,0x191,0x2ea),'rates':{'input':0x3,'output':0x4}},'openai/gpt-3.5-turbo-instruct':{'modelId':_0x16b4a2(0x5ac,0x30b,0x3bd,0x6dd),'rates':{'input':1.5,'output':0x2}},'openai/gpt-4':{'modelId':_0x5a09f8(-0x292,-0x64,0x140,-0x2c0),'rates':{'input':0x1e,'output':0x3c}},'openai/gpt-4-turbo':{'modelId':_0x16b4a2(0x453,0x28d,0x127,-0x198),'rates':{'input':0xa,'output':0x1e}},'openai/gpt-4-turbo-preview':{'modelId':_0x5a09f8(0x39d,0x3aa,0x2f7,0x44),'rates':{'input':0xa,'output':0x1e}},'openai/gpt-4.1':{'modelId':'openai/gpt-4.1','rates':{'input':0x2,'output':0x8,'cacheRead':0.5}},'openai/gpt-4.1-mini':{'modelId':_0x5a09f8(0x355,0x2d,-0x380,0x1b),'rates':{'input':0.4,'output':1.6,'cacheRead':0.1}},'openai/gpt-4.1-nano':{'modelId':_0x16b4a2(0x434,0x26f,0x2e9,-0x86),'rates':{'input':0.1,'output':0.4,'cacheRead':0.025}},'openai/gpt-4o':{'modelId':_0x16b4a2(-0xb0,0x281,0x88,-0x242),'rates':{'input':2.5,'output':0xa,'cacheRead':1.25}},'openai/gpt-4o-2024-05-13':{'modelId':'openai/gpt-4o-2024-05-13','rates':{'input':0x5,'output':0xf}},'openai/gpt-4o-2024-08-06':{'modelId':_0x16b4a2(-0x170,0x35d,0x14c,-0x5a),'rates':{'input':2.5,'output':0xa,'cacheRead':1.25}},'openai/gpt-4o-2024-11-20':{'modelId':_0x16b4a2(0x242,0x4d1,0x39d,0x448),'rates':{'input':2.5,'output':0xa,'cacheRead':1.25}},'openai/gpt-4o-mini':{'modelId':_0x16b4a2(0x9b,0x268,0x6d,-0x4a),'rates':{'input':0.15,'output':0.6,'cacheRead':0.075}},'openai/gpt-4o-mini-2024-07-18':{'modelId':_0x16b4a2(0x137,0x225,0x3ca,0x74),'rates':{'input':0.15,'output':0.6,'cacheRead':0.075}},'openai/gpt-4o-mini-search-preview':{'modelId':_0x16b4a2(0x11e,0xd2,-0x171,-0x4d4),'rates':{'input':0.15,'output':0.6}},'openai/gpt-4o-search-preview':{'modelId':'openai/gpt-4o-search-preview','rates':{'input':2.5,'output':0xa}},'openai/gpt-5':{'modelId':_0x5a09f8(0x3,-0xe9,-0x2bb,-0x1df),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125}},'openai/gpt-5-chat':{'modelId':_0x5a09f8(0xe5,-0xb4,0x2e2,-0x2e0),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125}},'openai/gpt-5-codex':{'modelId':_0x5a09f8(0x167,0x26a,0xc,-0x1c),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125}},'openai/gpt-5-image':{'modelId':'openai/gpt-5-image','rates':{'input':0xa,'output':0xa,'cacheRead':1.25}},'openai/gpt-5-image-mini':{'modelId':_0x5a09f8(-0x14e,-0x33,0x351,0x358),'rates':{'input':2.5,'output':0x2,'cacheRead':0.25}},'openai/gpt-5-mini':{'modelId':_0x5a09f8(0x180,-0x110,0x8b,-0x14f),'rates':{'input':0.25,'output':0x2,'cacheRead':0.025}},'openai/gpt-5-nano':{'modelId':'openai/gpt-5-nano','rates':{'input':0.05,'output':0.4,'cacheRead':0.005}},'openai/gpt-5-pro':{'modelId':_0x5a09f8(-0x2b2,-0x1c3,-0x24d,-0x3ea),'rates':{'input':0xf,'output':0x78}},'openai/gpt-5.1':{'modelId':_0x16b4a2(-0x10a,0x1f8,0x243,-0x55),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125}},'openai/gpt-5.1-chat':{'modelId':_0x5a09f8(0x746,0x3f2,0x468,0x73f),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125}},'openai/gpt-5.1-codex':{'modelId':_0x5a09f8(0x33c,0x488,0x81a,0x6ec),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125}},'openai/gpt-5.1-codex-max':{'modelId':'openai/gpt-5.1-codex-max','rates':{'input':1.25,'output':0xa,'cacheRead':0.125}},'openai/gpt-5.1-codex-mini':{'modelId':_0x16b4a2(0x82,-0xd3,0x0,-0x120),'rates':{'input':0.25,'output':0x2,'cacheRead':0.025}},'openai/gpt-5.2':{'modelId':'openai/gpt-5.2','rates':{'input':1.75,'output':0xe,'cacheRead':0.175}},'openai/gpt-5.2-chat':{'modelId':_0x5a09f8(-0x1a6,-0x1a8,0x4a,0x71),'rates':{'input':1.75,'output':0xe,'cacheRead':0.175}},'openai/gpt-5.2-codex':{'modelId':'openai/gpt-5.2-codex','rates':{'input':1.75,'output':0xe,'cacheRead':0.175}},'openai/gpt-5.2-pro':{'modelId':_0x5a09f8(0x335,0x481,0x457,0x28d),'rates':{'input':0x15,'output':0xa8}},'openai/gpt-5.3-chat':{'modelId':'openai/gpt-5.3-chat','rates':{'input':1.75,'output':0xe,'cacheRead':0.175}},'openai/gpt-5.3-codex':{'modelId':_0x16b4a2(-0x12d,-0x78,0x1cc,0x3fe),'rates':{'input':1.75,'output':0xe,'cacheRead':0.175}},'openai/gpt-5.4':{'modelId':_0x16b4a2(0x439,0x182,0x436,0x5a2),'rates':{'input':2.5,'output':0xf,'cacheRead':0.25}},'openai/gpt-5.4-image-2':{'modelId':'openai/gpt-5.4-image-2','rates':{'input':0x8,'output':0xf,'cacheRead':0x2}},'openai/gpt-5.4-mini':{'modelId':_0x16b4a2(-0x32,-0x7e,0x321,0x161),'rates':{'input':0.75,'output':4.5,'cacheRead':0.075}},'openai/gpt-5.4-nano':{'modelId':_0x5a09f8(0x1de,0x4c8,0x18b,0x82e),'rates':{'input':0.2,'output':1.25,'cacheRead':0.02}},'openai/gpt-5.4-pro':{'modelId':_0x16b4a2(0x39,0x589,0x355,0x2fd),'rates':{'input':0x1e,'output':0xb4}},'openai/gpt-5.5':{'modelId':'openai/gpt-5.5','rates':{'input':0x5,'output':0x1e,'cacheRead':0.5}},'openai/gpt-5.5-pro':{'modelId':_0x5a09f8(0x251,0x17c,0x3d0,-0xe7),'rates':{'input':0x1e,'output':0xb4}},'openai/gpt-5.6-luna':{'modelId':_0x5a09f8(-0x13d,-0x1bd,-0x209,-0x2e3),'rates':{'input':0x1,'output':0x6,'cacheRead':0.1,'cacheWrite':1.25}},'openai/gpt-5.6-luna-pro':{'modelId':_0x16b4a2(-0x27f,0x1ed,-0x138,-0x93),'rates':{'input':0x1,'output':0x6,'cacheRead':0.1,'cacheWrite':1.25}},'openai/gpt-5.6-sol':{'modelId':_0x16b4a2(0x181,0x165,0x2af,0x45d),'rates':{'input':0x5,'output':0x1e,'cacheRead':0.5,'cacheWrite':6.25}},'openai/gpt-5.6-sol-pro':{'modelId':_0x5a09f8(0x3db,0x281,0x37d,0x29b),'rates':{'input':0x5,'output':0x1e,'cacheRead':0.5,'cacheWrite':6.25}},'openai/gpt-5.6-terra':{'modelId':_0x5a09f8(0x575,0x425,0x1ea,0x3fd),'rates':{'input':2.5,'output':0xf,'cacheRead':0.25,'cacheWrite':3.125}},'openai/gpt-5.6-terra-pro':{'modelId':_0x5a09f8(-0x1f8,-0x85,-0x207,-0x34c),'rates':{'input':2.5,'output':0xf,'cacheRead':0.25,'cacheWrite':3.125}},'openai/gpt-audio':{'modelId':_0x5a09f8(0x493,0x3c4,0x48f,0x2cb),'rates':{'input':2.5,'output':0xa}},'openai/gpt-audio-mini':{'modelId':_0x5a09f8(0x3c4,0xcd,-0x154,0x178),'rates':{'input':0.6,'output':2.4}},'openai/gpt-chat-latest':{'modelId':_0x5a09f8(0x42b,0x373,0x616,0x6ae),'rates':{'input':0x5,'output':0x1e,'cacheRead':0.5}},'openai/gpt-oss-120b':{'modelId':_0x5a09f8(0x41,0x247,-0xce,0x6d),'rates':{'input':0.037,'output':0.17}},'openai/gpt-oss-20b':{'modelId':_0x5a09f8(-0x333,0x68,0x264,0x124),'rates':{'input':0.03,'output':0.13,'cacheRead':0.03}},'openai/gpt-oss-20b:free':{'modelId':_0x16b4a2(0x1ea,0xe9,0x2a0,0x15b),'rates':{'input':0x0,'output':0x0}},'openai/gpt-oss-safeguard-20b':{'modelId':'openai/gpt-oss-safeguard-20b','rates':{'input':0.075,'output':0.3,'cacheRead':0.0375}},'openai/o1':{'modelId':_0x5a09f8(0x244,-0x79,-0x3c8,-0x3e4),'rates':{'input':0xf,'output':0x3c,'cacheRead':7.5}},'openai/o1-pro':{'modelId':_0x16b4a2(0x121,0x52e,0x49f,0x76f),'rates':{'input':0x96,'output':0x258}},'openai/o3':{'modelId':_0x16b4a2(0x13b,0x4ff,0x150,0xda),'rates':{'input':0x2,'output':0x8,'cacheRead':0.5}},'openai/o3-deep-research':{'modelId':_0x5a09f8(-0xcb,-0x155,-0x52,0x1ee),'rates':{'input':0xa,'output':0x28,'cacheRead':2.5}},'openai/o3-mini':{'modelId':_0x5a09f8(0x1f9,-0x6c,0x150,0x113),'rates':{'input':1.1,'output':4.4,'cacheRead':0.55}},'openai/o3-mini-high':{'modelId':_0x5a09f8(0xd5,0x5e,0x275,0x340),'rates':{'input':1.1,'output':4.4,'cacheRead':0.55}},'openai/o3-pro':{'modelId':'openai/o3-pro','rates':{'input':0x14,'output':0x50}},'openai/o4-mini':{'modelId':_0x5a09f8(0x615,0x3da,0x573,0x11d),'rates':{'input':1.1,'output':4.4,'cacheRead':0.275}},'openai/o4-mini-deep-research':{'modelId':_0x16b4a2(0x4a,0x1e1,0x211,0x1ae),'rates':{'input':0x2,'output':0x8,'cacheRead':0.5}},'openai/o4-mini-high':{'modelId':_0x16b4a2(0x33d,0x5cc,0x20e,0x9d),'rates':{'input':1.1,'output':4.4,'cacheRead':0.275}},'openrouter/free':{'modelId':_0x16b4a2(0x5ec,-0x12a,0x297,0x31),'rates':{'input':0x0,'output':0x0}},'perceptron/perceptron-mk1':{'modelId':_0x5a09f8(0x1ce,0x298,0x35b,0x44f),'rates':{'input':0.15,'output':1.5}},'perplexity/sonar':{'modelId':_0x5a09f8(0x677,0x2c5,0x555,-0x77),'rates':{'input':0x1,'output':0x1}},'perplexity/sonar-deep-research':{'modelId':_0x5a09f8(0x43f,0x2f0,0x18c,0x543),'rates':{'input':0x2,'output':0x8,'reasoning':0x3}},'perplexity/sonar-pro':{'modelId':_0x16b4a2(0x64f,0x887,0x58d,0x342),'rates':{'input':0x3,'output':0xf}},'perplexity/sonar-pro-search':{'modelId':'perplexity/sonar-pro-search','rates':{'input':0x3,'output':0xf}},'perplexity/sonar-reasoning-pro':{'modelId':'perplexity/sonar-reasoning-pro','rates':{'input':0x2,'output':0x8}},'poolside/laguna-m.1':{'modelId':_0x5a09f8(0xf4,-0x17b,0x124,0xf7),'rates':{'input':0.2,'output':0.4,'cacheRead':0.1}},'poolside/laguna-m.1:free':{'modelId':_0x16b4a2(0x169,0x453,0x2ac,0x661),'rates':{'input':0x0,'output':0x0}},'poolside/laguna-s-2.1':{'modelId':'poolside/laguna-s-2.1','rates':{'input':0.1,'output':0.2,'cacheRead':0.01}},'poolside/laguna-s-2.1:free':{'modelId':'poolside/laguna-s-2.1:free','rates':{'input':0x0,'output':0x0}},'poolside/laguna-xs-2.1':{'modelId':_0x16b4a2(0x3ac,0x6e2,0x53a,0x413),'rates':{'input':0.06,'output':0.12,'cacheRead':0.03}},'poolside/laguna-xs-2.1:free':{'modelId':_0x5a09f8(0x229,0x143,0x3b7,0x3c9),'rates':{'input':0x0,'output':0x0}},'qwen/qwen-2.5-72b-instruct':{'modelId':'qwen/qwen-2.5-72b-instruct','rates':{'input':0.36,'output':0.4}},'qwen/qwen-2.5-7b-instruct':{'modelId':_0x5a09f8(0x40d,0x149,0x108,-0x80),'rates':{'input':0.04,'output':0.1}},'qwen/qwen-2.5-coder-32b-instruct':{'modelId':_0x16b4a2(0x2af,0x14b,0x48f,0x548),'rates':{'input':0.66,'output':0x1}},'qwen/qwen-plus':{'modelId':_0x16b4a2(0xa8,-0x80,0x2d2,0x678),'rates':{'input':0.26,'output':0.78,'cacheRead':0.052,'cacheWrite':0.325}},'qwen/qwen-plus-2025-07-28':{'modelId':_0x16b4a2(-0x19f,-0x31e,-0x10b,0xfa),'rates':{'input':0.26,'output':0.78}},'qwen/qwen-plus-2025-07-28:thinking':{'modelId':_0x5a09f8(0x199,0x420,0x675,0xdd),'rates':{'input':0.26,'output':0.78,'cacheWrite':0.325}},'qwen/qwen2.5-vl-72b-instruct':{'modelId':_0x5a09f8(0x22d,-0xce,0xef,0x171),'rates':{'input':0.8,'output':0x1,'cacheRead':0.4}},'qwen/qwen3-14b':{'modelId':_0x16b4a2(0xa8,0x167,0x32c,0x35b),'rates':{'input':0.2275,'output':0.91}},'qwen/qwen3-235b-a22b':{'modelId':_0x16b4a2(0x19e,0x1a8,0x1df,-0x16),'rates':{'input':0.455,'output':1.82}},'qwen/qwen3-235b-a22b-2507':{'modelId':_0x16b4a2(0x6f,0x38d,0x309,0x338),'rates':{'input':0.09,'output':0.55}},'qwen/qwen3-235b-a22b-thinking-2507':{'modelId':_0x5a09f8(0x16c,-0xb2,0x28c,0x54),'rates':{'input':0.3,'output':0x3}},'qwen/qwen3-30b-a3b':{'modelId':'qwen/qwen3-30b-a3b','rates':{'input':0.13,'output':0.52}},'qwen/qwen3-30b-a3b-instruct-2507':{'modelId':_0x5a09f8(0x58f,0x3bf,0xb6,0x31),'rates':{'input':0.1,'output':0.3}},'qwen/qwen3-30b-a3b-thinking-2507':{'modelId':_0x16b4a2(0x468,0x79f,0x410,0x747),'rates':{'input':0.13,'output':1.56}},'qwen/qwen3-32b':{'modelId':'qwen/qwen3-32b','rates':{'input':0.08,'output':0.28}},'qwen/qwen3-8b':{'modelId':_0x16b4a2(0x770,0x526,0x57a,0x48e),'rates':{'input':0.117,'output':0.455}},'qwen/qwen3-coder':{'modelId':'qwen/qwen3-coder','rates':{'input':0.3,'output':0x1,'cacheRead':0.1}},'qwen/qwen3-coder-30b-a3b-instruct':{'modelId':_0x16b4a2(0x2f,0x4db,0x379,0x261),'rates':{'input':0.07,'output':0.27}},'qwen/qwen3-coder-flash':{'modelId':'qwen/qwen3-coder-flash','rates':{'input':0.195,'output':0.975,'cacheRead':0.039,'cacheWrite':0.24375}},'qwen/qwen3-coder-next':{'modelId':_0x16b4a2(-0x285,-0x36e,-0x12b,-0xd1),'rates':{'input':0.11,'output':0.8,'cacheRead':0.07}},'qwen/qwen3-coder-plus':{'modelId':_0x5a09f8(0x62,0x3ab,0x337,0x5e9),'rates':{'input':0.65,'output':3.25,'cacheRead':0.13,'cacheWrite':0.8125}},'qwen/qwen3-max':{'modelId':_0x16b4a2(0x1c0,0x37e,0x3be,0x4d2),'rates':{'input':0.78,'output':3.9,'cacheRead':0.156,'cacheWrite':0.975}},'qwen/qwen3-max-thinking':{'modelId':_0x5a09f8(0x221,-0x11c,-0x1d8,-0x3df),'rates':{'input':0.78,'output':3.9}},'qwen/qwen3-next-80b-a3b-instruct':{'modelId':'qwen/qwen3-next-80b-a3b-instruct','rates':{'input':0.1,'output':1.1,'cacheRead':0.07}},'qwen/qwen3-next-80b-a3b-thinking':{'modelId':_0x16b4a2(0x5a,0x171,0x1f9,0xaf),'rates':{'input':0.0975,'output':0.78}},'qwen/qwen3-vl-235b-a22b-instruct':{'modelId':_0x16b4a2(0x339,0x87,0xa7,-0x316),'rates':{'input':0.21,'output':1.9,'cacheRead':0.1}},'qwen/qwen3-vl-235b-a22b-thinking':{'modelId':_0x16b4a2(0x5b5,0x6ad,0x45e,0x647),'rates':{'input':0.26,'output':2.6}},'qwen/qwen3-vl-30b-a3b-instruct':{'modelId':_0x5a09f8(0xac,-0xa0,-0x40f,-0x3bc),'rates':{'input':0.15,'output':0.6}},'qwen/qwen3-vl-30b-a3b-thinking':{'modelId':_0x5a09f8(-0xab,-0x19b,-0xb1,-0x4ac),'rates':{'input':0.13,'output':1.56}},'qwen/qwen3-vl-32b-instruct':{'modelId':_0x16b4a2(-0x291,0x16e,0x105,0x3db),'rates':{'input':0.104,'output':0.416}},'qwen/qwen3-vl-8b-instruct':{'modelId':'qwen/qwen3-vl-8b-instruct','rates':{'input':0.117,'output':0.455}},'qwen/qwen3-vl-8b-thinking':{'modelId':_0x16b4a2(-0x2d8,0x18e,0x7,-0x169),'rates':{'input':0.117,'output':1.365}},'qwen/qwen3.5-122b-a10b':{'modelId':_0x5a09f8(0x42e,0x367,0x66f,0x4d5),'rates':{'input':0.26,'output':2.08}},'qwen/qwen3.5-27b':{'modelId':_0x5a09f8(0x72,0x159,0x44f,-0x1a4),'rates':{'input':0.195,'output':1.56}},'qwen/qwen3.5-35b-a3b':{'modelId':_0x16b4a2(0x247,-0x2c5,-0x21,-0x258),'rates':{'input':0.14,'output':0x1}},'qwen/qwen3.5-397b-a17b':{'modelId':_0x16b4a2(-0x1e0,0x23f,-0x40,-0x314),'rates':{'input':0.39,'output':2.34}},'qwen/qwen3.5-9b':{'modelId':_0x5a09f8(-0x2b6,-0x1ce,0x126,-0x567),'rates':{'input':0.1,'output':0.15}},'qwen/qwen3.5-flash-02-23':{'modelId':_0x16b4a2(-0x2e5,0x200,-0x176,-0x2ef),'rates':{'input':0.065,'output':0.26}},'qwen/qwen3.5-plus-02-15':{'modelId':'qwen/qwen3.5-plus-02-15','rates':{'input':0.26,'output':1.56}},'qwen/qwen3.5-plus-20260420':{'modelId':_0x5a09f8(0x86,0x2c8,0x58b,0x2f3),'rates':{'input':0.3,'output':1.8,'cacheWrite':0.375}},'qwen/qwen3.6-27b':{'modelId':_0x5a09f8(0x58,0x18e,0x112,0x4b4),'rates':{'input':0.289,'output':2.4}},'qwen/qwen3.6-35b-a3b':{'modelId':_0x16b4a2(0x4a1,0x5e9,0x2bb,-0x1c),'rates':{'input':0.14,'output':0x1}},'qwen/qwen3.6-flash':{'modelId':_0x16b4a2(0x18b,0x7e4,0x469,0x184),'rates':{'input':0.1875,'output':1.125,'cacheWrite':0.234375}},'qwen/qwen3.6-max-preview':{'modelId':_0x5a09f8(0x167,0x516,0x4f5,0x664),'rates':{'input':1.04,'output':6.24,'cacheWrite':1.3}},'qwen/qwen3.6-plus':{'modelId':_0x5a09f8(-0x258,-0xaa,0x130,0xe8),'rates':{'input':0.325,'output':1.95,'cacheWrite':0.40625}},'qwen/qwen3.7-max':{'modelId':_0x5a09f8(0x724,0x451,0x12e,0x719),'rates':{'input':1.475,'output':4.425,'cacheRead':0.295,'cacheWrite':1.84375}},'qwen/qwen3.7-plus':{'modelId':_0x16b4a2(0x778,0x200,0x507,0x5ed),'rates':{'input':0.32,'output':1.28,'cacheRead':0.064,'cacheWrite':0.4}},'rekaai/reka-edge':{'modelId':_0x5a09f8(0x6f7,0x4a7,0x23e,0x1ee),'rates':{'input':0.1,'output':0.1}},'rekaai/reka-flash-3':{'modelId':_0x16b4a2(-0x97,0x19d,-0xb8,0xb1),'rates':{'input':0.1,'output':0.2}},'relace/relace-apply-3':{'modelId':_0x5a09f8(0xc8,-0x82,0x24c,0x31f),'rates':{'input':0.85,'output':1.25}},'relace/relace-search':{'modelId':'relace/relace-search','rates':{'input':0x1,'output':0x3}},'sakana/fugu-ultra':{'modelId':_0x5a09f8(0x2c7,0x4c2,0x525,0x755),'rates':{'input':0x5,'output':0x1e,'cacheRead':0.5}},'sao10k/l3-lunaris-8b':{'modelId':'sao10k/l3-lunaris-8b','rates':{'input':0.04,'output':0.05}},'sao10k/l3.1-euryale-70b':{'modelId':_0x5a09f8(0x3cb,0x65,-0x28e,-0x23c),'rates':{'input':0.85,'output':0.85}},'sao10k/l3.3-euryale-70b':{'modelId':_0x5a09f8(0x458,0x501,0x81d,0x7ed),'rates':{'input':0.65,'output':0.75}},'stepfun/step-3.5-flash':{'modelId':_0x5a09f8(-0x2a2,-0x66,0x200,-0x2bd),'rates':{'input':0.1,'output':0.3}},'stepfun/step-3.7-flash':{'modelId':'stepfun/step-3.7-flash','rates':{'input':0.2,'output':1.15,'cacheRead':0.04}},'tencent/hunyuan-a13b-instruct':{'modelId':_0x5a09f8(-0x1bc,0x113,0x96,0x22b),'rates':{'input':0.14,'output':0.57}},'tencent/hy3':{'modelId':_0x5a09f8(-0x447,-0x9b,0x130,0x46),'rates':{'input':0.132,'output':0.528,'cacheRead':0.033}},'tencent/hy3-preview':{'modelId':_0x16b4a2(0x740,0x32a,0x3f6,0x65f),'rates':{'input':0.063,'output':0.21,'cacheRead':0.021}},'thedrummer/cydonia-24b-v4.1':{'modelId':'thedrummer/cydonia-24b-v4.1','rates':{'input':0.3,'output':0.5,'cacheRead':0.15}},'thedrummer/rocinante-12b':{'modelId':_0x5a09f8(-0x14,0x12a,0x375,0x3f9),'rates':{'input':0.25,'output':0.5}},'thedrummer/skyfall-36b-v2':{'modelId':_0x5a09f8(0x882,0x546,0x815,0x6dd),'rates':{'input':0.55,'output':0.8,'cacheRead':0.25}},'thedrummer/unslopnemo-12b':{'modelId':_0x16b4a2(0x1cb,0x2bf,0x3d8,0x14e),'rates':{'input':0.4,'output':0.4}},'thinkingmachines/inkling':{'modelId':'thinkingmachines/inkling','rates':{'input':0x1,'output':4.05,'cacheRead':0.17}},'undi95/remm-slerp-l2-13b':{'modelId':_0x5a09f8(0x30a,0xc0,0x372,-0x104),'rates':{'input':0.45,'output':0.65}},'upstage/solar-pro-3':{'modelId':'upstage/solar-pro-3','rates':{'input':0.15,'output':0.6,'cacheRead':0.015}},'writer/palmyra-x5':{'modelId':_0x16b4a2(0x221,-0x62,-0x7e,-0x1bd),'rates':{'input':0.6,'output':0x6}},'x-ai/grok-4.20':{'modelId':_0x5a09f8(0x460,0x446,0x6a6,0x434),'rates':{'input':1.25,'output':2.5,'cacheRead':0.2}},'x-ai/grok-4.20-multi-agent':{'modelId':_0x16b4a2(0x462,0x2f2,0x540,0x524),'rates':{'input':1.25,'output':2.5,'cacheRead':0.2}},'x-ai/grok-4.3':{'modelId':_0x5a09f8(-0x17f,-0x3e,-0x3a2,0x373),'rates':{'input':1.25,'output':2.5,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.5,'output':0x5,'cacheRead':0.4}]},'x-ai/grok-4.5':{'modelId':_0x16b4a2(0x7c7,0x826,0x4c1,0x690),'rates':{'input':0x2,'output':0x6,'cacheRead':0.3},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x4,'output':0xc,'cacheRead':0x1}]},'x-ai/grok-build-0.1':{'modelId':_0x16b4a2(0x763,0x2d7,0x5f9,0x936),'rates':{'input':0x1,'output':0x2,'cacheRead':0.2}},'xiaomi/mimo-v2.5':{'modelId':'xiaomi/mimo-v2.5','rates':{'input':0.14,'output':0.28,'cacheRead':0.0028}},'xiaomi/mimo-v2.5-pro':{'modelId':_0x5a09f8(-0x2c,0x123,-0x1f3,0xc),'rates':{'input':0.435,'output':0.87,'cacheRead':0.0036}},'z-ai/glm-4.5':{'modelId':'z-ai/glm-4.5','rates':{'input':0.6,'output':2.2,'cacheRead':0.11}},'z-ai/glm-4.5-air':{'modelId':_0x16b4a2(-0x2e2,-0x64,0x86,-0x21a),'rates':{'input':0.13,'output':0.85,'cacheRead':0.025}},'z-ai/glm-4.5v':{'modelId':_0x5a09f8(0x724,0x399,0x280,0x5a),'rates':{'input':0.6,'output':1.8,'cacheRead':0.11}},'z-ai/glm-4.6':{'modelId':_0x16b4a2(-0x1d4,0x7f,-0x131,-0x350),'rates':{'input':0.5,'output':0x2,'cacheRead':0.1}},'z-ai/glm-4.6v':{'modelId':_0x16b4a2(0x477,0x210,0x58c,0x5f2),'rates':{'input':0.3,'output':0.9,'cacheRead':0.055}},'z-ai/glm-4.7':{'modelId':_0x5a09f8(0x77d,0x487,0x388,0x159),'rates':{'input':0.4,'output':1.75,'cacheRead':0.08}},'z-ai/glm-4.7-flash':{'modelId':_0x16b4a2(0x3e7,0xff,0x391,0x3bd),'rates':{'input':0.06,'output':0.4,'cacheRead':0.01}},'z-ai/glm-5':{'modelId':_0x16b4a2(0x63b,0x7a2,0x494,0x23a),'rates':{'input':0.95,'output':2.55,'cacheRead':0.2}},'z-ai/glm-5-turbo':{'modelId':_0x5a09f8(0xbd,0x21b,-0x181,-0x19e),'rates':{'input':1.2,'output':0x4,'cacheRead':0.24}},'z-ai/glm-5.1':{'modelId':_0x5a09f8(0x23a,0x3ba,0x11f,0x5c8),'rates':{'input':0.966,'output':3.036,'cacheRead':0.1794}},'z-ai/glm-5.2':{'modelId':_0x5a09f8(0x526,0x585,0x539,0x948),'rates':{'input':0.7966,'output':2.5036,'cacheRead':0.14794}},'z-ai/glm-5v-turbo':{'modelId':_0x5a09f8(-0x18e,0x12,0x2c7,-0x197),'rates':{'input':1.2,'output':0x4,'cacheRead':0.24}},'~anthropic/claude-fable-latest':{'modelId':'~anthropic/claude-fable-latest','rates':{'input':0xa,'output':0x32,'cacheRead':0x1,'cacheWrite':12.5}},'~anthropic/claude-haiku-latest':{'modelId':'~anthropic/claude-haiku-latest','rates':{'input':0x1,'output':0x5,'cacheRead':0.1,'cacheWrite':1.25}},'~anthropic/claude-opus-latest':{'modelId':_0x16b4a2(0x402,0x2b0,0x59b,0x749),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25}},'~anthropic/claude-sonnet-latest':{'modelId':_0x5a09f8(-0xa9,0x9a,0x2c8,0x348),'rates':{'input':0x2,'output':0xa,'cacheRead':0.2,'cacheWrite':2.5}},'~google/gemini-flash-latest':{'modelId':_0x16b4a2(0x16a,0x67,0x1dd,-0xfb),'rates':{'input':1.5,'output':7.5,'reasoning':7.5,'cacheRead':0.15,'cacheWrite':0.083333}},'~google/gemini-pro-latest':{'modelId':'~google/gemini-pro-latest','rates':{'input':0x2,'output':0xc,'reasoning':0xc,'cacheRead':0.2,'cacheWrite':0.375},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x4,'output':0x12,'cacheRead':0.4}]},'~moonshotai/kimi-latest':{'modelId':_0x16b4a2(0x2c2,-0x118,0xbe,0x233),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3}},'~openai/gpt-latest':{'modelId':_0x16b4a2(0x17,-0x31c,-0xa9,-0x234),'rates':{'input':0x5,'output':0x1e,'cacheRead':0.5,'cacheWrite':6.25}},'~openai/gpt-mini-latest':{'modelId':_0x16b4a2(-0x2a6,-0x3ea,-0x86,0xff),'rates':{'input':0.75,'output':4.5,'cacheRead':0.075}},'~x-ai/grok-latest':{'modelId':_0x16b4a2(-0xbf,-0x15a,-0x79,-0x1be),'rates':{'input':0x2,'output':0x6,'cacheRead':0.3}}}},'xai':{'providerId':_0x16b4a2(0x236,0x154,-0x49,-0x101),'models':{'grok-4.20-0309-non-reasoning':{'modelId':'grok-4.20-0309-non-reasoning','rates':{'input':1.25,'output':2.5,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.5,'output':0x5,'cacheRead':0.4}]},'grok-4.20-0309-reasoning':{'modelId':'grok-4.20-0309-reasoning','rates':{'input':1.25,'output':2.5,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.5,'output':0x5,'cacheRead':0.4}]},'grok-4.20-multi-agent-0309':{'modelId':_0x16b4a2(-0x2b8,-0x3b0,-0x68,-0x268),'rates':{'input':1.25,'output':2.5,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.5,'output':0x5,'cacheRead':0.4}]},'grok-4.3':{'modelId':_0x16b4a2(0x506,0x12f,0x15c,0x216),'rates':{'input':1.25,'output':2.5,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.5,'output':0x5,'cacheRead':0.4}]},'grok-4.5':{'modelId':_0x16b4a2(0x1a9,0x1d8,0x334,0x46e),'rates':{'input':0x2,'output':0x6,'cacheRead':0.3},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x4,'output':0xc,'cacheRead':0x1}]},'grok-build-0.1':{'modelId':_0x5a09f8(-0x2a1,-0x169,-0x33f,-0x421),'rates':{'input':0x1,'output':0x2,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x2,'output':0x4,'cacheRead':0.4}]}}},'xiaomi-token-plan-sgp':{'providerId':'xiaomi-token-plan-sgp','models':{'mimo-v2-pro':{'modelId':'mimo-v2-pro','rates':{'input':0x0,'output':0x0,'cacheRead':0x0}},'mimo-v2-tts':{'modelId':_0x16b4a2(0x4fb,0x36c,0x1bd,0x26),'rates':{'input':0x0,'output':0x0}},'mimo-v2.5':{'modelId':'mimo-v2.5','rates':{'input':0x0,'output':0x0,'cacheRead':0x0}},'mimo-v2.5-pro':{'modelId':_0x16b4a2(-0x334,-0x33f,-0x145,0x79),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0}},'mimo-v2.5-tts':{'modelId':_0x5a09f8(-0x154,0x7f,0x2b9,-0x322),'rates':{'input':0x0,'output':0x0}},'mimo-v2.5-tts-voiceclone':{'modelId':_0x16b4a2(0x57e,0x251,0x411,0x3eb),'rates':{'input':0x0,'output':0x0}},'mimo-v2.5-tts-voicedesign':{'modelId':_0x16b4a2(0x6f9,0x3a4,0x5f4,0x6bb),'rates':{'input':0x0,'output':0x0}}}},'zai-coding-plan':{'providerId':_0x16b4a2(0x1b1,0x22a,0x5,0x36b),'models':{'glm-4.5-air':{'modelId':_0x16b4a2(0x291,-0x362,-0xb7,-0xdb),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0}},'glm-4.7':{'modelId':_0x5a09f8(-0x85,0x1c0,-0x16e,0xbf),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0}},'glm-5-turbo':{'modelId':_0x5a09f8(-0x2d8,-0x11a,-0x4b1,-0x8e),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0}},'glm-5.1':{'modelId':_0x5a09f8(0x33a,0x467,0x5f4,0x5fc),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0}},'glm-5.2':{'modelId':_0x16b4a2(-0x154,0x1fb,0x159,0x6d),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0}},'glm-5v-turbo':{'modelId':'glm-5v-turbo','rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0}}}}},'safeModelFallbacks':{'@cf/aisingapore/gemma-sea-lion-v4-27b-it':{'modelId':_0x16b4a2(0x10d,0x117,-0x9e,0x300),'rates':{'input':0.351,'output':0.555},'pricingProviderIds':[_0x16b4a2(-0x36b,0x1a3,-0xea,-0x76)],'matchKind':_0x5a09f8(0x313,0x30a,0x186,0x3f4)},'@cf/deepseek-ai/deepseek-r1-distill-qwen-32b':{'modelId':_0x16b4a2(0x3b3,0x4ca,0x209,0x3a),'rates':{'input':0.497,'output':4.881},'pricingProviderIds':[_0x5a09f8(-0x33c,-0x149,0x24d,-0x197)],'matchKind':_0x5a09f8(0xe2,0x30a,0x6a9,0x100)},'@cf/google/gemma-4-26b-a4b-it':{'modelId':_0x16b4a2(0x51b,0x407,0x3ab,0x45d),'rates':{'input':0.1,'output':0.3},'pricingProviderIds':[_0x5a09f8(-0x247,-0x149,0x1a3,-0x498)],'matchKind':_0x16b4a2(0x6c4,0x19c,0x369,0x3c0)},'@cf/ibm-granite/granite-4.0-h-micro':{'modelId':_0x16b4a2(-0x386,-0x391,-0xd4,0x7b),'rates':{'input':0.017,'output':0.112},'pricingProviderIds':['cloudflare-workers-ai'],'matchKind':'model-unique'},'@cf/meta/llama-3.1-8b-instruct-fp8':{'modelId':_0x5a09f8(-0x21c,0x2,0x132,0x353),'rates':{'input':0.152,'output':0.287},'pricingProviderIds':[_0x5a09f8(-0x1d6,-0x149,0x129,0x185)],'matchKind':'model-unique'},'@cf/meta/llama-3.2-11b-vision-instruct':{'modelId':_0x5a09f8(0x13a,-0x154,-0xcc,0x7c),'rates':{'input':0.0485,'output':0.676},'pricingProviderIds':[_0x16b4a2(-0xba,-0x77,-0xea,-0x230)],'matchKind':_0x16b4a2(0x3e5,0xc0,0x369,0x267)},'@cf/meta/llama-3.2-1b-instruct':{'modelId':'@cf/meta/llama-3.2-1b-instruct','rates':{'input':0.027,'output':0.201},'pricingProviderIds':[_0x16b4a2(0x112,0x13a,-0xea,0x20a)],'matchKind':'model-unique'},'@cf/meta/llama-3.2-3b-instruct':{'modelId':_0x5a09f8(-0x260,-0x179,-0x275,-0x3ec),'rates':{'input':0.0509,'output':0.335},'pricingProviderIds':[_0x5a09f8(-0x2c7,-0x149,-0x149,0x149)],'matchKind':_0x5a09f8(0x5ad,0x30a,0x65,0x1ec)},'@cf/meta/llama-3.3-70b-instruct-fp8-fast':{'modelId':_0x5a09f8(0x532,0x1ed,0x246,-0x8e),'rates':{'input':0.293,'output':2.253},'pricingProviderIds':['cloudflare-workers-ai'],'matchKind':_0x5a09f8(0x68d,0x30a,0x63a,0xcd)},'@cf/meta/llama-4-scout-17b-16e-instruct':{'modelId':'@cf/meta/llama-4-scout-17b-16e-instruct','rates':{'input':0.27,'output':0.85},'pricingProviderIds':[_0x16b4a2(-0x24b,0x4a,-0xea,0xc3)],'matchKind':_0x5a09f8(0x62a,0x30a,0x163,0x497)},'@cf/meta/llama-guard-3-8b':{'modelId':'@cf/meta/llama-guard-3-8b','rates':{'input':0.484,'output':0.03},'pricingProviderIds':[_0x5a09f8(-0x55,-0x149,-0x85,-0x19a)],'matchKind':'model-unique'},'@cf/mistralai/mistral-small-3.1-24b-instruct':{'modelId':_0x16b4a2(-0xf7,0x32a,0x41,-0x319),'rates':{'input':0.351,'output':0.555},'pricingProviderIds':[_0x16b4a2(-0x1e0,0x229,-0xea,-0x430)],'matchKind':_0x16b4a2(0x704,0x66d,0x369,0x6b5)},'@cf/moonshotai/kimi-k2.6':{'modelId':_0x16b4a2(0x1df,0x4d9,0x4d2,0x814),'rates':{'input':0.95,'output':0x4,'cacheRead':0.16},'pricingProviderIds':[_0x5a09f8(-0x69,-0x149,-0x2d7,0x1ba)],'matchKind':'model-unique'},'@cf/moonshotai/kimi-k2.7-code':{'modelId':_0x16b4a2(0xd9,-0xc6,-0x57,0x35e),'rates':{'input':0.95,'output':0x4,'cacheRead':0.19},'pricingProviderIds':[_0x16b4a2(0x114,0x17e,-0xea,0x166)],'matchKind':_0x5a09f8(0x3a0,0x30a,0x345,0x377)},'@cf/nvidia/nemotron-3-120b-a12b':{'modelId':_0x5a09f8(-0x135,-0x12b,0x1ba,0x43),'rates':{'input':0.5,'output':1.5},'pricingProviderIds':[_0x5a09f8(0x223,-0x149,0xbf,0x35)],'matchKind':_0x16b4a2(0x3c8,0xb0,0x369,0x611)},'@cf/openai/gpt-oss-120b':{'modelId':'@cf/openai/gpt-oss-120b','rates':{'input':0.35,'output':0.75},'pricingProviderIds':[_0x16b4a2(0x17a,0x284,-0xea,-0x140)],'matchKind':_0x5a09f8(0x56b,0x30a,0x633,0x201)},'@cf/openai/gpt-oss-20b':{'modelId':_0x16b4a2(-0x153,0x30f,-0x36,-0x1d7),'rates':{'input':0.2,'output':0.3},'pricingProviderIds':[_0x5a09f8(0x208,-0x149,-0x1fa,-0x8c)],'matchKind':_0x5a09f8(0x7,0x30a,0x21f,0x5c9)},'@cf/qwen/qwen2.5-coder-32b-instruct':{'modelId':_0x5a09f8(0x5c4,0x2c0,0x5ee,0x296),'rates':{'input':0.66,'output':0x1},'pricingProviderIds':[_0x5a09f8(-0x413,-0x149,0x24a,-0x4e7)],'matchKind':_0x5a09f8(0x158,0x30a,0x641,0x584)},'@cf/qwen/qwen3-30b-a3b-fp8':{'modelId':_0x16b4a2(0x2aa,0x5db,0x5df,0x542),'rates':{'input':0.0509,'output':0.335},'pricingProviderIds':[_0x16b4a2(-0x1a5,-0x335,-0xea,-0x28e)],'matchKind':_0x5a09f8(-0x33,0x30a,0x18d,0xb2)},'@cf/qwen/qwq-32b':{'modelId':_0x16b4a2(0x80,0x12,-0x11f,0xa4),'rates':{'input':0.66,'output':0x1},'pricingProviderIds':[_0x5a09f8(-0x370,-0x149,0x207,-0x2c5)],'matchKind':_0x5a09f8(0x440,0x30a,0x3b5,0x15e)},'@cf/zai-org/glm-4.7-flash':{'modelId':_0x5a09f8(-0x10a,0xa1,0x1ab,0x39d),'rates':{'input':0.0605,'output':0.4},'pricingProviderIds':[_0x16b4a2(0x9a,-0x1f0,-0xea,0x2cf)],'matchKind':_0x16b4a2(0x302,0x1ce,0x369,0x377)},'@cf/zai-org/glm-5.2':{'modelId':_0x16b4a2(0x18c,0x6b3,0x49a,0x69a),'rates':{'input':1.4,'output':4.4,'cacheRead':0.26},'pricingProviderIds':['cloudflare-workers-ai'],'matchKind':_0x5a09f8(0x575,0x30a,0x275,0x45d)},'Alibaba-NLP/Tongyi-DeepResearch-30B-A3B':{'modelId':_0x5a09f8(0x312,0x536,0x249,0x1a8),'rates':{'input':0.08,'output':0.24000000000000002},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x13e,0x30a,0x562,0x4b6)},'Baichuan-M2':{'modelId':_0x16b4a2(-0x3c0,0x1c,-0x9f,0x251),'rates':{'input':15.73,'output':15.73},'pricingProviderIds':[_0x16b4a2(0x1f,0x229,0x2b,0x3b2)],'matchKind':_0x16b4a2(0x35f,0x4df,0x369,0x68b)},'Baichuan4-Air':{'modelId':'Baichuan4-Air','rates':{'input':0.157,'output':0.157},'pricingProviderIds':[_0x16b4a2(-0x158,-0x19f,0x2b,-0x343)],'matchKind':_0x5a09f8(0x217,0x30a,0x6ab,0x168)},'Baichuan4-Turbo':{'modelId':_0x5a09f8(-0x14d,-0x19d,-0x43b,0x1a8),'rates':{'input':2.42,'output':2.42},'pricingProviderIds':[_0x5a09f8(-0x13b,-0x34,0x18e,-0x4d)],'matchKind':_0x16b4a2(-0x50,0x26b,0x369,0x6bc)},'ByteDance-Seed/Seed-OSS-36B-Instruct':{'modelId':_0x5a09f8(0x6e,-0x18b,0x234,0x6e),'rates':{'input':0.21,'output':0.57},'pricingProviderIds':[_0x5a09f8(0x646,0x48c,0x467,0x60f),_0x16b4a2(0x554,0x751,0x4bd,0x752)],'matchKind':_0x5a09f8(0x484,0x102,-0xcf,0x26c)},'DeepSeek-V4-Flash':{'modelId':_0x16b4a2(0x238,-0x3c9,-0x5a,-0x109),'rates':{'input':0.143,'output':0.2857},'pricingProviderIds':[_0x5a09f8(0x347,0x2f8,0x38c,0x50c)],'matchKind':'model-unique'},'DeepSeek-V4-Pro':{'modelId':_0x16b4a2(0x2b7,0x4c4,0x3da,0x10d),'rates':{'input':0.4286,'output':0.8571},'pricingProviderIds':[_0x16b4a2(0x33a,0x1c0,0x357,0x42f)],'matchKind':_0x16b4a2(0x163,0xc8,0x369,0x381)},'Doctor-Shotgun/MS3.2-24B-Magnum-Diamond':{'modelId':_0x16b4a2(0x261,0x8f,0x177,0xb5),'rates':{'input':0.49299999999999994,'output':0.49299999999999994},'pricingProviderIds':[_0x5a09f8(0x134,-0x34,0x354,0x5a)],'matchKind':'model-unique'},'EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.0':{'modelId':'EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.0','rates':{'input':2.006,'output':2.006},'pricingProviderIds':[_0x5a09f8(-0x3ee,-0x34,0x18a,0x210)],'matchKind':_0x5a09f8(0xd2,0x30a,0x30c,0x67f)},'EVA-UNIT-01/EVA-LLaMA-3.33-70B-v0.1':{'modelId':_0x5a09f8(0x505,0x190,0x342,-0x153),'rates':{'input':2.006,'output':2.006},'pricingProviderIds':[_0x16b4a2(0x207,0x242,0x2b,-0x328)],'matchKind':_0x5a09f8(-0x3,0x30a,0x65d,0x2d1)},'EVA-UNIT-01/EVA-Qwen2.5-32B-v0.2':{'modelId':'EVA-UNIT-01/EVA-Qwen2.5-32B-v0.2','rates':{'input':0.7989999999999999,'output':0.7989999999999999},'pricingProviderIds':[_0x16b4a2(0x330,0xb1,0x2b,0x2)],'matchKind':_0x5a09f8(0x617,0x30a,0xf7,0x6cb)},'EVA-UNIT-01/EVA-Qwen2.5-72B-v0.2':{'modelId':_0x5a09f8(0x3e8,0xc1,0x27,-0x2ff),'rates':{'input':0.7989999999999999,'output':0.7989999999999999},'pricingProviderIds':[_0x16b4a2(-0xbe,0x197,0x2b,0x25b)],'matchKind':_0x5a09f8(0x41c,0x30a,0x6c,0x406)},'Envoid/Llama-3.05-NT-Storybreaker-Ministral-70B':{'modelId':_0x16b4a2(0x3f2,0x105,0x15f,0x36f),'rates':{'input':0.49299999999999994,'output':0.49299999999999994},'pricingProviderIds':[_0x16b4a2(-0x1a,0x287,0x2b,-0x51)],'matchKind':_0x5a09f8(0x16a,0x30a,0x4a2,-0xb5)},'Envoid/Llama-3.05-Nemotron-Tenyxchat-Storybreaker-70B':{'modelId':_0x16b4a2(0x601,0x4c1,0x264,0x61f),'rates':{'input':0.49299999999999994,'output':0.49299999999999994},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0xc6,0x30a,0x620,0x155)},'GLM-4.6-Derestricted-v5':{'modelId':_0x5a09f8(-0xf9,0x7b,-0x14a,-0x28f),'rates':{'input':0.4,'output':1.5},'pricingProviderIds':[_0x16b4a2(0x253,-0x1f5,0x2b,-0x23a)],'matchKind':_0x5a09f8(0x48c,0x30a,0x661,0x28e)},'GLM-5.2':{'modelId':_0x5a09f8(0x285,0x4f,-0x13b,-0x330),'rates':{'input':1.2,'output':4.1,'cacheRead':0.2,'cacheWrite':0x0},'pricingProviderIds':[_0x5a09f8(0x141,-0x41,0x18a,0x353)],'matchKind':'model-unique'},'GalrionSoftworks/MN-LooseCannon-12B-v1':{'modelId':_0x5a09f8(0x12a,0x2c,-0x2cd,0x283),'rates':{'input':0.49299999999999994,'output':0.49299999999999994},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x73,0x4e1,0x369,0x303)},'Gemma-4-31B-Claude-4.6-Opus-Reasoning-Distilled':{'modelId':_0x5a09f8(0x195,0x529,0x553,0x6aa),'rates':{'input':0.306,'output':0.306,'cacheRead':0.0306},'pricingProviderIds':[_0x5a09f8(0x11e,-0x34,0x1e6,-0x115)],'matchKind':_0x5a09f8(0x65e,0x30a,0x515,0x32b)},'Gemma-4-31B-Cognitive-Unshackled':{'modelId':_0x5a09f8(0x566,0x358,0x1c8,0x3e6),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(0x2e7,0x399,0x2b,-0x29f)],'matchKind':'model-unique'},'Gemma-4-31B-DarkIdol':{'modelId':_0x5a09f8(0x1a2,-0x107,-0xa0,-0x1c1),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(-0x2d9,0x209,0x2b,0x3b5)],'matchKind':'model-unique'},'Gemma-4-31B-GarnetV2':{'modelId':_0x16b4a2(0x6e3,0x8a2,0x561,0x7e6),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(-0x288,-0x34c,0x2b,-0xea)],'matchKind':_0x16b4a2(0x2e0,0x5f8,0x369,0x4b2)},'Gemma-4-31B-Gemopus':{'modelId':_0x16b4a2(0x551,0x6f6,0x365,0x3d9),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x5a09f8(-0x207,-0x34,-0x135,-0x3cc)],'matchKind':'model-unique'},'Gemma-4-31B-Musica-v1':{'modelId':_0x5a09f8(0x37e,0x53d,0x63d,0x21b),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x5a09f8(-0x1da,-0x34,0x379,0x1b6)],'matchKind':_0x16b4a2(0x196,0x69c,0x369,0x87)},'Gemma-4-31B-Queen':{'modelId':_0x16b4a2(0x635,0x750,0x457,0x434),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x5a09f8(0xb9,-0x34,-0x135,0x1af)],'matchKind':_0x16b4a2(0x542,0xf2,0x369,0x71d)},'Gemma-4-31B-it':{'modelId':'Gemma-4-31B-it','rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(-0x14c,0x5d,0x2b,0xe7)],'matchKind':'model-unique'},'Gryphe/MythoMax-L2-13b':{'modelId':_0x5a09f8(0x720,0x5a1,0x943,0x49d),'rates':{'input':0.1003,'output':0.1003},'pricingProviderIds':[_0x16b4a2(-0x34b,0xe2,0x2b,0x1d0)],'matchKind':'model-unique'},'HuggingFaceTB/SmolLM3-3B-Base':{'modelId':_0x16b4a2(0x4fc,0x581,0x5ac,0x71a),'rates':{'input':0.15,'output':0.15,'cacheRead':0.15,'cacheWrite':0.15},'pricingProviderIds':[_0x5a09f8(0x1f6,0x525,0x652,0x719)],'matchKind':_0x5a09f8(0x2be,0x30a,0x1a7,0x538)},'Infermatic/MN-12B-Inferor-v0.0':{'modelId':_0x5a09f8(0x299,0x13a,0x31,0x290),'rates':{'input':0.25499999999999995,'output':0.49299999999999994},'pricingProviderIds':[_0x5a09f8(-0xbc,-0x34,-0x22e,-0x37a)],'matchKind':_0x16b4a2(0x1e9,0x16b,0x369,0x5ac)},'Intel/Qwen3-Coder-480B-A35B-Instruct-int4-mixed-ar':{'modelId':_0x5a09f8(0x6cb,0x403,0x53b,0xbf),'rates':{'input':0.22,'output':0.95,'cacheRead':0.11,'cacheWrite':0.44},'pricingProviderIds':[_0x16b4a2(0x426,0x2ac,0x3cf,0x1ce)],'matchKind':'model-unique'},'JetBrains/Mellum2-12B-A2.5B-Instruct':{'modelId':_0x5a09f8(-0x22d,0x86,0x263,0x118),'rates':{'input':0.05,'output':0.1,'cacheRead':0.05},'pricingProviderIds':[_0x5a09f8(0x284,0x486,0x1d2,0x4b7)],'matchKind':_0x16b4a2(0x67f,0x68e,0x369,0x433)},'KAT-Coder-Air-V1':{'modelId':_0x16b4a2(0x549,0xb1,0x43b,0x166),'rates':{'input':0.1,'output':0.2},'pricingProviderIds':[_0x16b4a2(0x247,0xbd,0x2b,0x13c)],'matchKind':'model-unique'},'KAT-Coder-Exp-72B-1010':{'modelId':_0x16b4a2(0x4b4,0x794,0x4f0,0x46c),'rates':{'input':0.1,'output':0.2},'pricingProviderIds':[_0x5a09f8(0x377,-0x34,-0x96,-0x2a3)],'matchKind':_0x5a09f8(0xb0,0x30a,0x150,0x62b)},'KBLab/kb-whisper-large':{'modelId':_0x5a09f8(0x177,-0x70,0x61,0x6a),'rates':{'input':0.0023,'output':0.0023,'outputAudio':2.3},'pricingProviderIds':[_0x16b4a2(-0x140,0x1c8,0x11b,-0x287)],'matchKind':'model-unique'},'LLM360/K2-Think':{'modelId':'LLM360/K2-Think','rates':{'input':0.17,'output':0.68},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'LatitudeGames/Wayfarer-Large-70B-Llama-3.3':{'modelId':_0x5a09f8(-0x254,0xd8,0x43b,-0x1c8),'rates':{'input':0.700000007,'output':0.700000007},'pricingProviderIds':[_0x16b4a2(-0x8c,0x269,0x2b,-0x3d)],'matchKind':_0x5a09f8(0x2b7,0x30a,0xae,-0x2b)},'Ling-1T':{'modelId':_0x16b4a2(0x7bd,0x767,0x404,0x82),'rates':{'input':0.57,'output':2.29},'pricingProviderIds':[_0x5a09f8(-0x34f,0x11,0x15a,-0x1c1)],'matchKind':'model-unique'},'LongCat-2.0':{'modelId':_0x5a09f8(0x60b,0x572,0x5d8,0x5df),'rates':{'input':0.75,'output':2.95,'cacheRead':0.015},'pricingProviderIds':['longcat'],'matchKind':_0x5a09f8(-0x90,0x30a,0x259,0x60f)},'Magistral-Small-2506':{'modelId':'Magistral-Small-2506','rates':{'input':0.4,'output':1.4},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x77,0x30a,0x441,0x565)},'MarinaraSpaghetti/NemoMix-Unleashed-12B':{'modelId':_0x5a09f8(0x30b,0x5a8,0x90e,0x403),'rates':{'input':0.49299999999999994,'output':0.49299999999999994},'pricingProviderIds':[_0x5a09f8(-0x6,-0x34,-0xf6,0x1d1)],'matchKind':_0x16b4a2(0x14b,-0x28,0x369,0x3e0)},'Meta-Llama-3-1-8B-Instruct-FP8':{'modelId':_0x5a09f8(-0x30a,0x38,0x3b2,0x45),'rates':{'input':0.02,'output':0.03},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'Meta-Llama-3_1-8B-Instruct-GGUF':{'modelId':_0x5a09f8(0x29e,-0xcd,-0x1b7,-0x20b),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x292,0x447,0xd3,-0xca)],'matchKind':_0x5a09f8(0x1bc,0x30a,0xcb,0x102)},'MiniMax/MiniMax-M2.7':{'modelId':_0x5a09f8(0x38f,0x60,-0x261,0x1c6),'rates':{'input':0.3,'output':1.2,'cacheRead':0.06,'cacheWrite':0.375},'pricingProviderIds':[_0x5a09f8(-0x1ca,0x97,0x2a8,-0x205)],'matchKind':_0x5a09f8(0x698,0x30a,-0x37,0xae)},'MiniMaxAI/MiniMax-M1-80k':{'modelId':_0x5a09f8(0x2ec,0x506,0x184,0x7b4),'rates':{'input':0.6052,'output':2.4225000000000003},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x5ec,0x30a,0x77,0x215)},'MiniMaxAI/MiniMax-M2':{'modelId':_0x5a09f8(0x226,0x2e9,0x354,0x1d9),'rates':{'input':0.3,'output':1.2},'pricingProviderIds':[_0x5a09f8(0x225,-0xb1,0x2ef,-0x280)],'matchKind':_0x5a09f8(0x678,0x30a,0x64c,0x2c0)},'MiniMaxAI/MiniMax-M2.5-TEE':{'modelId':'MiniMaxAI/MiniMax-M2.5-TEE','rates':{'input':0.15,'output':1.2,'cacheRead':0.075},'pricingProviderIds':['chutes'],'matchKind':_0x16b4a2(0x457,0x37c,0x369,0x50a)},'MiniMaxAI/MiniMax-M2.5-fast':{'modelId':_0x16b4a2(0x35f,0x1d5,-0x48,0x1f9),'rates':{'input':0.3,'output':1.2,'cacheRead':0.03,'cacheWrite':0.375},'pricingProviderIds':[_0x16b4a2(0x66b,0xa9,0x311,0x5b9)],'matchKind':_0x16b4a2(0x5a6,0x1dd,0x369,0x23e)},'Nemotron-3-Nano-Omni-30B-TEE':{'modelId':_0x16b4a2(-0x165,-0xf9,0x3b,-0x204),'rates':{'input':0.0245,'output':0.0978,'cacheRead':0.01225},'pricingProviderIds':[_0x16b4a2(0x614,0x388,0x3b3,0x192)],'matchKind':'model-unique'},'NeverSleep/Lumimaid-v0.2-70B':{'modelId':'NeverSleep/Lumimaid-v0.2-70B','rates':{'input':0x1,'output':1.5},'pricingProviderIds':[_0x5a09f8(-0x1d3,-0x34,-0x3e2,0x325)],'matchKind':_0x16b4a2(0x21d,0x1cc,0x369,0xe3)},'NousResearch/DeepHermes-3-Mistral-24B-Preview':{'modelId':_0x16b4a2(0x4f8,0x7df,0x4ee,0x86a),'rates':{'input':0.3,'output':0.3},'pricingProviderIds':[_0x5a09f8(0x1fa,-0x34,0xb5,-0x1d6)],'matchKind':_0x5a09f8(0x205,0x30a,0x4,-0x78)},'NousResearch/Hermes-4-405B':{'modelId':_0x16b4a2(0x46b,0x2da,0x3f7,0x41d),'rates':{'input':0x1,'output':0x3,'reasoning':0x3,'cacheRead':0.1,'cacheWrite':1.25},'pricingProviderIds':[_0x5a09f8(0x4f0,0x2b2,0x266,0x6a)],'matchKind':'model-unique'},'NousResearch/Hermes-4-70B':{'modelId':_0x5a09f8(-0x34e,-0x14,0x345,0x11a),'rates':{'input':0.13,'output':0.4,'reasoning':0.4,'cacheRead':0.013,'cacheWrite':0.16},'pricingProviderIds':[_0x5a09f8(0x2c8,0x2b2,0x1c4,0x569)],'matchKind':'model-unique'},'NousResearch/Hermes-4-70B:thinking':{'modelId':_0x5a09f8(0x8b,0x20b,0xb3,0x4e2),'rates':{'input':0.2006,'output':0.3995},'pricingProviderIds':[_0x5a09f8(-0x2f6,-0x34,-0x33d,0x1e3)],'matchKind':'model-unique'},'NousResearch/hermes-3-llama-3.1-70b':{'modelId':_0x16b4a2(-0x265,0x147,-0x142,0x3a),'rates':{'input':0.408,'output':0.408},'pricingProviderIds':[_0x5a09f8(-0x1f8,-0x34,0x27b,0x326)],'matchKind':_0x5a09f8(0x5c0,0x30a,0x618,0x6b4)},'NousResearch/hermes-4-405b':{'modelId':_0x16b4a2(0x12a,-0x17a,-0x136,-0x2d9),'rates':{'input':0.3,'output':1.2},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x727,0x49e,0x369,0x56)},'NousResearch/hermes-4-405b:thinking':{'modelId':_0x5a09f8(0x60d,0x56c,0x2b5,0x4c7),'rates':{'input':0.3,'output':1.2},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'NousResearch/hermes-4-70b':{'modelId':_0x5a09f8(-0x111,0x1e8,0x297,-0x3f),'rates':{'input':0.2006,'output':0.3995},'pricingProviderIds':[_0x5a09f8(-0x3e8,-0x34,-0x2b0,0x1bd)],'matchKind':_0x5a09f8(0x369,0x30a,0x612,0x65e)},'OpenPipe/Qwen3-14B-Instruct':{'modelId':_0x5a09f8(0xac,0x269,0x2f9,0x12c),'rates':{'input':0.05,'output':0.22,'cacheRead':0.05},'pricingProviderIds':[_0x16b4a2(0x6ce,0x446,0x4e5,0x26c)],'matchKind':_0x5a09f8(-0xb0,0x30a,0x234,0x62d)},'PaddlePaddle/PaddleOCR-VL-1.5':{'modelId':_0x5a09f8(0x6e2,0x3e9,0x4b2,0x649),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['siliconflow-cn'],'matchKind':_0x5a09f8(0x8d,0x30a,0x67f,0x111)},'PrimeIntellect/INTELLECT-3':{'modelId':_0x5a09f8(0x15,0x361,0x5cf,0xd2),'rates':{'input':0.2,'output':1.1,'cacheRead':0.02,'cacheWrite':0.25},'pricingProviderIds':[_0x16b4a2(0x32e,0x20b,0x311,0x3a2)],'matchKind':_0x16b4a2(0x2ae,0x2ff,0x369,0x6b)},'Pro/MiniMaxAI/MiniMax-M2.5':{'modelId':_0x5a09f8(0x6a0,0x55a,0x368,0x6d9),'rates':{'input':0.3,'output':1.22},'pricingProviderIds':['siliconflow-cn'],'matchKind':_0x16b4a2(0x6a0,0xc2,0x369,0x458)},'Pro/deepseek-ai/DeepSeek-R1':{'modelId':'Pro/deepseek-ai/DeepSeek-R1','rates':{'input':0.5,'output':2.18},'pricingProviderIds':[_0x16b4a2(0x12b,0x3df,0x4bd,0x3aa)],'matchKind':_0x5a09f8(0x31d,0x30a,0x2e,0x32e)},'Pro/deepseek-ai/DeepSeek-V3':{'modelId':_0x5a09f8(0x27f,-0x53,0xf0,-0x27f),'rates':{'input':0.25,'output':0x1},'pricingProviderIds':[_0x16b4a2(0x251,0x456,0x4bd,0x50d)],'matchKind':_0x5a09f8(-0xb,0x30a,0x57e,0x26)},'Pro/deepseek-ai/DeepSeek-V3.1-Terminus':{'modelId':_0x5a09f8(-0x1c3,0x129,-0x29a,0x8f),'rates':{'input':0.27,'output':0x1},'pricingProviderIds':[_0x5a09f8(0x692,0x45e,0x39a,0x4a8)],'matchKind':'model-unique'},'Pro/deepseek-ai/DeepSeek-V3.2':{'modelId':'Pro/deepseek-ai/DeepSeek-V3.2','rates':{'input':0.27,'output':0.42},'pricingProviderIds':[_0x5a09f8(0x669,0x45e,0x10a,0x566)],'matchKind':_0x5a09f8(0x45,0x30a,0x3da,0x5d5)},'Pro/moonshotai/Kimi-K2.5':{'modelId':_0x16b4a2(-0x116,0xaf,-0x144,-0x338),'rates':{'input':0.45,'output':2.25},'pricingProviderIds':[_0x16b4a2(0x151,0x1f2,0x4bd,0x3a7)],'matchKind':'model-unique'},'Pro/moonshotai/Kimi-K2.6':{'modelId':'Pro/moonshotai/Kimi-K2.6','rates':{'input':0.95,'output':0x4,'cacheRead':0.16},'pricingProviderIds':[_0x16b4a2(0x83e,0x130,0x4bd,0x60f)],'matchKind':'model-unique'},'Pro/zai-org/GLM-5':{'modelId':'Pro/zai-org/GLM-5','rates':{'input':0x1,'output':3.2},'pricingProviderIds':[_0x5a09f8(0x5cf,0x45e,0x1bf,0x32a)],'matchKind':'model-unique'},'Pro/zai-org/GLM-5.1':{'modelId':_0x5a09f8(0x387,0x107,0x8c,-0x253),'rates':{'input':1.4,'output':4.4,'cacheWrite':0x0},'pricingProviderIds':['siliconflow-cn'],'matchKind':_0x16b4a2(0x5bc,0x725,0x369,0x69f)},'Qwen/QwQ-32B':{'modelId':'Qwen/QwQ-32B','rates':{'input':0.4,'output':0.4},'pricingProviderIds':[_0x16b4a2(0x1e2,0x195,0x3c3,0x467)],'matchKind':'model-unique'},'Qwen/Qwen2.5-7B-Instruct':{'modelId':_0x5a09f8(0x112,-0x1d4,0xd2,-0x17d),'rates':{'input':0.05,'output':0.05},'pricingProviderIds':[_0x5a09f8(0x1d9,0x48c,0x3c3,0x61e),_0x16b4a2(0x86e,0x3dd,0x4bd,0x786)],'matchKind':'model-identical'},'Qwen/Qwen2.5-7B-Instruct-Turbo':{'modelId':_0x16b4a2(0x337,0x5d,0x1f,0x33f),'rates':{'input':0.3,'output':0.3},'pricingProviderIds':[_0x16b4a2(0x2c7,0x149,0x340,0x62f)],'matchKind':'model-unique'},'Qwen/Qwen2.5-VL-72B-Instruct':{'modelId':'Qwen/Qwen2.5-VL-72B-Instruct','rates':{'input':0.25,'output':0.75,'cacheRead':0.025,'cacheWrite':0.31},'pricingProviderIds':[_0x5a09f8(-0xb6,0x2b2,0x457,0x3e3)],'matchKind':_0x5a09f8(0x7b,0x30a,0x9c,0x5d9)},'Qwen/Qwen3-1.7B-Base':{'modelId':_0x16b4a2(0x78,0x2b9,-0x24,0x335),'rates':{'input':0.1,'output':0.1,'cacheRead':0.1,'cacheWrite':0.1},'pricingProviderIds':['pioneer'],'matchKind':_0x5a09f8(0x4c1,0x30a,-0xa5,0x101)},'Qwen/Qwen3-14B':{'modelId':'Qwen/Qwen3-14B','rates':{'input':0.07,'output':0.28},'pricingProviderIds':['siliconflow',_0x5a09f8(0x312,0x45e,0x55b,0x453)],'matchKind':_0x16b4a2(0x2d7,0x1ef,0x161,0xe6)},'Qwen/Qwen3-235B-A22B':{'modelId':_0x5a09f8(-0xf,0x42,0x2d1,0x32d),'rates':{'input':0.2,'output':0.8},'pricingProviderIds':[_0x5a09f8(-0x1a9,-0xb1,0x104,-0x1a4)],'matchKind':'model-unique'},'Qwen/Qwen3-235B-A22B-Instruct-2507-tput':{'modelId':'Qwen/Qwen3-235B-A22B-Instruct-2507-tput','rates':{'input':0.2,'output':0.6},'pricingProviderIds':['togetherai'],'matchKind':_0x16b4a2(0x47f,0x476,0x369,0xa7)},'Qwen/Qwen3-235B-A22B-Thinking-2507-TEE':{'modelId':_0x16b4a2(0x75d,0x39a,0x55f,0x3d9),'rates':{'input':0.2989,'output':1.1957,'cacheRead':0.14945},'pricingProviderIds':['chutes'],'matchKind':_0x16b4a2(0x453,-0x40,0x369,0x56b)},'Qwen/Qwen3-235B-A22B-Thinking-2507-fast':{'modelId':_0x16b4a2(0x51,-0xd5,0x2a9,0xe3),'rates':{'input':0.5,'output':0x2,'cacheRead':0.05,'cacheWrite':0.625},'pricingProviderIds':['nebius'],'matchKind':_0x5a09f8(0x29d,0x30a,0x25f,0x469)},'Qwen/Qwen3-30B-A3B-Thinking-2507':{'modelId':_0x16b4a2(-0x4ad,-0x445,-0xf0,-0x437),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x31d,0x65,0x326,0xa2)],'matchKind':'model-unique'},'Qwen/Qwen3-32B-TEE':{'modelId':_0x16b4a2(-0x386,0x1ff,-0x70,0x217),'rates':{'input':0.104,'output':0.416,'cacheRead':0.052},'pricingProviderIds':[_0x16b4a2(0x753,0x744,0x3b3,0x214)],'matchKind':'model-unique'},'Qwen/Qwen3-4B-Base':{'modelId':_0x5a09f8(-0x12b,-0xea,-0x167,0x1cf),'rates':{'input':0.15,'output':0.15,'cacheRead':0.15,'cacheWrite':0.15},'pricingProviderIds':[_0x5a09f8(0x682,0x525,0x187,0x3c5)],'matchKind':_0x5a09f8(0x3e2,0x30a,-0x67,0x31e)},'Qwen/Qwen3-4B-Instruct-2507':{'modelId':_0x16b4a2(0x450,0x314,0x4b4,0x7e7),'rates':{'input':0.2,'output':0.2,'cacheRead':0.2,'cacheWrite':0.2},'pricingProviderIds':[_0x5a09f8(0x311,0x525,0x2d0,0x8e8)],'matchKind':_0x16b4a2(0x73,0x82,0x369,0x6a6)},'Qwen/Qwen3-Coder-480B-A35B-Instruct-Turbo':{'modelId':_0x16b4a2(-0x84,-0x18,-0x84,0x1b8),'rates':{'input':0.3,'output':0x1,'cacheRead':0.1},'pricingProviderIds':[_0x16b4a2(0xf1,-0x2b0,0x110,0x1be)],'matchKind':_0x16b4a2(0x241,0x627,0x369,0x55)},'Qwen/Qwen3-Coder-Next':{'modelId':'Qwen/Qwen3-Coder-Next','rates':{'input':0.2,'output':1.5},'pricingProviderIds':[_0x5a09f8(-0x37b,-0xb1,-0x24,-0x269)],'matchKind':_0x5a09f8(-0x58,0x30a,0x2fc,0x122)},'Qwen/Qwen3-Coder-Next-FP8':{'modelId':'Qwen/Qwen3-Coder-Next-FP8','rates':{'input':0.5,'output':1.2},'pricingProviderIds':[_0x16b4a2(-0x39,0x373,0x340,0x31)],'matchKind':_0x5a09f8(0x124,0x30a,0x41a,0x613)},'Qwen/Qwen3-Embedding-0.6B':{'modelId':'Qwen/Qwen3-Embedding-0.6B','rates':{'input':0.01,'output':0x0},'pricingProviderIds':['nearai'],'matchKind':_0x5a09f8(-0xa0,0x30a,0x5e6,0x2f)},'Qwen/Qwen3-Embedding-4B':{'modelId':_0x16b4a2(0x1db,-0x102,0x142,0x216),'rates':{'input':0.01,'output':0x0},'pricingProviderIds':['huggingface'],'matchKind':_0x16b4a2(0x188,0x70d,0x369,0x1db)},'Qwen/Qwen3-Max':{'modelId':_0x16b4a2(0x795,0x77c,0x46e,0x2da),'rates':{'input':1.2,'output':0x6,'cacheRead':0.24},'pricingProviderIds':[_0x16b4a2(-0x113,-0xcf,0x110,-0x1d3)],'matchKind':_0x5a09f8(0x100,0x30a,0x517,0x5d7)},'Qwen/Qwen3-Next-80B-A3B-Thinking-fast':{'modelId':_0x16b4a2(0x423,0x35e,0x21b,0x4f4),'rates':{'input':0.15,'output':1.2,'cacheRead':0.015,'cacheWrite':0.1875},'pricingProviderIds':['nebius'],'matchKind':_0x16b4a2(0x54d,0x1de,0x369,0x17)},'Qwen/Qwen3-Reranker-0.6B':{'modelId':_0x16b4a2(0x969,0x8ec,0x5a8,0x3a1),'rates':{'input':0.01,'output':0.01},'pricingProviderIds':[_0x16b4a2(0x5dd,0x77b,0x56c,0x8ed)],'matchKind':'model-unique'},'Qwen/Qwen3-Reranker-4B':{'modelId':'Qwen/Qwen3-Reranker-4B','rates':{'input':0.0575,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x13b,0xbc,-0x301,0x301)],'matchKind':_0x5a09f8(0x561,0x30a,0x52d,0xae)},'Qwen/Qwen3-VL-235B-A22B-Instruct':{'modelId':_0x16b4a2(-0xe3,-0x264,-0x64,0xfc),'rates':{'input':0.3,'output':1.5},'pricingProviderIds':[_0x5a09f8(0x84d,0x48c,0x3f2,0x7ba),_0x16b4a2(0x749,0x856,0x4bd,0x1f8)],'matchKind':_0x5a09f8(-0x25f,0x102,-0x1c3,0x18b)},'Qwen/Qwen3-VL-235B-A22B-Instruct-FP8':{'modelId':'Qwen/Qwen3-VL-235B-A22B-Instruct-FP8','rates':{'input':1.76,'output':2.05},'pricingProviderIds':[_0x5a09f8(-0x383,-0x160,-0x166,-0x1be)],'matchKind':_0x5a09f8(0x685,0x30a,-0x8c,0x13c)},'Qwen/Qwen3-VL-235B-A22B-Thinking':{'modelId':'Qwen/Qwen3-VL-235B-A22B-Thinking','rates':{'input':0.45,'output':3.5},'pricingProviderIds':['siliconflow',_0x16b4a2(0x45d,0x718,0x4bd,0x6a6)],'matchKind':'model-identical'},'Qwen/Qwen3-VL-30B-A3B-Thinking':{'modelId':_0x16b4a2(0x353,0x3dc,0x5cf,0x6be),'rates':{'input':0.29,'output':0x1},'pricingProviderIds':['siliconflow',_0x16b4a2(0x3fa,0x3d5,0x4bd,0x695)],'matchKind':'model-identical'},'Qwen/Qwen3-VL-32B-Instruct':{'modelId':_0x16b4a2(0x174,0x28,0x382,0x369),'rates':{'input':0.2,'output':0.6},'pricingProviderIds':[_0x5a09f8(0x564,0x48c,0x400,0x296),_0x16b4a2(0x665,0x36b,0x4bd,0x5a3)],'matchKind':_0x5a09f8(0x2d1,0x102,-0x58,0x207)},'Qwen/Qwen3-VL-32B-Thinking':{'modelId':'Qwen/Qwen3-VL-32B-Thinking','rates':{'input':0.2,'output':1.5},'pricingProviderIds':[_0x16b4a2(0x853,0x3d4,0x4eb,0x843),_0x16b4a2(0x442,0x1aa,0x4bd,0x107)],'matchKind':_0x16b4a2(0x497,-0x17c,0x161,0x31c)},'Qwen/Qwen3-VL-8B-Instruct':{'modelId':_0x5a09f8(-0x9d,0x253,0x88,0x7b),'rates':{'input':0.18,'output':0.68},'pricingProviderIds':[_0x16b4a2(0x2ca,0x3ee,0x4eb,0x2a4),'siliconflow-cn'],'matchKind':_0x16b4a2(0x3d5,0x32,0x161,-0x1d8)},'Qwen/Qwen3-VL-Embedding-8B':{'modelId':_0x5a09f8(0x27e,0x2e7,0x4cf,0x66c),'rates':{'input':0.09,'output':0.09},'pricingProviderIds':[_0x5a09f8(-0x28a,-0x160,-0x1fe,-0x242)],'matchKind':'model-unique'},'Qwen/Qwen3.5-397B-A17B-FP8':{'modelId':_0x16b4a2(0x20c,-0x1cd,0x1d8,0x36f),'rates':{'input':0.69,'output':4.14,'cacheRead':0.1725},'pricingProviderIds':[_0x16b4a2(0x106,0x333,0x6c,-0x202)],'matchKind':_0x16b4a2(0x4eb,-0x3d,0x369,0x68d)},'Qwen/Qwen3.5-397B-A17B-TEE':{'modelId':'Qwen/Qwen3.5-397B-A17B-TEE','rates':{'input':0.45,'output':0x3,'cacheRead':0.225},'pricingProviderIds':[_0x5a09f8(0x5da,0x354,0x172,0x48)],'matchKind':_0x5a09f8(0x430,0x30a,0x433,0x53d)},'Qwen/Qwen3.5-397B-A17B-fast':{'modelId':_0x5a09f8(-0xfe,-0x1d1,-0x50c,-0x197),'rates':{'input':0.6,'output':3.6,'cacheRead':0.06,'cacheWrite':0.75},'pricingProviderIds':['nebius'],'matchKind':'model-unique'},'Qwen/Qwen3.5-4B':{'modelId':'Qwen/Qwen3.5-4B','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x66b,0x45e,0x296,0x2cc)],'matchKind':_0x5a09f8(0x44b,0x30a,-0x9e,0x126)},'Qwen/Qwen3.5-Plus':{'modelId':_0x16b4a2(0x35b,-0x133,0xfe,0x199),'rates':{'input':0.4,'output':2.4,'reasoning':2.4},'pricingProviderIds':[_0x5a09f8(0x20d,-0x9a,0x119,-0x2cb)],'matchKind':'model-unique'},'Qwen/Qwen3.6-27B-TEE':{'modelId':_0x5a09f8(0xe3,-0x189,-0x22e,-0x1d4),'rates':{'input':0.3,'output':0x2,'cacheRead':0.15},'pricingProviderIds':['chutes'],'matchKind':'model-unique'},'Qwen/Qwen3.6-Plus':{'modelId':_0x16b4a2(0x539,0x5d7,0x5d5,0x4a2),'rates':{'input':0.5,'output':0x3},'pricingProviderIds':[_0x16b4a2(0x7a,0x1b,0x340,0x6da)],'matchKind':_0x5a09f8(0x141,0x30a,0x508,0x386)},'Qwen2.5-32B-EVA-v0.2':{'modelId':_0x5a09f8(-0xd0,0x116,0x31b,0xb7),'rates':{'input':0.493,'output':0.493},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'Qwen3.5-27B-Anko':{'modelId':'Qwen3.5-27B-Anko','rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(0x340,0x295,0x2b,-0x240)],'matchKind':'model-unique'},'Qwen3.5-27B-BlueStar-Derestricted':{'modelId':_0x5a09f8(-0x1da,-0x163,-0x24d,-0xa6),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x5a09f8(-0x3c1,-0x34,0x159,-0x324)],'matchKind':_0x16b4a2(0x1be,0x16d,0x369,0x151)},'Qwen3.5-27B-BlueStar-Derestricted-Lite':{'modelId':_0x5a09f8(0x4c2,0x266,0x5e6,0x60d),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'Qwen3.5-27B-BlueStar-v2-Derestricted':{'modelId':_0x5a09f8(-0x14a,-0x65,-0x12,0x1c7),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x5a09f8(0xbe,-0x34,-0x129,0x2de)],'matchKind':_0x5a09f8(-0xb6,0x30a,0x110,0x4a6)},'Qwen3.5-27B-BlueStar-v2-Derestricted-Lite':{'modelId':_0x5a09f8(0x598,0x579,0x1c9,0x7fc),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x495,0x1f3,0x369,0x6fe)},'Qwen3.5-27B-BlueStar-v3-Derestricted':{'modelId':'Qwen3.5-27B-BlueStar-v3-Derestricted','rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x5a09f8(0x230,-0x34,-0x205,-0x3a5)],'matchKind':_0x5a09f8(0x304,0x30a,0x370,0x53b)},'Qwen3.5-27B-BlueStar-v3-Derestricted-Lite':{'modelId':_0x5a09f8(-0x2ae,0x103,-0x258,0x200),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x5a09f8(0x33f,-0x34,-0x2e7,-0x175)],'matchKind':_0x5a09f8(-0x94,0x30a,0x602,0x82)},'Qwen3.5-27B-Derestricted':{'modelId':_0x5a09f8(-0xa5,0x19f,0x2fa,0x486),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x6c6,0x30a,0x279,-0x39)},'Qwen3.5-27B-Infracelestial':{'modelId':_0x16b4a2(0xf,-0x2a0,0x44,-0x237),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x3d5,0x103,0x369,0x249)},'Qwen3.5-27B-Marvin-DPO-V2-Derestricted':{'modelId':_0x5a09f8(-0x19b,-0xfb,-0x471,-0xf3),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(0x3eb,0x384,0x2b,0xb7)],'matchKind':_0x16b4a2(0x594,0x59,0x369,0x3aa)},'Qwen3.5-27B-Marvin-DPO-V2-Derestricted-Lite':{'modelId':_0x16b4a2(-0x29,0x34a,0x337,-0x41),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x5a09f8(0x2fe,-0x34,0x38b,-0x185)],'matchKind':_0x16b4a2(0x717,0x498,0x369,0xe8)},'Qwen3.5-27B-Marvin-V2-Derestricted':{'modelId':_0x16b4a2(0x3,0x17a,0x3ac,0x7f),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x258,0x30a,0x339,0x155)},'Qwen3.5-27B-Marvin-V2-Derestricted-Lite':{'modelId':_0x5a09f8(0x427,0x59d,0x56e,0x850),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x399,0x552,0x369,0x6f2)},'Qwen3.5-27B-Musica-v1':{'modelId':_0x5a09f8(-0x85,0x207,0x497,0x12),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(-0x236,0x291,0x2b,-0x1d5)],'matchKind':_0x16b4a2(0x202,0x52d,0x369,-0x1e)},'Qwen3.5-27B-NaNovel-Derestricted':{'modelId':_0x5a09f8(0x257,0x1c3,-0xa2,0x152),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x5a09f8(0x1fb,-0x34,0x182,0x159)],'matchKind':_0x5a09f8(-0x61,0x30a,-0x76,0x484)},'Qwen3.5-27B-NaNovel-Derestricted-Lite':{'modelId':_0x5a09f8(0x156,0x29e,0x564,0x1d8),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(0x1d1,0x4,0x2b,0x9e)],'matchKind':'model-unique'},'Qwen3.5-27B-Omega-Evolution-v2.0-Derestricted':{'modelId':_0x5a09f8(-0x47c,-0x1b3,-0x18a,-0xc8),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x404,0x601,0x369,0x709)},'Qwen3.5-27B-Omega-Evolution-v2.0-Derestricted-Lite':{'modelId':'Qwen3.5-27B-Omega-Evolution-v2.0-Derestricted-Lite','rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x5a09f8(-0x24f,-0x34,0x167,0x5d)],'matchKind':'model-unique'},'Qwen3.5-27B-Omega-Evolution-v2.2-Derestricted':{'modelId':_0x16b4a2(-0xc9,0x64,0x22e,0x184),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x19b,0x272,0x369,0x63f)},'Qwen3.5-27B-Omega-Evolution-v2.2-Derestricted-Lite':{'modelId':_0x16b4a2(0x175,0x638,0x2e3,0x73),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(-0x63,0x15,0x2b,-0x13d)],'matchKind':_0x5a09f8(-0x4d,0x30a,0x4ab,-0x99)},'Qwen3.5-27B-Queen-Derestricted':{'modelId':'Qwen3.5-27B-Queen-Derestricted','rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x5a09f8(0x33c,-0x34,-0x3c,0xb2)],'matchKind':_0x5a09f8(-0x20,0x30a,0x340,0x2c8)},'Qwen3.5-27B-Queen-Derestricted-Lite':{'modelId':'Qwen3.5-27B-Queen-Derestricted-Lite','rates':{'input':0.306,'output':0.306},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'Qwen3.5-27B-RpRMax-v1':{'modelId':_0x5a09f8(-0x66,0xe5,0x1f8,0x345),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x5b4,0x30a,0x6c2,0x1d9)},'Qwen3.5-27B-Vivid-Durian':{'modelId':_0x5a09f8(0x2fa,0x26d,0x2e3,0x516),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0xd2,0x30a,0x6a5,0x3e1)},'Qwen3.5-27B-Writer-Derestricted':{'modelId':'Qwen3.5-27B-Writer-Derestricted','rates':{'input':0.306,'output':0.306},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(-0x40,0x430,0x369,0x137)},'Qwen3.5-27B-Writer-Derestricted-Lite':{'modelId':_0x5a09f8(0x387,0x43,0x3df,0x4f),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(-0x166,0x148,0x2b,0x2b3)],'matchKind':_0x5a09f8(0xbf,0x30a,0x1ae,-0x21)},'Qwen3.5-27B-Writer-V2-Derestricted':{'modelId':_0x5a09f8(-0x104,0x25e,0x1cd,-0x110),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(0x1bc,0x7f,0x2b,-0x2e1)],'matchKind':_0x5a09f8(0x53c,0x30a,0x18c,0x2a4)},'Qwen3.5-27B-Writer-V2-Derestricted-Lite':{'modelId':'Qwen3.5-27B-Writer-V2-Derestricted-Lite','rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(0x37e,0x3ce,0x2b,0x367)],'matchKind':_0x16b4a2(0x196,0xf9,0x369,0x521)},'Qwen3.5-27B-earica-Derestricted':{'modelId':_0x5a09f8(-0xe2,0x122,0x39f,0x35b),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x5a09f8(-0x183,-0x34,-0x250,0x8c)],'matchKind':_0x16b4a2(0x339,0x49e,0x369,0x7c)},'Qwen3.5-27B-earica-Derestricted-Lite':{'modelId':_0x16b4a2(0x103,0x119,-0xef,-0x324),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(-0x2bf,0x29f,0x2b,-0xaa)],'matchKind':'model-unique'},'Qwen3_5-9B-MLX-4bit':{'modelId':'Qwen3_5-9B-MLX-4bit','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x220,0x74,-0x196,-0x27b)],'matchKind':_0x5a09f8(0x31d,0x30a,0x36,0x5de)},'Qwen3_5-9B-Q4_K_M':{'modelId':_0x5a09f8(-0x126,0x3c,0x1b4,-0x25c),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0x175,0x10,0xd3,0x2c5)],'matchKind':_0x5a09f8(-0x6f,0x30a,0x218,0x6a9)},'ReadyArt/MS3.2-The-Omega-Directive-24B-Unslop-v2.0':{'modelId':_0x5a09f8(-0x130,0x8e,0x33f,-0x21e),'rates':{'input':0.5,'output':0.5},'pricingProviderIds':[_0x16b4a2(-0xfe,0xbb,0x2b,-0x2cb)],'matchKind':_0x16b4a2(0x165,0x3d8,0x369,0x159)},'Ring-1T':{'modelId':_0x5a09f8(-0x357,0x28,0x1d5,-0x287),'rates':{'input':0.57,'output':2.29},'pricingProviderIds':[_0x5a09f8(-0x373,0x11,-0xfa,0x1ec)],'matchKind':'model-unique'},'Salesforce/Llama-xLAM-2-70b-fc-r':{'modelId':_0x16b4a2(0x135,0x1b1,0x193,0x286),'rates':{'input':2.5,'output':2.5},'pricingProviderIds':[_0x5a09f8(0x35d,-0x34,0x274,-0x2d2)],'matchKind':'model-unique'},'Sao10K/L3-8B-Stheno-v3.2':{'modelId':_0x16b4a2(0x427,0x66a,0x4f6,0x1b8),'rates':{'input':0.2006,'output':0.2006},'pricingProviderIds':[_0x16b4a2(0x54,0x206,0x2b,0x31a)],'matchKind':_0x16b4a2(0x10,0x200,0x369,0x64d)},'Sao10K/L3.1-70B-Euryale-v2.2':{'modelId':_0x5a09f8(0x2d6,-0x31,0x124,0x8),'rates':{'input':0.306,'output':0.357},'pricingProviderIds':[_0x5a09f8(-0x344,-0x34,0x1ed,-0x1a4)],'matchKind':_0x16b4a2(0x291,0x5e0,0x369,0x4c)},'Sao10K/L3.1-70B-Hanami-x1':{'modelId':_0x16b4a2(0x4a6,0x249,0x516,0x276),'rates':{'input':0.49299999999999994,'output':0.49299999999999994},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x144,0x30a,-0x58,0x6cb)},'Sao10K/L3.3-70B-Euryale-v2.3':{'modelId':_0x5a09f8(0x3a0,0x139,0x224,0x425),'rates':{'input':0.49299999999999994,'output':0.49299999999999994},'pricingProviderIds':[_0x5a09f8(-0x134,-0x34,-0x378,-0x177)],'matchKind':_0x16b4a2(0x4e6,0x3be,0x369,0x6ad)},'Steelskull/L3.3-Cu-Mai-R1-70b':{'modelId':'Steelskull/L3.3-Cu-Mai-R1-70b','rates':{'input':0.49299999999999994,'output':0.49299999999999994},'pricingProviderIds':[_0x16b4a2(-0xef,0x4,0x2b,0x160)],'matchKind':_0x5a09f8(0x175,0x30a,0x31,0x1d8)},'Steelskull/L3.3-Electra-R1-70b':{'modelId':'Steelskull/L3.3-Electra-R1-70b','rates':{'input':0.69989,'output':0.69989},'pricingProviderIds':[_0x16b4a2(-0x29d,0x2ce,0x2b,0x2ce)],'matchKind':_0x16b4a2(0x313,0x6ed,0x369,0x632)},'Steelskull/L3.3-MS-Evalebis-70b':{'modelId':_0x16b4a2(-0x320,0x18a,0x28,0x1eb),'rates':{'input':0.49299999999999994,'output':0.49299999999999994},'pricingProviderIds':[_0x5a09f8(0x5,-0x34,0x2e0,-0x94)],'matchKind':_0x16b4a2(0x58a,0xb3,0x369,0x40b)},'Steelskull/L3.3-MS-Evayale-70B':{'modelId':'Steelskull/L3.3-MS-Evayale-70B','rates':{'input':0.49299999999999994,'output':0.49299999999999994},'pricingProviderIds':[_0x16b4a2(-0x1de,0x1e4,0x2b,0x3df)],'matchKind':'model-unique'},'Steelskull/L3.3-MS-Nevoria-70b':{'modelId':'Steelskull/L3.3-MS-Nevoria-70b','rates':{'input':0.49299999999999994,'output':0.49299999999999994},'pricingProviderIds':[_0x5a09f8(-0xe7,-0x34,0x259,-0x355)],'matchKind':_0x16b4a2(0x10b,0x28b,0x369,0x1f6)},'Steelskull/L3.3-Nevoria-R1-70b':{'modelId':_0x5a09f8(0x327,0x56b,0x2e8,0x5fe),'rates':{'input':0.49299999999999994,'output':0.49299999999999994},'pricingProviderIds':[_0x16b4a2(-0x73,0x36b,0x2b,-0x1ae)],'matchKind':_0x5a09f8(0x514,0x30a,0x4c8,0x108)},'TEE/deepseek-v3.1':{'modelId':_0x5a09f8(0x286,0x45f,0x6ab,0x145),'rates':{'input':0x1,'output':2.5},'pricingProviderIds':[_0x5a09f8(-0x1c5,-0x34,-0x1d5,-0x161)],'matchKind':_0x5a09f8(-0x39,0x30a,0x28e,0x632)},'TEE/deepseek-v3.2':{'modelId':_0x16b4a2(0x9e,0x5e,0x118,0x282),'rates':{'input':0.5,'output':0x1},'pricingProviderIds':[_0x16b4a2(-0x34c,0x159,0x2b,-0x33a)],'matchKind':_0x5a09f8(0x35f,0x30a,0x50b,0x357)},'TEE/deepseek-v4-pro':{'modelId':_0x5a09f8(0x382,0x176,0x205,-0x15a),'rates':{'input':1.5,'output':5.25,'cacheRead':0.15},'pricingProviderIds':[_0x5a09f8(0x316,-0x34,-0x30b,0x33e)],'matchKind':_0x5a09f8(0x34a,0x30a,0x4ab,0x58a)},'TEE/deepseek-v4-pro:thinking':{'modelId':'TEE/deepseek-v4-pro:thinking','rates':{'input':1.5,'output':5.25,'cacheRead':0.15},'pricingProviderIds':[_0x5a09f8(-0x342,-0x34,-0x6e,-0x2f7)],'matchKind':_0x5a09f8(0x4b5,0x30a,0x38b,0x34b)},'TEE/gemma-3-27b-it':{'modelId':_0x5a09f8(-0x19e,0x58,0x152,0x22d),'rates':{'input':0.2,'output':0.8},'pricingProviderIds':[_0x5a09f8(0x86,-0x34,-0x1d,0x197)],'matchKind':_0x5a09f8(-0x49,0x30a,0x30e,0x251)},'TEE/gemma-4-26b-a4b-uncensored':{'modelId':_0x5a09f8(0xb3,0x13b,0x259,0x1e9),'rates':{'input':0.15,'output':0.7},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x31b,0xba,0x369,0x40a)},'TEE/gemma-4-31b-it':{'modelId':_0x16b4a2(0x48a,0x687,0x4ec,0x4d2),'rates':{'input':0.15,'output':0.46},'pricingProviderIds':[_0x5a09f8(0x20b,-0x34,0x2be,0x4)],'matchKind':'model-unique'},'TEE/gemma4-31b':{'modelId':_0x5a09f8(-0x351,-0xa3,0x24f,0xa7),'rates':{'input':0.45,'output':0x1},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x5,0x51d,0x369,0x59e)},'TEE/gemma4-31b:thinking':{'modelId':_0x16b4a2(0xed,0x3,0x39f,0x32),'rates':{'input':0.45,'output':0x1},'pricingProviderIds':[_0x16b4a2(0x3cb,-0x52,0x2b,-0xb4)],'matchKind':_0x5a09f8(0x616,0x30a,0x34e,0x2bc)},'TEE/glm-4.7':{'modelId':_0x5a09f8(-0x30,0x55,0x77,0x1fd),'rates':{'input':0.85,'output':3.3},'pricingProviderIds':[_0x5a09f8(0x103,-0x34,-0xdb,-0x257)],'matchKind':_0x5a09f8(0x116,0x30a,0x74,0x3fa)},'TEE/glm-4.7-flash':{'modelId':_0x5a09f8(0x4ae,0x528,0x4b8,0x577),'rates':{'input':0.15,'output':0.5},'pricingProviderIds':[_0x16b4a2(0x1b6,-0x35a,0x2b,0x125)],'matchKind':_0x16b4a2(0x630,0x4eb,0x369,0x706)},'TEE/glm-5':{'modelId':_0x16b4a2(0x42f,0x1bd,0x34b,0x4),'rates':{'input':1.2,'output':3.5},'pricingProviderIds':[_0x5a09f8(-0x33f,-0x34,-0x67,0x1d0)],'matchKind':_0x5a09f8(0x11d,0x30a,0x59c,0x346)},'TEE/glm-5.1':{'modelId':'TEE/glm-5.1','rates':{'input':1.5,'output':5.25,'cacheRead':0.3},'pricingProviderIds':[_0x16b4a2(0x1b9,0x37e,0x2b,0x1c2)],'matchKind':_0x5a09f8(0x231,0x30a,0x87,0x524)},'TEE/glm-5.1-thinking':{'modelId':_0x16b4a2(0x4a5,0x5d6,0x3ea,0x3c5),'rates':{'input':1.5,'output':5.25,'cacheRead':0.3},'pricingProviderIds':[_0x16b4a2(-0x99,-0xe8,0x2b,-0x365)],'matchKind':_0x5a09f8(0x3f5,0x30a,0x363,0x46d)},'TEE/gpt-oss-120b':{'modelId':'TEE/gpt-oss-120b','rates':{'input':0x2,'output':0x2},'pricingProviderIds':[_0x16b4a2(0xf5,0x2ae,0x2b,0x176)],'matchKind':'model-unique'},'TEE/gpt-oss-20b':{'modelId':'TEE/gpt-oss-20b','rates':{'input':0.2,'output':0.8},'pricingProviderIds':[_0x16b4a2(-0x36c,-0xcd,0x2b,0x2e6)],'matchKind':_0x16b4a2(0x598,0x2a0,0x369,0x312)},'TEE/kimi-k2.5':{'modelId':_0x16b4a2(0x5c2,0x13e,0x3eb,0x73b),'rates':{'input':0.3,'output':1.9},'pricingProviderIds':[_0x16b4a2(0x1b5,-0x37,0x2b,0x136)],'matchKind':_0x16b4a2(0x3fa,0x28b,0x369,-0x2c)},'TEE/kimi-k2.5-thinking':{'modelId':'TEE/kimi-k2.5-thinking','rates':{'input':0.3,'output':1.9},'pricingProviderIds':[_0x5a09f8(0xe7,-0x34,-0x1ac,-0x260)],'matchKind':'model-unique'},'TEE/kimi-k2.6':{'modelId':'TEE/kimi-k2.6','rates':{'input':1.5,'output':5.25,'cacheRead':0.375},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x411,0x30a,0x2e5,0x672)},'TEE/llama3-3-70b':{'modelId':_0x16b4a2(-0x296,-0x33,0x13,0x21f),'rates':{'input':0x2,'output':0x2},'pricingProviderIds':[_0x16b4a2(-0x81,0xee,0x2b,0x91)],'matchKind':_0x5a09f8(0x605,0x30a,0x609,0x424)},'TEE/minimax-m2.5':{'modelId':_0x5a09f8(0x3f1,0x3bd,0x2b3,0x50b),'rates':{'input':0.2,'output':1.38},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'TEE/qwen2.5-vl-72b-instruct':{'modelId':_0x16b4a2(0x2c5,0x404,0x52e,0x4e2),'rates':{'input':0.7,'output':0.7},'pricingProviderIds':[_0x16b4a2(-0x315,-0x1b4,0x2b,0x97)],'matchKind':_0x16b4a2(0x652,0x49d,0x369,0x1cb)},'TEE/qwen3-30b-a3b-instruct-2507':{'modelId':_0x5a09f8(0x6fc,0x47c,0x394,0x5c0),'rates':{'input':0.15,'output':0.44999999999999996},'pricingProviderIds':[_0x16b4a2(-0x1ba,0x2e6,0x2b,-0x1d1)],'matchKind':_0x5a09f8(-0x31,0x30a,0x655,-0x3d)},'TEE/qwen3.5-122b-a10b':{'modelId':'TEE/qwen3.5-122b-a10b','rates':{'input':0.46,'output':3.68},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x25c,0x67b,0x369,0x1a0)},'TEE/qwen3.5-27b':{'modelId':_0x5a09f8(-0x122,0x17f,0x282,0x22a),'rates':{'input':0.3,'output':2.4},'pricingProviderIds':[_0x5a09f8(0x384,-0x34,-0x282,-0x6b)],'matchKind':_0x5a09f8(0x120,0x30a,0x87,0x5f4)},'TEE/qwen3.5-397b-a17b':{'modelId':'TEE/qwen3.5-397b-a17b','rates':{'input':0.6,'output':3.6},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'TEE/qwen3.6-35b-a3b-uncensored':{'modelId':_0x5a09f8(0x1ea,0xdf,0x100,-0x216),'rates':{'input':0.3,'output':1.5},'pricingProviderIds':[_0x16b4a2(0x8a,0xe1,0x2b,-0x4f)],'matchKind':'model-unique'},'THUDM/GLM-4-32B-0414':{'modelId':_0x5a09f8(-0xdb,-0x22,-0x156,-0x2a0),'rates':{'input':0.2,'output':0.2},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x47d,0x30a,0xc3,0x482)},'THUDM/GLM-4-9B-0414':{'modelId':_0x5a09f8(0x16c,0x6f,0x17c,0x242),'rates':{'input':0.2,'output':0.2},'pricingProviderIds':[_0x16b4a2(0x223,-0x1f6,0x2b,-0x27a)],'matchKind':'model-unique'},'THUDM/GLM-Z1-32B-0414':{'modelId':_0x5a09f8(-0xeb,-0x1b2,0x16e,-0x1af),'rates':{'input':0.2,'output':0.2},'pricingProviderIds':[_0x16b4a2(-0x10b,0x3e6,0x2b,0x279)],'matchKind':'model-unique'},'THUDM/GLM-Z1-9B-0414':{'modelId':'THUDM/GLM-Z1-9B-0414','rates':{'input':0.2,'output':0.2},'pricingProviderIds':[_0x16b4a2(0x2c2,0x283,0x2b,0x1dc)],'matchKind':_0x16b4a2(0x581,0x44a,0x369,0x446)},'TheDrummer/Anubis-70B-v1':{'modelId':_0x16b4a2(0x318,0x371,0x362,0x45a),'rates':{'input':0.31,'output':0.31},'pricingProviderIds':[_0x16b4a2(0x7c,0x137,0x2b,-0x31c)],'matchKind':'model-unique'},'TheDrummer/Anubis-70B-v1.1':{'modelId':_0x16b4a2(0x36a,0x48d,0x3fe,0x71c),'rates':{'input':0.31,'output':0.31},'pricingProviderIds':[_0x16b4a2(0x3b3,-0x251,0x2b,-0x13c)],'matchKind':'model-unique'},'TheDrummer/Cydonia-24B-v2':{'modelId':_0x5a09f8(-0x195,0x137,-0x1bd,0x46f),'rates':{'input':0.1003,'output':0.1207},'pricingProviderIds':[_0x16b4a2(-0x118,-0x57,0x2b,-0x15)],'matchKind':'model-unique'},'TheDrummer/Cydonia-24B-v4':{'modelId':_0x16b4a2(0x2bf,0x4c2,0x4f5,0x47f),'rates':{'input':0.2006,'output':0.2414},'pricingProviderIds':[_0x5a09f8(0xa2,-0x34,-0x267,-0x374)],'matchKind':_0x16b4a2(0x639,-0x59,0x369,0x16a)},'TheDrummer/Cydonia-24B-v4.1':{'modelId':_0x16b4a2(0x6ac,0x118,0x445,0x690),'rates':{'input':0.1003,'output':0.1207},'pricingProviderIds':[_0x16b4a2(0x39f,-0xeb,0x2b,-0x26f)],'matchKind':_0x5a09f8(0x210,0x30a,0xf5,0x6cd)},'TheDrummer/Cydonia-24B-v4.3':{'modelId':_0x16b4a2(0x77f,0x3bd,0x4cf,0x668),'rates':{'input':0.1003,'output':0.1207},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x101,0x30a,0x41d,0x61)},'TheDrummer/Magidonia-24B-v4.3':{'modelId':'TheDrummer/Magidonia-24B-v4.3','rates':{'input':0.1003,'output':0.1207},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x69a,0x30a,0x21e,0x254)},'TheDrummer/Rocinante-12B-v1.1':{'modelId':'TheDrummer/Rocinante-12B-v1.1','rates':{'input':0.408,'output':0.595},'pricingProviderIds':[_0x5a09f8(-0x156,-0x34,-0x300,0x1b1)],'matchKind':_0x5a09f8(0x36b,0x30a,-0x50,0x6c4)},'TheDrummer/Skyfall-31B-v4.2':{'modelId':'TheDrummer/Skyfall-31B-v4.2','rates':{'input':0.55,'output':0.8},'pricingProviderIds':[_0x16b4a2(-0x87,0x3ec,0x2b,-0x23b)],'matchKind':_0x16b4a2(0x2b4,0x43e,0x369,0x631)},'TheDrummer/UnslopNemo-12B-v4.1':{'modelId':'TheDrummer/UnslopNemo-12B-v4.1','rates':{'input':0.493,'output':0.493},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'TheDrummer/skyfall-36b-v2':{'modelId':_0x16b4a2(-0x13f,0x40c,0x187,0x47),'rates':{'input':0.493,'output':0.493},'pricingProviderIds':[_0x16b4a2(0x281,-0x9d,0x2b,-0x1e1)],'matchKind':_0x16b4a2(0x610,0x52c,0x369,0x13e)},'Tongyi-Zhiwen/QwenLong-L1-32B':{'modelId':_0x5a09f8(0x2e0,0x553,0x269,0x337),'rates':{'input':0.13999999999999999,'output':0.6},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x618,0x16c,0x369,-0x52)},'Unbabel/M-Prometheus-14B':{'modelId':_0x16b4a2(0x47d,0x31b,0x18a,-0x20b),'rates':{'input':0.2,'output':0.2},'pricingProviderIds':[_0x5a09f8(-0x62,-0x34,0x34f,0x45)],'matchKind':_0x5a09f8(0x624,0x30a,0xb7,0x53c)},'VongolaChouko/Starcannon-Unleashed-12B-v1.0':{'modelId':_0x16b4a2(0x7ad,0x55f,0x532,0x191),'rates':{'input':0.49299999999999994,'output':0.49299999999999994},'pricingProviderIds':[_0x16b4a2(0x3b2,-0x353,0x2b,0x191)],'matchKind':_0x16b4a2(0x46e,0x3ff,0x369,-0x4f)},'XiaomiMiMo/MiMo-V2-Flash':{'modelId':_0x16b4a2(0x1f4,0x542,0x504,0x43e),'rates':{'input':0.1,'output':0.3},'pricingProviderIds':[_0x5a09f8(0x256,-0xb1,-0x459,0x22),'meganova'],'matchKind':_0x5a09f8(0x161,0x102,0x13f,-0x2e)},'ZhipuAI/GLM-4.5':{'modelId':_0x16b4a2(0x8c,0xbe,0x3a7,0x6fc),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['modelscope'],'matchKind':_0x5a09f8(0x47c,0x30a,0x297,0xea)},'ZhipuAI/GLM-4.6':{'modelId':'ZhipuAI/GLM-4.6','rates':{'input':0x0,'output':0x0},'pricingProviderIds':['modelscope'],'matchKind':_0x16b4a2(0x34e,0x2e2,0x369,0x8)},'abacusai/Dracarys-72B-Instruct':{'modelId':_0x5a09f8(0x4ed,0x544,0x5f2,0x87a),'rates':{'input':0.49299999999999994,'output':0.49299999999999994},'pricingProviderIds':[_0x5a09f8(0x31a,-0x34,0x198,-0x222)],'matchKind':_0x16b4a2(0x3a5,0x3e9,0x369,0x5ca)},'abacusai/dracarys-llama-3_1-70b-instruct':{'modelId':_0x5a09f8(0x545,0x21e,0x2d,0x1b8),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x376,0x398,0x9a,0x377)],'matchKind':_0x5a09f8(0x4e8,0x30a,0x15e,0x2bc)},'abliterated-model':{'modelId':_0x5a09f8(0x418,0x243,0x10,0xd6),'rates':{'input':0x3,'output':0x3},'pricingProviderIds':[_0x5a09f8(0x375,-0xe,0x168,-0x2f)],'matchKind':_0x5a09f8(0x51a,0x30a,0x36a,0x21)},'accounts/fireworks/models/deepseek-v4-flash':{'modelId':'accounts/fireworks/models/deepseek-v4-flash','rates':{'input':0.14,'output':0.28,'cacheRead':0.028},'pricingProviderIds':['fireworks-ai'],'matchKind':'model-unique'},'accounts/fireworks/models/deepseek-v4-pro':{'modelId':_0x5a09f8(-0x505,-0x1d2,0x16b,-0x4a8),'rates':{'input':1.74,'output':3.48,'cacheRead':0.145},'pricingProviderIds':[_0x16b4a2(0x82,0x53e,0x1c7,0x4f8)],'matchKind':'model-unique'},'accounts/fireworks/models/glm-5p1':{'modelId':_0x16b4a2(0x7a,0xb5,0x2be,0x152),'rates':{'input':1.4,'output':4.4,'cacheRead':0.26},'pricingProviderIds':[_0x16b4a2(0x43e,0xcf,0x1c7,0x3b6)],'matchKind':_0x16b4a2(0xfc,0x1b8,0x369,0x6d2)},'accounts/fireworks/models/glm-5p2':{'modelId':_0x5a09f8(0x37,0x2fe,0x281,0x235),'rates':{'input':1.4,'output':4.4,'cacheRead':0.14},'pricingProviderIds':[_0x5a09f8(0x217,0x168,-0x249,0x56)],'matchKind':'model-unique'},'accounts/fireworks/models/gpt-oss-120b':{'modelId':_0x16b4a2(0x669,0x28f,0x524,0x3a4),'rates':{'input':0.15,'output':0.6,'cacheRead':0.015},'pricingProviderIds':['fireworks-ai'],'matchKind':_0x5a09f8(0x533,0x30a,0x368,-0x1b)},'accounts/fireworks/models/gpt-oss-20b':{'modelId':_0x16b4a2(0x145,-0x45f,-0x151,-0x3cb),'rates':{'input':0.07,'output':0.3,'cacheRead':0.035},'pricingProviderIds':[_0x16b4a2(0x30c,0x445,0x1c7,0x575)],'matchKind':'model-unique'},'accounts/fireworks/models/kimi-k2p6':{'modelId':_0x16b4a2(0x1da,-0x2,0x343,0x2fd),'rates':{'input':0.95,'output':0x4,'cacheRead':0.16},'pricingProviderIds':[_0x16b4a2(-0x2,0x3dd,0x1c7,0x18b)],'matchKind':_0x16b4a2(0x33a,0x70e,0x369,-0x1e)},'accounts/fireworks/models/kimi-k2p7-code':{'modelId':_0x16b4a2(0x314,0x2ca,0x2da,0x0),'rates':{'input':0.95,'output':0x4,'cacheRead':0.19},'pricingProviderIds':['fireworks-ai'],'matchKind':_0x16b4a2(0x240,0x68e,0x369,0x32)},'accounts/fireworks/models/minimax-m2p7':{'modelId':'accounts/fireworks/models/minimax-m2p7','rates':{'input':0.3,'output':1.2,'cacheRead':0.06},'pricingProviderIds':[_0x16b4a2(0x31a,0x483,0x1c7,0x37a)],'matchKind':_0x16b4a2(0x5b9,0x414,0x369,0x44a)},'accounts/fireworks/models/minimax-m3':{'modelId':_0x5a09f8(0x5c1,0x2b4,-0x3f,0x41f),'rates':{'input':0.3,'output':1.2,'cacheRead':0.06},'pricingProviderIds':['fireworks-ai'],'matchKind':_0x16b4a2(0x358,0x626,0x369,0x246)},'accounts/fireworks/models/qwen3p7-plus':{'modelId':'accounts/fireworks/models/qwen3p7-plus','rates':{'input':0.4,'output':1.6,'cacheRead':0.08},'pricingProviderIds':[_0x5a09f8(0x320,0x168,-0x97,0x45d)],'matchKind':_0x16b4a2(0x48b,0x1d3,0x369,0x35b)},'accounts/fireworks/routers/glm-5p1-fast':{'modelId':_0x5a09f8(-0x31b,-0x1a2,0x1ea,-0x438),'rates':{'input':2.8,'output':8.8,'cacheRead':0.52},'pricingProviderIds':[_0x5a09f8(-0x205,0x168,0x1d4,0x44b)],'matchKind':'model-unique'},'accounts/fireworks/routers/glm-5p2-fast':{'modelId':_0x16b4a2(-0x39,-0x340,0x17,0x2a0),'rates':{'input':2.1,'output':6.6,'cacheRead':0.21},'pricingProviderIds':[_0x16b4a2(-0xb4,0x50b,0x1c7,0x2fb)],'matchKind':'model-unique'},'accounts/fireworks/routers/kimi-k2p6-fast':{'modelId':'accounts/fireworks/routers/kimi-k2p6-fast','rates':{'input':0x2,'output':0x8,'cacheRead':0.3},'pricingProviderIds':[_0x5a09f8(0x418,0x168,-0x2a,-0x13e)],'matchKind':'model-unique'},'accounts/fireworks/routers/kimi-k2p6-turbo':{'modelId':_0x5a09f8(0x1d,0x184,0x144,0x26d),'rates':{'input':0x2,'output':0x8,'cacheRead':0.3},'pricingProviderIds':[_0x16b4a2(0xa1,-0x1dc,0x1c7,0x583)],'matchKind':_0x16b4a2(0x390,0x4a2,0x369,0x157)},'accounts/fireworks/routers/kimi-k2p7-code-fast':{'modelId':_0x16b4a2(0x179,0x74c,0x511,0x349),'rates':{'input':1.9,'output':0x8,'cacheRead':0.38},'pricingProviderIds':[_0x16b4a2(0xb2,0x14d,0x1c7,0x148)],'matchKind':_0x5a09f8(-0x95,0x30a,0x5d2,0xea)},'ai21-labs/ai21-jamba-1.5-large':{'modelId':_0x5a09f8(0x2f9,0x421,0x4cb,0x70d),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x63b,0x274,0x5ef,0x41d)],'matchKind':_0x5a09f8(0x179,0x30a,0x158,0x465)},'ai21-labs/ai21-jamba-1.5-mini':{'modelId':_0x5a09f8(0x6d3,0x46e,0x3eb,0x479),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x2b3,0x590,0x1dc,0x4c4)],'matchKind':_0x5a09f8(0x641,0x30a,0x1b,0x208)},'ai21/jamba-large-1.7':{'modelId':_0x16b4a2(0x145,-0xba,0x74,-0x194),'rates':{'input':0x2,'output':0x8},'pricingProviderIds':[_0x5a09f8(0x23b,0x533,0x2b8,0x849),_0x5a09f8(0x4a,0x6d,-0xea,-0xc7)],'matchKind':_0x5a09f8(0x272,0x102,0x26d,0x211)},'aion-labs-aion-3-0':{'modelId':'aion-labs-aion-3-0','rates':{'input':3.75,'output':7.5,'cacheRead':0.9375},'pricingProviderIds':[_0x16b4a2(0x314,0x744,0x5a2,0x3ae)],'matchKind':_0x16b4a2(0xc8,0x4ac,0x369,0x1f9)},'aion-labs-aion-3-0-mini':{'modelId':_0x16b4a2(0x172,0x425,0x482,0x3de),'rates':{'input':0.875,'output':1.75,'cacheRead':0.225},'pricingProviderIds':['venice'],'matchKind':_0x5a09f8(0x226,0x30a,0x4ac,0x42f)},'aion-labs/aion-2.5':{'modelId':_0x5a09f8(0x3a6,0x22d,-0x185,-0xe9),'rates':{'input':0x1,'output':0x3,'cacheRead':0.35},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x21,0x376,0x369,0x499)},'aion-labs/aion-3.0':{'modelId':_0x16b4a2(0x8ca,0x280,0x5fe,0x686),'rates':{'input':0x3,'output':0x6,'cacheRead':0.75},'pricingProviderIds':[_0x5a09f8(0x18,0x6d,-0x249,0x57)],'matchKind':_0x16b4a2(0x4b2,0x11e,0x369,0x48)},'aion-labs/aion-3.0-mini':{'modelId':_0x16b4a2(0x386,0x1f7,0x28a,0x296),'rates':{'input':0.7,'output':1.4,'cacheRead':0.18},'pricingProviderIds':[_0x16b4a2(-0x1c3,0x2d,0xcc,-0x260)],'matchKind':_0x16b4a2(0x3c3,0x5f0,0x369,0x6bf)},'alfredpros/codellama-7b-instruct-solidity':{'modelId':_0x5a09f8(0xdf,-0x72,0x2a7,-0x291),'rates':{'input':0.8,'output':1.2},'pricingProviderIds':[_0x16b4a2(0x39d,0x2bf,0x592,0x7e9)],'matchKind':_0x16b4a2(0x18e,0x5b1,0x369,0x15c)},'alibaba-qwen3-32b':{'modelId':'alibaba-qwen3-32b','rates':{'input':0.25,'output':0.55},'pricingProviderIds':['digitalocean'],'matchKind':'model-unique'},'alibaba/qwen-3-14b':{'modelId':_0x5a09f8(0x4ab,0x4d5,0x5bb,0x59c),'rates':{'input':0.12,'output':0.24},'pricingProviderIds':['vercel'],'matchKind':_0x16b4a2(0xe8,0x65e,0x369,0x2ad)},'alibaba/qwen-3-235b':{'modelId':_0x5a09f8(0x19a,0x4f2,0x863,0x514),'rates':{'input':0.22,'output':0.88},'pricingProviderIds':[_0x5a09f8(0xc0,0x387,0x458,0x7d)],'matchKind':_0x5a09f8(0x628,0x30a,0x693,0x4ab)},'alibaba/qwen-3-30b':{'modelId':_0x16b4a2(-0x31b,0x3c,-0x4,0x185),'rates':{'input':0.12,'output':0.5},'pricingProviderIds':[_0x5a09f8(0x1ee,0x387,0xa8,0x498)],'matchKind':_0x16b4a2(0x2f2,0x67c,0x369,0x149)},'alibaba/qwen-3-32b':{'modelId':'alibaba/qwen-3-32b','rates':{'input':0.16,'output':0.64},'pricingProviderIds':[_0x5a09f8(0x379,0x387,0x30a,0x146)],'matchKind':_0x16b4a2(0x368,0x46e,0x369,0x3ef)},'alibaba/qwen-3.6-max-preview':{'modelId':'alibaba/qwen-3.6-max-preview','rates':{'input':1.3,'output':7.8,'cacheRead':0.26,'cacheWrite':1.625},'pricingProviderIds':[_0x16b4a2(0xc0,0x55a,0x3e6,0x367)],'matchKind':'model-unique'},'alibaba/qwen3-235b-a22b-thinking':{'modelId':_0x5a09f8(-0x4d,-0xf7,0x24f,-0x470),'rates':{'input':0.4,'output':0x4},'pricingProviderIds':[_0x5a09f8(0x452,0x387,0x6e3,0x385)],'matchKind':'model-unique'},'alibaba/qwen3-coder':{'modelId':_0x5a09f8(-0x4e,-0x47,-0x1e5,-0x308),'rates':{'input':1.5,'output':7.5,'cacheRead':0.3},'pricingProviderIds':[_0x16b4a2(0x52b,0x735,0x3e6,0x34a)],'matchKind':_0x16b4a2(0x640,0x479,0x369,0x402)},'alibaba/qwen3-coder-30b-a3b':{'modelId':_0x16b4a2(0x72e,0x172,0x3f2,0x6aa),'rates':{'input':0.15,'output':0.6},'pricingProviderIds':[_0x16b4a2(0x7e,0x11b,0x3e6,0x768)],'matchKind':_0x16b4a2(0x561,-0x2b,0x369,0x1f7)},'alibaba/qwen3-coder-next':{'modelId':_0x16b4a2(0x4b8,0x359,0x18f,0x185),'rates':{'input':0.5,'output':1.2},'pricingProviderIds':['vercel'],'matchKind':_0x16b4a2(0x4c4,0x15c,0x369,0x5a5)},'alibaba/qwen3-coder-plus':{'modelId':_0x5a09f8(0x1bb,0xce,0x2c5,-0x61),'rates':{'input':0x1,'output':0x5,'cacheRead':0.2},'pricingProviderIds':['vercel'],'matchKind':_0x16b4a2(0x1b9,0x635,0x369,0x711)},'alibaba/qwen3-max':{'modelId':_0x16b4a2(0x5ec,0x79,0x31a,0x1ad),'rates':{'input':1.2,'output':0x6,'cacheRead':0.24},'pricingProviderIds':[_0x5a09f8(0x726,0x387,0x25c,0x467)],'matchKind':_0x16b4a2(0x56,0x6cb,0x369,0xea)},'alibaba/qwen3-max-preview':{'modelId':'alibaba/qwen3-max-preview','rates':{'input':1.2,'output':0x6,'cacheRead':0.24},'pricingProviderIds':[_0x16b4a2(0x794,0x468,0x3e6,0x5c7)],'matchKind':_0x16b4a2(0x270,0x2be,0x369,0x3ba)},'alibaba/qwen3-max-thinking':{'modelId':'alibaba/qwen3-max-thinking','rates':{'input':1.2,'output':0x6,'cacheRead':0.24},'pricingProviderIds':[_0x16b4a2(0x396,0x792,0x3e6,0x1b8)],'matchKind':_0x5a09f8(0x26c,0x30a,0x21c,0x385)},'alibaba/qwen3-next-80b-a3b-instruct':{'modelId':'alibaba/qwen3-next-80b-a3b-instruct','rates':{'input':0.15,'output':1.2},'pricingProviderIds':[_0x5a09f8(0x643,0x387,0x611,0x400)],'matchKind':'model-unique'},'alibaba/qwen3-next-80b-a3b-thinking':{'modelId':_0x5a09f8(0x417,0x51d,0x7b7,0x793),'rates':{'input':0.15,'output':1.2},'pricingProviderIds':['vercel'],'matchKind':_0x16b4a2(0x401,0xb7,0x369,0x2b8)},'alibaba/qwen3-vl-235b-a22b-instruct':{'modelId':_0x16b4a2(-0x4b9,0x17d,-0x16b,0x15e),'rates':{'input':0.4,'output':1.6},'pricingProviderIds':[_0x5a09f8(-0xd,0x387,0x3f0,-0x25)],'matchKind':_0x5a09f8(0x305,0x30a,0x47b,0x28a)},'alibaba/qwen3-vl-instruct':{'modelId':_0x5a09f8(0x400,0x1da,0x36e,0x8e),'rates':{'input':0.4,'output':1.6},'pricingProviderIds':['vercel'],'matchKind':_0x16b4a2(0x5d3,0x2a3,0x369,0x6bb)},'alibaba/qwen3-vl-thinking':{'modelId':_0x5a09f8(0x598,0x417,0x5a1,0x472),'rates':{'input':0.4,'output':0x4},'pricingProviderIds':[_0x5a09f8(0x3d5,0x387,0x401,0x670)],'matchKind':_0x16b4a2(0xf4,0x710,0x369,0x136)},'alibaba/qwen3.5-flash':{'modelId':'alibaba/qwen3.5-flash','rates':{'input':0.1,'output':0.4,'cacheRead':0.001,'cacheWrite':0.125},'pricingProviderIds':[_0x5a09f8(0x5f4,0x387,0x338,0x520)],'matchKind':_0x5a09f8(0x58c,0x30a,0x47b,0x379)},'alibaba/qwen3.5-plus':{'modelId':_0x5a09f8(0x417,0x211,0x27,0x365),'rates':{'input':0.4,'output':2.4,'cacheRead':0.04,'cacheWrite':0.5},'pricingProviderIds':[_0x16b4a2(0x5d4,0x3d1,0x3e6,0x18d)],'matchKind':_0x5a09f8(-0x76,0x30a,0x193,0x2b7)},'alibaba/qwen3.6-27b:thinking':{'modelId':'alibaba/qwen3.6-27b:thinking','rates':{'input':0.203,'output':2.24},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x33e,0x5e1,0x369,0x28c)},'alibaba/qwen3.6-35b-a3b':{'modelId':_0x5a09f8(-0x87,-0x191,-0x351,0x138),'rates':{'input':0.19,'output':0.48},'pricingProviderIds':[_0x16b4a2(-0x1e6,0x2b1,-0xde,-0x51)],'matchKind':'model-unique'},'alibaba/qwen3.6-flash':{'modelId':_0x16b4a2(-0x27b,0x1af,0x98,0x359),'rates':{'input':0.19,'output':1.16},'pricingProviderIds':[_0x5a09f8(-0x136,-0x34,-0x1ef,0x2be)],'matchKind':_0x5a09f8(0x4ce,0x30a,0x39e,0x21a)},'alibaba/qwen3.7-plus':{'modelId':_0x16b4a2(-0x1a0,0x2d0,0x7b,0x11e),'rates':{'input':0.4,'output':1.6,'cacheRead':0.08,'cacheWrite':0.5},'pricingProviderIds':[_0x5a09f8(0x5ae,0x387,0x1f8,0x66b)],'matchKind':_0x16b4a2(0x530,0x273,0x369,0x39)},'alicloud-deepseek-v4-flash':{'modelId':_0x5a09f8(-0x9,0x254,-0xed,0x73),'rates':{'input':0.14,'output':0.28,'cacheRead':0.028},'pricingProviderIds':[_0x16b4a2(-0x1e6,0xb8,0x81,0x3cc)],'matchKind':_0x16b4a2(0x6d3,0x486,0x369,-0x36)},'alicloud-deepseek-v4-pro':{'modelId':_0x5a09f8(0x530,0x2af,0x4,0x5da),'rates':{'input':1.69,'output':3.38,'cacheRead':0.13},'pricingProviderIds':[_0x16b4a2(0x188,0x30a,0x81,0x16b)],'matchKind':_0x5a09f8(0x155,0x30a,0x2cb,0x1e)},'alicloud-glm-5.1':{'modelId':_0x5a09f8(0x357,0x36a,0x29b,0x225),'rates':{'input':0.84,'output':3.38,'cacheRead':0.169,'cacheWrite':1.05625},'pricingProviderIds':[_0x5a09f8(-0x2f7,0x22,0xa7,0x194)],'matchKind':_0x16b4a2(0x2c7,0x3f4,0x369,0x4fc)},'all-mini-lm-l6-v2':{'modelId':_0x16b4a2(-0x133,0x88,0x14d,0x4e3),'rates':{'input':0.009,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0xf4,0x84,-0x1d,0x314)],'matchKind':_0x5a09f8(0x23c,0x30a,0x234,0x3ad)},'amazon--nova-lite':{'modelId':_0x5a09f8(0x290,0x2f4,0x118,0x4f5),'rates':{'input':0.3,'output':2.37},'pricingProviderIds':[_0x5a09f8(-0x15f,0x6,0x2a3,0x37d)],'matchKind':_0x5a09f8(0x5aa,0x30a,0x201,-0x3b)},'amazon--nova-micro':{'modelId':_0x5a09f8(0x49d,0xf8,0x2d7,0x2b2),'rates':{'input':0.03,'output':0.1},'pricingProviderIds':[_0x16b4a2(0x35f,-0x263,0x65,0x27f)],'matchKind':'model-unique'},'amazon--nova-pro':{'modelId':_0x16b4a2(-0x315,-0x14f,0x1,-0xd5),'rates':{'input':0.56,'output':2.13},'pricingProviderIds':[_0x5a09f8(0x268,0x6,0x56,0x397)],'matchKind':_0x5a09f8(0x2de,0x30a,0x6c1,0xe2)},'amazon--titan-embed-text':{'modelId':_0x5a09f8(0x377,0x19e,0x34c,0x514),'rates':{'input':0.14,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x2a2,0x6,-0x320,0xd0)],'matchKind':'model-unique'},'amazon.nova-2-lite-v1:0':{'modelId':_0x16b4a2(-0x12f,0x3ee,0x91,0x6c),'rates':{'input':0.33,'output':2.75},'pricingProviderIds':[_0x5a09f8(-0x87,0x24b,0x3af,0x3f)],'matchKind':_0x16b4a2(0x14d,0x197,0x369,0x335)},'amazon.nova-lite-v1:0':{'modelId':_0x5a09f8(0x64,0x3fe,0x3c6,0x5e5),'rates':{'input':0.06,'output':0.24,'cacheRead':0.015},'pricingProviderIds':[_0x5a09f8(0x35,0x24b,0x5ea,-0x40)],'matchKind':_0x5a09f8(0x24f,0x30a,-0x4a,0x309)},'amazon.nova-micro-v1:0':{'modelId':_0x16b4a2(-0x17b,0x11b,-0x148,0x1db),'rates':{'input':0.035,'output':0.14,'cacheRead':0.00875},'pricingProviderIds':[_0x5a09f8(-0x41,0x24b,0x4bf,0x1e5)],'matchKind':_0x16b4a2(0x6e4,0x4e2,0x369,0x63c)},'amazon.nova-pro-v1:0':{'modelId':_0x16b4a2(0x216,0x265,0x475,0x602),'rates':{'input':0.8,'output':3.2,'cacheRead':0.2},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x5a09f8(0x5a1,0x30a,0x6a4,-0x39)},'amazon/nova-2-lite':{'modelId':_0x16b4a2(0x2e4,0x286,0x2ef,0x129),'rates':{'input':0.3,'output':2.5,'cacheRead':0.075},'pricingProviderIds':['vercel'],'matchKind':_0x5a09f8(0x3ae,0x30a,-0x3b,0x483)},'amazon/nova-lite':{'modelId':_0x16b4a2(0x563,0x4f3,0x21a,0xfe),'rates':{'input':0.06,'output':0.24,'cacheRead':0.015},'pricingProviderIds':['vercel'],'matchKind':_0x5a09f8(0x2fb,0x30a,-0xa1,-0x94)},'amazon/nova-micro':{'modelId':_0x5a09f8(-0x29c,-0x84,-0x2c2,0x9d),'rates':{'input':0.035,'output':0.14,'cacheRead':0.00875},'pricingProviderIds':['vercel'],'matchKind':_0x16b4a2(0x1bd,0x285,0x369,0x181)},'amazon/nova-pro':{'modelId':'amazon/nova-pro','rates':{'input':0.8,'output':3.2,'cacheRead':0.2},'pricingProviderIds':[_0x16b4a2(0x2dd,0x57a,0x3e6,0x3fb)],'matchKind':'model-unique'},'ambient/large':{'modelId':_0x5a09f8(-0x4,0x34b,0x1cc,0x35d),'rates':{'input':1.05,'output':4.4,'cacheRead':0.2,'cacheWrite':0x0},'pricingProviderIds':[_0x5a09f8(0x233,0x131,-0x180,-0x1a1)],'matchKind':_0x5a09f8(0x64b,0x30a,0x2b2,0x4e9)},'anthracite-org/magnum-v2-72b':{'modelId':'anthracite-org/magnum-v2-72b','rates':{'input':2.006,'output':2.992},'pricingProviderIds':[_0x16b4a2(0x200,-0x31b,0x2b,-0x7)],'matchKind':_0x5a09f8(0x168,0x30a,0x41f,-0x22)},'anthropic--claude-3-haiku':{'modelId':'anthropic--claude-3-haiku','rates':{'input':0.25,'output':1.25,'cacheRead':0.03,'cacheWrite':0.3},'pricingProviderIds':[_0x5a09f8(-0x22f,0x6,-0x3b0,0x149)],'matchKind':_0x16b4a2(0x4ce,0x417,0x369,0x51)},'anthropic--claude-3-opus':{'modelId':_0x16b4a2(0x36f,0x7e,0x165,0x235),'rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75},'pricingProviderIds':['sap-ai-core'],'matchKind':_0x16b4a2(0x6e8,0x543,0x369,0x6)},'anthropic--claude-3-sonnet':{'modelId':_0x16b4a2(-0x205,0x261,0x174,0x4b5),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':['sap-ai-core'],'matchKind':_0x5a09f8(0x6bf,0x30a,0x58d,0x12b)},'anthropic--claude-3.5-sonnet':{'modelId':_0x5a09f8(-0x1df,-0x181,0x16,-0x2a9),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x5a09f8(0x1c2,0x6,-0x134,0x293)],'matchKind':_0x5a09f8(0x2e7,0x30a,0x5c7,0x589)},'anthropic--claude-3.7-sonnet':{'modelId':_0x5a09f8(0x503,0x41a,0x45b,0x3b7),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':['sap-ai-core'],'matchKind':'model-unique'},'anthropic--claude-4-opus':{'modelId':'anthropic--claude-4-opus','rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75},'pricingProviderIds':[_0x5a09f8(0x18a,0x6,-0x354,-0x238)],'matchKind':_0x5a09f8(0x363,0x30a,0x1d0,0x46b)},'anthropic--claude-4-sonnet':{'modelId':_0x16b4a2(0x656,0x26e,0x438,0x50e),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x5a09f8(-0x3bc,0x6,0x7d,-0x350)],'matchKind':_0x16b4a2(0x366,0x547,0x369,0x132)},'anthropic--claude-4.5-haiku':{'modelId':'anthropic--claude-4.5-haiku','rates':{'input':0x1,'output':0x5,'cacheRead':0.1,'cacheWrite':1.25},'pricingProviderIds':[_0x5a09f8(0x2a6,0x6,-0x287,0x210)],'matchKind':_0x5a09f8(0x96,0x30a,0x382,0xee)},'anthropic--claude-4.5-opus':{'modelId':'anthropic--claude-4.5-opus','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':['sap-ai-core'],'matchKind':_0x5a09f8(0x672,0x30a,0x27b,-0x4a)},'anthropic--claude-4.5-sonnet':{'modelId':'anthropic--claude-4.5-sonnet','rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':['sap-ai-core'],'matchKind':_0x16b4a2(0x678,0x17f,0x369,0x12e)},'anthropic--claude-4.6-opus':{'modelId':_0x5a09f8(-0x378,-0xaf,0x2cc,0x1be),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x5a09f8(-0x273,0x6,0x8b,-0x60)],'matchKind':'model-unique'},'anthropic--claude-4.6-sonnet':{'modelId':_0x5a09f8(0x3da,0x5a,0x8e,-0x196),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':['sap-ai-core'],'matchKind':_0x5a09f8(0x362,0x30a,0x172,0x4cf)},'anthropic--claude-4.7-opus':{'modelId':'anthropic--claude-4.7-opus','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x5a09f8(-0x6,0x6,-0xb0,-0x2ba)],'matchKind':_0x5a09f8(0xf6,0x30a,0x69b,0x69b)},'anthropic--claude-4.8-opus':{'modelId':_0x16b4a2(0xec,-0x4f,0x13d,-0x25f),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x16b4a2(-0x78,-0xbe,0x65,0x414)],'matchKind':_0x5a09f8(0x1d9,0x30a,0x4f0,0x4f9)},'anthropic-claude-3-opus':{'modelId':'anthropic-claude-3-opus','rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75},'pricingProviderIds':[_0x16b4a2(-0x114,-0x53,-0x1d,0x311)],'matchKind':_0x16b4a2(0x106,0x3b4,0x369,0xc5)},'anthropic-claude-3.5-haiku':{'modelId':'anthropic-claude-3.5-haiku','rates':{'input':0.8,'output':0x4,'cacheRead':0.08,'cacheWrite':0x1},'pricingProviderIds':[_0x5a09f8(0x22e,-0x7c,0x20a,-0x3c8)],'matchKind':_0x16b4a2(0x0,0x32b,0x369,0x26e)},'anthropic-claude-3.5-sonnet':{'modelId':_0x5a09f8(0x765,0x515,0x5b4,0x4da),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x16b4a2(-0x2cc,0x48,-0x1d,0x4f)],'matchKind':_0x16b4a2(0xb3,0x6d1,0x369,0x310)},'anthropic-claude-3.7-sonnet':{'modelId':_0x5a09f8(0x18,0x385,0x127,0x1d4),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x16b4a2(-0x276,0x113,-0x1d,-0x1fe)],'matchKind':_0x5a09f8(0x2bb,0x30a,0x1a,0xdc)},'anthropic-claude-4.1-opus':{'modelId':'anthropic-claude-4.1-opus','rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75},'pricingProviderIds':[_0x5a09f8(0x105,-0x7c,-0x32a,-0x384)],'matchKind':_0x5a09f8(0x3db,0x30a,0x82,0x58f)},'anthropic-claude-4.5-haiku':{'modelId':_0x5a09f8(-0x11c,0x255,-0xc9,0x350),'rates':{'input':0x1,'output':0x5,'cacheRead':0x1,'cacheWrite':1.25},'pricingProviderIds':[_0x5a09f8(-0x433,-0x7c,0x26c,0xef)],'matchKind':_0x16b4a2(0x5b4,0x91,0x369,0x70b)},'anthropic-claude-4.5-sonnet':{'modelId':_0x16b4a2(-0x2e5,0xe2,-0x140,-0x3e4),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x6,'output':22.5,'cacheRead':0.3,'cacheWrite':3.75}],'pricingProviderIds':[_0x5a09f8(-0x19c,-0x7c,0x22e,0x2f2)],'matchKind':_0x16b4a2(0x4e9,0x2f3,0x369,0x66f)},'anthropic-claude-4.6-sonnet':{'modelId':_0x16b4a2(0x5b7,0x4b3,0x56d,0x431),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x6,'output':22.5,'cacheRead':0.3,'cacheWrite':3.75}],'pricingProviderIds':[_0x5a09f8(-0x1f6,-0x7c,-0x10,-0x413)],'matchKind':_0x16b4a2(0x309,0x349,0x369,0x120)},'anthropic-claude-haiku-4.5':{'modelId':_0x16b4a2(0x1b1,0x51a,0x31b,0x63c),'rates':{'input':0x1,'output':0x5,'cacheRead':0x1,'cacheWrite':1.25},'pricingProviderIds':[_0x5a09f8(-0x2b4,-0x7c,0x136,0x21a)],'matchKind':_0x5a09f8(0x3d6,0x30a,-0x79,0x10b)},'anthropic-claude-opus-4':{'modelId':_0x16b4a2(-0xbc,0x2e3,-0xd7,0x1b),'rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75},'pricingProviderIds':[_0x5a09f8(0x2b,-0x7c,-0x415,0x218)],'matchKind':'model-unique'},'anthropic-claude-opus-4.5':{'modelId':'anthropic-claude-opus-4.5','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':['digitalocean'],'matchKind':_0x16b4a2(0x2e7,0x52,0x369,0x6b6)},'anthropic-claude-opus-4.6':{'modelId':_0x5a09f8(0x3c8,0x4e5,0x42f,0x4bb),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':37.5,'cacheRead':0.5,'cacheWrite':6.25}],'pricingProviderIds':['digitalocean'],'matchKind':'model-unique'},'anthropic-claude-opus-4.7':{'modelId':_0x16b4a2(-0x20,-0x74,-0x157,0x10a),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x16b4a2(0x1ba,0x18e,-0x1d,0x227)],'matchKind':_0x16b4a2(0x715,0x302,0x369,0x172)},'anthropic-claude-opus-4.8':{'modelId':_0x5a09f8(0x19a,0x11d,0x3be,-0xed),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x16b4a2(-0x11d,-0x342,-0x1d,-0x1f3)],'matchKind':_0x16b4a2(-0x1,0x69a,0x369,0xff)},'anthropic-claude-sonnet-4':{'modelId':_0x5a09f8(0x693,0x51f,0x4be,0x29e),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x6,'output':22.5,'cacheRead':0.3,'cacheWrite':3.75}],'pricingProviderIds':[_0x5a09f8(-0xe,-0x7c,-0x1a8,0x10)],'matchKind':_0x5a09f8(0x364,0x30a,0x607,0x17)},'anthropic.claude-fable-5':{'modelId':_0x16b4a2(0x6e9,0x5a,0x402,0x4d8),'rates':{'input':0xa,'output':0x32,'cacheRead':0x1,'cacheWrite':12.5},'pricingProviderIds':[_0x16b4a2(0x401,0x42b,0x2aa,0x646)],'matchKind':'model-unique'},'anthropic.claude-haiku-4-5-20251001-v1:0':{'modelId':_0x16b4a2(0x20d,0x492,0x48a,0x3b4),'rates':{'input':0x1,'output':0x5,'cacheRead':0.1,'cacheWrite':1.25},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x5a09f8(0x498,0x30a,0x425,0x3d7)},'anthropic.claude-opus-4-1-20250805-v1:0':{'modelId':_0x16b4a2(0x1b4,0x20d,0x4fc,0x2c8),'rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75},'pricingProviderIds':[_0x5a09f8(0x209,0x24b,-0x153,0x2df)],'matchKind':_0x5a09f8(0x20,0x30a,0x5dd,0x43c)},'anthropic.claude-opus-4-5-20251101-v1:0':{'modelId':_0x5a09f8(0xaf,0x34a,0x14a,0x17),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x5a09f8(0x439,0x24b,-0x10f,0x85)],'matchKind':'model-unique'},'anthropic.claude-opus-4-6-v1':{'modelId':_0x5a09f8(0x3a0,0x4ae,0x3c3,0x297),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x16b4a2(0x329,0x5a4,0x2aa,0x409)],'matchKind':_0x5a09f8(0x35b,0x30a,0xa3,0xe7)},'anthropic.claude-opus-4-7':{'modelId':_0x16b4a2(0x139,0x6d9,0x44c,0x5e3),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x16b4a2(0x5cd,0x78,0x2aa,0x41)],'matchKind':_0x16b4a2(0x215,0x564,0x369,0x90)},'anthropic.claude-opus-4-8':{'modelId':_0x5a09f8(0x217,0x1fc,-0x186,0x3e4),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x5a09f8(0xfa,0x24b,0x433,0x2c5)],'matchKind':_0x5a09f8(-0xa5,0x30a,0xb4,0x323)},'anthropic.claude-opus-5':{'modelId':_0x5a09f8(-0x373,-0x104,0xc2,-0x14),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x5a09f8(0x44b,0x30a,-0x79,0x36f)},'anthropic.claude-sonnet-4-5-20250929-v1:0':{'modelId':_0x16b4a2(0x271,-0xa4,0x24a,0x221),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x16b4a2(0x19c,0x655,0x2aa,0x332)],'matchKind':_0x5a09f8(0x6b3,0x30a,0x687,0x3d1)},'anthropic.claude-sonnet-4-6':{'modelId':_0x5a09f8(-0x25d,-0x193,0x216,-0x71),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x5a09f8(0x599,0x24b,0x2cc,0x3cf)],'matchKind':_0x16b4a2(0x33a,0x298,0x369,0x536)},'anthropic.claude-sonnet-5':{'modelId':_0x16b4a2(0x6b7,0x3b9,0x5c2,0x76f),'rates':{'input':0x2,'output':0xa,'cacheRead':0.2,'cacheWrite':2.5},'pricingProviderIds':[_0x16b4a2(0x42d,0x339,0x2aa,0x286)],'matchKind':_0x5a09f8(0xc1,0x30a,0x287,0x397)},'anthropic/claude-3-5-haiku':{'modelId':_0x5a09f8(0xf0,0x30,0x311,-0x6d),'rates':{'input':0.8,'output':0x4,'cacheRead':0.08,'cacheWrite':0x1},'pricingProviderIds':[_0x16b4a2(-0x235,0x9b,0x185,0x204)],'matchKind':_0x16b4a2(0x69,0x5fe,0x369,0x2d0)},'anthropic/claude-3-7-sonnet':{'modelId':_0x5a09f8(-0x284,-0x12a,-0x482,0x10),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x5a09f8(0x476,0x1e2,-0x134,0x2ce)],'matchKind':'model-unique'},'anthropic/claude-3-haiku':{'modelId':_0x16b4a2(0x4f9,-0x147,0x170,-0x149),'rates':{'input':0.25,'output':1.25,'cacheRead':0.03,'cacheWrite':0.3},'pricingProviderIds':['cloudflare-ai-gateway',_0x5a09f8(0x211,0x533,0x85e,0x5a2),_0x5a09f8(0x29f,0x6d,-0x329,-0xee),'vercel'],'matchKind':_0x5a09f8(0x377,0x102,0x29d,0xe9)},'anthropic/claude-3-opus':{'modelId':_0x16b4a2(0x65b,0x60f,0x319,0x4e2),'rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75},'pricingProviderIds':[_0x5a09f8(0x95,0x126,0x27d,0x4e)],'matchKind':_0x16b4a2(0x2e0,0x6a0,0x369,0x677)},'anthropic/claude-3-sonnet':{'modelId':'anthropic/claude-3-sonnet','rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':0.3},'pricingProviderIds':[_0x5a09f8(0x47,0x126,0x12f,0x13b)],'matchKind':'model-unique'},'anthropic/claude-3.5-haiku':{'modelId':_0x16b4a2(-0x20,0x41f,0x10f,0x40a),'rates':{'input':0.8,'output':0x4,'cacheRead':0.08,'cacheWrite':0x1},'pricingProviderIds':[_0x16b4a2(-0x6,-0x235,0x185,0x210),_0x16b4a2(0x34c,0x874,0x592,0x257),_0x16b4a2(-0x43a,-0x26e,-0xb6,0xef)],'matchKind':_0x5a09f8(-0xa9,0x102,-0x22b,-0x138)},'anthropic/claude-3.5-sonnet':{'modelId':_0x16b4a2(-0x3cd,-0x61,-0x66,0x98),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x16b4a2(-0xb1,-0x1ad,0x185,0x308)],'matchKind':_0x16b4a2(0x6a,0x10b,0x369,0x106)},'anthropic/claude-3.7-sonnet':{'modelId':_0x16b4a2(0x2f7,-0x21,0x15d,0x139),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':['zenmux'],'matchKind':_0x16b4a2(0x66b,0x502,0x369,0x3d9)},'anthropic/claude-fable-5':{'modelId':_0x5a09f8(-0x95,-0x14a,-0x5b,-0x35d),'rates':{'input':0xa,'output':0x32,'cacheRead':0x1,'cacheWrite':12.5},'pricingProviderIds':[_0x16b4a2(-0xe5,-0x8c,0x185,0x194),_0x16b4a2(0x563,0x7ec,0x52a,0x445),_0x16b4a2(-0x245,0x1cd,0x63,0x31b),_0x16b4a2(0x3d1,-0x11d,0xcc,0x69),_0x5a09f8(0x361,0x387,-0x34,0x4a0),_0x16b4a2(-0x2c,-0x2d9,-0xb6,0x2e9)],'matchKind':'model-identical'},'anthropic/claude-haiku-3':{'modelId':_0x16b4a2(0x23e,-0x2a1,0x2a,0x12c),'rates':{'input':0.21,'output':1.1,'cacheRead':0.021,'cacheWrite':0.26},'pricingProviderIds':['poe'],'matchKind':_0x16b4a2(0x5ed,0x689,0x369,0x1ad)},'anthropic/claude-haiku-3.5':{'modelId':_0x5a09f8(0xfd,0x285,0x649,-0x2b),'rates':{'input':0.68,'output':3.4,'cacheRead':0.068,'cacheWrite':0.85},'pricingProviderIds':[_0x5a09f8(-0x4e9,-0x1b8,-0x293,0x147)],'matchKind':'model-unique'},'anthropic/claude-haiku-4-5-20251001':{'modelId':_0x5a09f8(0x497,0x518,0x86d,0x2e4),'rates':{'input':0x1,'output':0x5,'cacheRead':0.1,'cacheWrite':1.25},'pricingProviderIds':[_0x5a09f8(0x2e4,0x454,0x642,0x217)],'matchKind':'model-unique'},'anthropic/claude-haiku-latest':{'modelId':_0x5a09f8(-0x97,-0x29,0x68,0x1cd),'rates':{'input':0x1,'output':0x5,'cacheRead':0.1},'pricingProviderIds':[_0x16b4a2(-0xb2,-0x91,0x2b,-0x368)],'matchKind':_0x16b4a2(-0x28,-0x56,0x369,0x14f)},'anthropic/claude-opus-4-1':{'modelId':_0x5a09f8(-0x31b,-0x1ab,-0x3e7,-0x12b),'rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75},'pricingProviderIds':['cloudflare-ai-gateway',_0x5a09f8(0x2a9,0x1e2,0x240,0x281)],'matchKind':_0x16b4a2(0x4a1,0x6d,0x161,-0x1b2)},'anthropic/claude-opus-4-1-20250805':{'modelId':_0x5a09f8(0x382,-0x8,0x1af,-0x61),'rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75},'pricingProviderIds':[_0x5a09f8(0x484,0x454,0x340,0xd2)],'matchKind':_0x5a09f8(0x3f0,0x30a,0x43e,0x2b7)},'anthropic/claude-opus-4-20250514':{'modelId':'anthropic/claude-opus-4-20250514','rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75},'pricingProviderIds':[_0x5a09f8(0x679,0x454,0x7b8,0x174)],'matchKind':_0x16b4a2(0x5e0,0x14d,0x369,0x46d)},'anthropic/claude-opus-4-5-20251101':{'modelId':_0x16b4a2(0x54d,-0x91,0x2b5,0x10d),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':['merge-gateway'],'matchKind':'model-unique'},'anthropic/claude-opus-4.6-fast':{'modelId':_0x16b4a2(0x1f5,0x72c,0x552,0x445),'rates':{'input':0x1e,'output':0x96,'cacheRead':0x3,'cacheWrite':37.5},'pricingProviderIds':[_0x16b4a2(0x4b5,0x2bf,0x592,0x498)],'matchKind':_0x16b4a2(0x71,0x465,0x369,0x2d8)},'anthropic/claude-opus-4.6:thinking':{'modelId':_0x5a09f8(-0x5c,-0x167,-0x49e,-0x2b7),'rates':{'input':4.998,'output':25.007},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'anthropic/claude-opus-4.6:thinking:low':{'modelId':_0x16b4a2(0x1c7,0x177,0x37b,0x714),'rates':{'input':4.998,'output':25.007},'pricingProviderIds':[_0x16b4a2(0x37e,0x3d9,0x2b,0x7b)],'matchKind':_0x16b4a2(0x99,0x297,0x369,0x620)},'anthropic/claude-opus-4.6:thinking:max':{'modelId':_0x16b4a2(-0x2b2,0xd1,-0x163,-0x131),'rates':{'input':4.998,'output':25.007},'pricingProviderIds':[_0x5a09f8(-0x63,-0x34,-0x217,0x14c)],'matchKind':_0x16b4a2(0x33,0x373,0x369,0x2b4)},'anthropic/claude-opus-4.6:thinking:medium':{'modelId':'anthropic/claude-opus-4.6:thinking:medium','rates':{'input':4.998,'output':25.007},'pricingProviderIds':[_0x16b4a2(0x6,-0x316,0x2b,0x194)],'matchKind':_0x5a09f8(0x4e4,0x30a,0xd3,0x540)},'anthropic/claude-opus-4.7-fast':{'modelId':_0x5a09f8(0x2ff,0x434,0xb8,0x451),'rates':{'input':0x1e,'output':0x96,'cacheRead':0x3,'cacheWrite':37.5},'pricingProviderIds':[_0x16b4a2(0x2e2,0x54b,0x592,0x87a),_0x16b4a2(0x113,-0x16,0xcc,-0x56),_0x5a09f8(0x469,0x387,0x35b,0x481)],'matchKind':_0x16b4a2(0x171,0x208,0x161,0x120)},'anthropic/claude-opus-4.7:thinking':{'modelId':_0x5a09f8(0x19f,0x88,-0x119,-0x274),'rates':{'input':4.998,'output':25.007,'cacheRead':0.4998},'pricingProviderIds':[_0x5a09f8(-0x15f,-0x34,-0x122,-0x135)],'matchKind':'model-unique'},'anthropic/claude-opus-4.8-fast':{'modelId':'anthropic/claude-opus-4.8-fast','rates':{'input':0xa,'output':0x32,'cacheRead':0x1,'cacheWrite':12.5},'pricingProviderIds':['openrouter',_0x16b4a2(0x5d8,0x5f2,0x3e6,0x457)],'matchKind':_0x16b4a2(0x365,0x6b,0x161,0x38a)},'anthropic/claude-opus-4.8:thinking':{'modelId':_0x16b4a2(0x4d0,0x2ae,0x606,0x49c),'rates':{'input':4.998,'output':25.007,'cacheRead':0.4998},'pricingProviderIds':[_0x16b4a2(-0xf4,-0x1cf,0x2b,0x45)],'matchKind':_0x5a09f8(0x41e,0x30a,0x4ec,0x57a)},'anthropic/claude-opus-5':{'modelId':_0x16b4a2(0x6df,0x3e7,0x501,0x6a2),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':['openrouter',_0x5a09f8(0x16b,0x387,0x4e7,0x650)],'matchKind':_0x16b4a2(0x37c,0x73,0x161,-0x3c)},'anthropic/claude-opus-5-fast':{'modelId':_0x5a09f8(0x4c2,0x53b,0x89a,0x3a3),'rates':{'input':0xa,'output':0x32,'cacheRead':0x1,'cacheWrite':12.5},'pricingProviderIds':[_0x5a09f8(-0x1,0x6d,-0x2ba,-0x18f),'vercel'],'matchKind':_0x5a09f8(0x63,0x102,0x459,0x17a)},'anthropic/claude-opus-latest':{'modelId':_0x5a09f8(0x63b,0x31f,0x2a4,0x2fd),'rates':{'input':4.998,'output':25.007,'cacheRead':0.4998},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x66,0x222,0x369,0x40f)},'anthropic/claude-sonnet-3.5':{'modelId':_0x5a09f8(0x5e2,0x2c1,-0x5e,0x409),'rates':{'input':2.6,'output':0xd,'cacheRead':0.26,'cacheWrite':3.2},'pricingProviderIds':[_0x5a09f8(-0xe5,-0x1b8,-0x1f8,0x63)],'matchKind':_0x5a09f8(0x567,0x30a,-0x3f,-0x26)},'anthropic/claude-sonnet-3.5-june':{'modelId':_0x5a09f8(0x2d2,0x4f5,0x271,0x4b6),'rates':{'input':2.6,'output':0xd,'cacheRead':0.26,'cacheWrite':3.2},'pricingProviderIds':['poe'],'matchKind':_0x16b4a2(0x3a9,0x2f6,0x369,0x1d0)},'anthropic/claude-sonnet-3.7':{'modelId':_0x16b4a2(0x452,0x52,0x148,0x171),'rates':{'input':2.6,'output':0xd,'cacheRead':0.26,'cacheWrite':3.2},'pricingProviderIds':[_0x5a09f8(-0x189,-0x1b8,-0x251,-0x492)],'matchKind':'model-unique'},'anthropic/claude-sonnet-4-20250514':{'modelId':'anthropic/claude-sonnet-4-20250514','rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':['merge-gateway'],'matchKind':_0x16b4a2(-0xe,0x12,0x369,0x197)},'anthropic/claude-sonnet-4-5-20250929':{'modelId':_0x16b4a2(-0x216,0x4a9,0x146,-0x59),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x5a09f8(0x569,0x454,0x2b8,0x40d)],'matchKind':_0x16b4a2(0x354,0x70,0x369,0x8b)},'anthropic/claude-sonnet-4.6:thinking':{'modelId':'anthropic/claude-sonnet-4.6:thinking','rates':{'input':2.992,'output':14.993999999999998},'pricingProviderIds':[_0x16b4a2(0x176,0x1b6,0x2b,0x231)],'matchKind':'model-unique'},'anthropic/claude-sonnet-5-free':{'modelId':'anthropic/claude-sonnet-5-free','rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':['zenmux'],'matchKind':_0x5a09f8(0x22d,0x30a,0x330,0x558)},'anthropic/claude-sonnet-latest':{'modelId':'anthropic/claude-sonnet-latest','rates':{'input':2.992,'output':14.994,'cacheRead':0.2992},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x48c,0x2d6,0x369,0x25b)},'arcee-ai/coder-large':{'modelId':_0x16b4a2(0x63f,0x4ee,0x490,0x58d),'rates':{'input':0.5,'output':0.8},'pricingProviderIds':[_0x16b4a2(0x8a0,0x5f4,0x592,0x83a)],'matchKind':_0x5a09f8(0x505,0x30a,0x536,0x59e)},'arcee-ai/maestro-reasoning':{'modelId':'arcee-ai/maestro-reasoning','rates':{'input':0.9,'output':3.3},'pricingProviderIds':[_0x5a09f8(0x2dd,0x533,0x315,0x2ed)],'matchKind':_0x5a09f8(0x5b9,0x30a,0x11,0x82)},'arcee-ai/spotlight':{'modelId':'arcee-ai/spotlight','rates':{'input':0.18,'output':0.18},'pricingProviderIds':[_0x16b4a2(0x6bd,0x83c,0x592,0x688)],'matchKind':_0x16b4a2(0x393,0x4db,0x369,0x5ab)},'arcee-ai/virtuoso-large':{'modelId':_0x5a09f8(0x4b2,0x29a,0x57c,-0xa2),'rates':{'input':0.75,'output':1.2},'pricingProviderIds':['kilo','openrouter'],'matchKind':_0x16b4a2(-0x45,-0x22c,0x161,0x41e)},'arcee-trinity-large-thinking':{'modelId':_0x16b4a2(0x21b,0x2c4,0x36e,0x488),'rates':{'input':0.25,'output':0.9,'cacheRead':0.06},'pricingProviderIds':[_0x16b4a2(-0x217,0x221,-0x1d,0x339)],'matchKind':_0x16b4a2(0x5ba,0x20b,0x369,0x43d)},'arcee_ai/AFM/models/trinity-mini':{'modelId':_0x16b4a2(0x204,0x17d,0x2a7,0x392),'rates':{'input':0.045,'output':0.15},'pricingProviderIds':['clarifai'],'matchKind':'model-unique'},'asi1-mini':{'modelId':'asi1-mini','rates':{'input':0x1,'output':0x1},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0xe6,0x30a,0x46b,0x336)},'au.anthropic.claude-haiku-4-5-20251001-v1:0':{'modelId':_0x5a09f8(-0x173,-0xf2,-0x194,-0x145),'rates':{'input':0x1,'output':0x5,'cacheRead':0.1,'cacheWrite':1.25},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x16b4a2(0x4cf,0x18e,0x369,0x6dc)},'au.anthropic.claude-opus-4-6-v1':{'modelId':_0x16b4a2(0x18e,0xfc,0x34c,-0x1),'rates':{'input':16.5,'output':82.5,'cacheRead':1.65,'cacheWrite':20.625},'pricingProviderIds':[_0x16b4a2(0xca,-0xa3,0x2aa,0x4e)],'matchKind':_0x5a09f8(0x1a1,0x30a,0x4c2,-0x3)},'au.anthropic.claude-opus-4-8':{'modelId':'au.anthropic.claude-opus-4-8','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x5a09f8(0x5a0,0x24b,0x26c,0x1c7)],'matchKind':'model-unique'},'au.anthropic.claude-opus-5':{'modelId':_0x5a09f8(0x6e,-0x20,-0x38a,-0x3a3),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x5a09f8(-0x100,0x24b,0x4f1,-0x99)],'matchKind':'model-unique'},'au.anthropic.claude-sonnet-4-5-20250929-v1:0':{'modelId':_0x5a09f8(0x4fa,0x406,0x27a,0x3f1),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x5a09f8(-0x59,0x24b,-0x133,0x54)],'matchKind':'model-unique'},'au.anthropic.claude-sonnet-4-6':{'modelId':_0x16b4a2(0x1e1,0xc6,0x24f,0x2e4),'rates':{'input':3.3,'output':16.5,'cacheRead':0.33,'cacheWrite':4.125},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x16b4a2(0x40b,0x3c6,0x369,0x297)},'au.anthropic.claude-sonnet-5':{'modelId':_0x5a09f8(0x1b6,0x352,0xa3,0x4e1),'rates':{'input':0x2,'output':0xa,'cacheRead':0.2,'cacheWrite':2.5},'pricingProviderIds':['amazon-bedrock'],'matchKind':'model-unique'},'auto-model':{'modelId':'auto-model','rates':{'input':0x0,'output':0x0},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x2c8,0x30a,0x652,0x5d1)},'auto-model-basic':{'modelId':_0x16b4a2(0x2b1,-0x55,0x300,0xaf),'rates':{'input':9.996,'output':19.992},'pricingProviderIds':[_0x5a09f8(-0x365,-0x34,-0x3f0,-0x202)],'matchKind':'model-unique'},'auto-model-premium':{'modelId':_0x16b4a2(0x99e,0x55c,0x5fa,0x85d),'rates':{'input':9.996,'output':19.992},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(-0x30,0x30a,-0xa5,0x40d)},'auto-model-standard':{'modelId':_0x16b4a2(0x270,0x325,-0x1e,0x1a),'rates':{'input':9.996,'output':19.992},'pricingProviderIds':[_0x16b4a2(-0x36f,0x24e,0x2b,-0x50)],'matchKind':_0x16b4a2(0x3bb,0x3b8,0x369,0xc2)},'azure-gpt-4-turbo':{'modelId':'azure-gpt-4-turbo','rates':{'input':9.996,'output':30.005},'pricingProviderIds':[_0x5a09f8(0x303,-0x34,-0x2b2,0x296)],'matchKind':_0x16b4a2(0x66a,-0x2,0x369,-0x1b)},'azure-gpt-4o':{'modelId':_0x16b4a2(0x961,0x44b,0x5e8,0x683),'rates':{'input':2.499,'output':9.996},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x204,0x30a,0x5e8,0x155)},'azure-gpt-4o-mini':{'modelId':_0x5a09f8(0x2bd,0xdc,0x30a,-0x290),'rates':{'input':0.1496,'output':0.595},'pricingProviderIds':[_0x16b4a2(0x13f,0x237,0x2b,-0x329)],'matchKind':'model-unique'},'azure-o1':{'modelId':_0x16b4a2(0x744,0x751,0x4c7,0x4e1),'rates':{'input':14.994,'output':59.993},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x41d,0x5f7,0x369,0x1cc)},'azure-o3-mini':{'modelId':'azure-o3-mini','rates':{'input':1.088,'output':4.3996},'pricingProviderIds':[_0x16b4a2(0x310,-0x250,0x2b,0x3e3)],'matchKind':_0x16b4a2(0x49c,0x729,0x369,0x2a8)},'baai/bge-m3':{'modelId':_0x5a09f8(0x111,-0x52,0xd8,0x116),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0x99,0x135,0x9a,-0x128)],'matchKind':_0x5a09f8(0x41e,0x30a,0x607,0x592)},'baichuan/baichuan-m2-32b':{'modelId':'baichuan/baichuan-m2-32b','rates':{'input':0.07,'output':0.07},'pricingProviderIds':[_0x5a09f8(0x6fa,0x372,0x398,0x3cc)],'matchKind':_0x5a09f8(0x182,0x30a,0x9c,0x339)},'baidu/ERNIE-4.5-300B-A47B':{'modelId':'baidu/ERNIE-4.5-300B-A47B','rates':{'input':0.28,'output':1.1},'pricingProviderIds':[_0x5a09f8(0x54a,0x48c,0x6b4,0x582),_0x5a09f8(0x262,0x45e,0x2ae,0x3a2)],'matchKind':_0x16b4a2(-0x19c,0x15e,0x161,0x393)},'baidu/cobuddy:free':{'modelId':_0x5a09f8(0x36f,0x360,-0x8,0x5fb),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['kilo'],'matchKind':_0x5a09f8(0x609,0x30a,0x6a8,0x418)},'baidu/ernie-4.5-21B-a3b':{'modelId':_0x5a09f8(0x65e,0x305,0x171,0x87),'rates':{'input':0.07,'output':0.28},'pricingProviderIds':[_0x5a09f8(0x26e,0x372,0x6aa,0x634)],'matchKind':'model-unique'},'baidu/ernie-4.5-21B-a3b-thinking':{'modelId':_0x5a09f8(0x263,0x223,0x4ec,0x22a),'rates':{'input':0.07,'output':0.28},'pricingProviderIds':[_0x5a09f8(0x24f,0x372,0x402,0x71b)],'matchKind':_0x5a09f8(0x35,0x30a,0x2ff,0x235)},'baidu/ernie-4.5-21b-a3b':{'modelId':_0x16b4a2(0x804,0x8de,0x54d,0x24f),'rates':{'input':0.07,'output':0.28},'pricingProviderIds':[_0x16b4a2(0x43e,0x4a9,0x592,0x3db)],'matchKind':_0x16b4a2(0x610,0x5ed,0x369,0x83)},'baidu/ernie-4.5-21b-a3b-thinking':{'modelId':_0x16b4a2(0x341,0x37d,0xa8,0x3da),'rates':{'input':0.07,'output':0.28},'pricingProviderIds':[_0x5a09f8(0x4fa,0x533,0x3d7,0x312)],'matchKind':'model-unique'},'baidu/ernie-4.5-300b-a47b':{'modelId':_0x5a09f8(-0x4fb,-0x180,0x201,-0x3e2),'rates':{'input':0.28,'output':1.1},'pricingProviderIds':['kilo'],'matchKind':_0x5a09f8(0x271,0x30a,0x71,0x287)},'baidu/ernie-4.5-300b-a47b-paddle':{'modelId':_0x5a09f8(0x5d5,0x3ee,0x739,0x3b),'rates':{'input':0.28,'output':1.1},'pricingProviderIds':[_0x5a09f8(0x3b4,0x2b0,0x1b8,0x7c),_0x5a09f8(0x113,0x372,0x5b1,0x8d)],'matchKind':_0x16b4a2(-0xff,0x16d,0x161,-0x19f)},'baidu/ernie-4.5-vl-28b-a3b-thinking':{'modelId':_0x16b4a2(0xff,0x276,0xe2,0x4a),'rates':{'input':0.39,'output':0.39},'pricingProviderIds':['novita-ai'],'matchKind':'model-unique'},'baidu/ernie-4.5-vl-424b-a47b':{'modelId':_0x16b4a2(-0x1ec,-0xbb,-0xc6,-0xd7),'rates':{'input':0.42,'output':1.25},'pricingProviderIds':[_0x16b4a2(0x1,0x677,0x30f,0x20f),_0x16b4a2(0x7ef,0x4fd,0x592,0x1e7),'novita-ai',_0x5a09f8(-0x2f,0x6d,0x28c,-0x1c3)],'matchKind':_0x5a09f8(0x1d8,0x102,-0x39,0x1bb)},'baidu/ernie-5.0-thinking-preview':{'modelId':'baidu/ernie-5.0-thinking-preview','rates':{'input':0.84,'output':3.37},'pricingProviderIds':[_0x5a09f8(0xd3,-0x115,0x24b,0xd)],'matchKind':_0x16b4a2(0x660,0x11b,0x369,0x519)},'baidu/qianfan-ocr-fast':{'modelId':_0x5a09f8(0x17d,0x16b,0x2d3,-0xef),'rates':{'input':0.68,'output':2.81},'pricingProviderIds':[_0x5a09f8(0x797,0x533,0x682,0x8c4)],'matchKind':_0x5a09f8(0x19a,0x30a,0x264,0x44b)},'bailian/qwen3.7-max':{'modelId':_0x5a09f8(0x244,0x21d,0x2f0,0x56),'rates':{'input':2.5,'output':7.5,'cacheRead':0.5,'cacheWrite':3.125},'pricingProviderIds':[_0x16b4a2(0x2e8,0x31a,0x63,0x26a)],'matchKind':'model-unique'},'baseten/Kimi-K2-Instruct-FP4':{'modelId':_0x5a09f8(0x17f,0x1d0,0x3e2,-0x52),'rates':{'input':0.1,'output':0x2},'pricingProviderIds':[_0x5a09f8(-0x213,-0x34,-0xc5,-0x2c8)],'matchKind':_0x5a09f8(0xe1,0x30a,0x132,0x266)},'bge-m3':{'modelId':'bge-m3','rates':{'input':0.02,'output':0x0},'pricingProviderIds':['digitalocean'],'matchKind':_0x16b4a2(0x52b,0x6af,0x369,0x69f)},'bge-multilingual-gemma2':{'modelId':_0x5a09f8(-0x196,-0x1a5,-0x46,-0x4f0),'rates':{'input':0.1,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0x10f,0x9e,-0x13b,0x22c)],'matchKind':_0x16b4a2(0x3c,0x2b3,0x369,0x3c9)},'bge-reranker-v2-m3':{'modelId':_0x16b4a2(0x46,0x284,0x356,0x6d7),'rates':{'input':0.01,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x40d,-0x7c,-0x1cd,-0x30e)],'matchKind':'model-unique'},'big-pickle':{'modelId':_0x16b4a2(0x332,0x3d2,0x28d,-0x109),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':['opencode'],'matchKind':_0x5a09f8(0x1b9,0x30a,-0x81,0x457)},'black-forest-labs/FLUX.2-klein-4B':{'modelId':_0x16b4a2(0xfe,0x307,0x1a9,-0x1f8),'rates':{'input':0x1,'output':0x1},'pricingProviderIds':[_0x5a09f8(0x3c1,0x50d,0x47c,0x7ba)],'matchKind':_0x16b4a2(0x230,0x53a,0x369,0x23b)},'black-forest-labs/flux.1-dev':{'modelId':_0x5a09f8(0x2d8,0x67,0x109,-0x24b),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x22b,0x3b,0xb9,0x347)],'matchKind':_0x16b4a2(0x558,0x446,0x369,0x4dc)},'black-forest-labs/flux_1-kontext-dev':{'modelId':_0x16b4a2(0x479,0x50f,0x4e1,0x453),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x3a2,0x2e3,0x9a,-0x159)],'matchKind':_0x5a09f8(0x66d,0x30a,0x2b4,-0x99)},'black-forest-labs/flux_1-schnell':{'modelId':_0x5a09f8(-0x107,-0x8d,-0x35e,-0x265),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0xa5,0x3b,0x3cc,0x264)],'matchKind':_0x16b4a2(0x728,0x69,0x369,0x66c)},'black-forest-labs/flux_2-klein-4b':{'modelId':_0x16b4a2(0x115,-0x33d,-0x47,0x2bb),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x3c1,0x3b,0x397,0x2f7)],'matchKind':'model-unique'},'brave':{'modelId':_0x5a09f8(-0x3c2,-0x102,-0x120,0x267),'rates':{'input':0x5,'output':0x5},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x3f3,0xfd,0x369,-0x50)},'brave-pro':{'modelId':_0x5a09f8(0x299,0x1ea,0x33d,0xd7),'rates':{'input':0x5,'output':0x5},'pricingProviderIds':[_0x16b4a2(0x50,-0x2b7,0x2b,-0x2a4)],'matchKind':_0x5a09f8(0x166,0x30a,0x387,0x11c)},'brave-research':{'modelId':_0x5a09f8(0x14b,0x275,-0x3,0x308),'rates':{'input':0x5,'output':0x5},'pricingProviderIds':[_0x5a09f8(-0x1a0,-0x34,0x1d1,0x21)],'matchKind':_0x16b4a2(0x2c3,0x195,0x369,0x25e)},'bytedance-seed/seed-1.6':{'modelId':_0x5a09f8(-0x23e,0xa3,-0x306,0x452),'rates':{'input':0.25,'output':0x2},'pricingProviderIds':[_0x16b4a2(0x332,0x301,0x592,0x3d9),'openrouter'],'matchKind':_0x5a09f8(-0x9a,0x102,0x2f5,0x297)},'bytedance-seed/seed-1.6-flash':{'modelId':_0x5a09f8(0x3d0,0x342,-0x2d,0x655),'rates':{'input':0.075,'output':0.3},'pricingProviderIds':[_0x16b4a2(0x28b,0x3b8,0x592,0x705),_0x5a09f8(0x40c,0x6d,-0x2af,-0x95)],'matchKind':'model-identical'},'bytedance-seed/seed-2.0-lite':{'modelId':'bytedance-seed/seed-2.0-lite','rates':{'input':0.25,'output':0x2},'pricingProviderIds':['kilo',_0x16b4a2(-0x59,0x2e6,0x2b,-0x295),_0x5a09f8(0x202,0x6d,0x82,-0x53)],'matchKind':'model-identical'},'bytedance-seed/seed-2.0-mini':{'modelId':'bytedance-seed/seed-2.0-mini','rates':{'input':0.1,'output':0.4},'pricingProviderIds':[_0x5a09f8(0x30b,0x533,0x4cf,0x398),_0x5a09f8(-0x147,0x6d,-0x115,0x1c7)],'matchKind':_0x5a09f8(0x307,0x102,0x18d,-0x1b0)},'bytedance/seed-1.6':{'modelId':_0x5a09f8(0x98,0x1ae,0x301,0x6f),'rates':{'input':0.25,'output':0x2,'cacheRead':0.05},'pricingProviderIds':[_0x16b4a2(0x491,0x6d7,0x3e6,0x197)],'matchKind':_0x16b4a2(-0x24,0x5a7,0x369,0x261)},'bytedance/seed-1.8':{'modelId':'bytedance/seed-1.8','rates':{'input':0.25,'output':0x2,'cacheRead':0.05},'pricingProviderIds':['vercel'],'matchKind':'model-unique'},'bytedance/seed-oss-36b-instruct':{'modelId':'bytedance/seed-oss-36b-instruct','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x29d,0x3b,-0xd4,0x215)],'matchKind':_0x5a09f8(0x37e,0x30a,0x16e,0xa3)},'cerebras-llama-4-maverick-17b-128e-instruct':{'modelId':_0x16b4a2(0x21b,0x10f,0x310,0x628),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['llama'],'matchKind':_0x16b4a2(0x5df,0x6c,0x369,-0x3e)},'cerebras-llama-4-scout-17b-16e-instruct':{'modelId':_0x16b4a2(0x17b,-0x28b,-0xa2,-0x3e5),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x4b4,0x56f,0x1e2,0x134)],'matchKind':_0x16b4a2(0x5ad,0xff,0x369,0x74)},'cerebras/gpt-oss-120b-cs':{'modelId':_0x5a09f8(0x319,0x4ac,0x496,0x141),'rates':{'input':0.35,'output':0.75},'pricingProviderIds':[_0x5a09f8(0x1f,-0x1b8,0x19e,0x1be)],'matchKind':'model-unique'},'cerebras/llama-3.1-8b-cs':{'modelId':_0x5a09f8(0x4d3,0x587,0x7c2,0x378),'rates':{'input':0.1,'output':0.1},'pricingProviderIds':[_0x16b4a2(-0x4ca,0x5c,-0x159,0xf2)],'matchKind':_0x16b4a2(0x675,0x12f,0x369,0x50)},'chutesai/Mistral-Small-3.2-24B-Instruct-2506':{'modelId':_0x16b4a2(0x52,0x24e,-0x123,-0x456),'rates':{'input':0.2,'output':0.4},'pricingProviderIds':[_0x16b4a2(0x29d,-0x2dc,0x2b,-0x260)],'matchKind':'model-unique'},'clarifai/main/models/mm-poly-8b':{'modelId':_0x16b4a2(0x48d,0x35d,0x179,-0x18e),'rates':{'input':0.658,'output':1.11},'pricingProviderIds':[_0x5a09f8(0xe8,0x1db,0x215,0x204)],'matchKind':_0x5a09f8(0xe6,0x30a,0x53,0x417)},'claude-3-5-haiku':{'modelId':_0x16b4a2(0x5aa,0x4af,0x274,0x4a4),'rates':{'input':0.8,'output':0x4,'cacheRead':0.08,'cacheWrite':0x1},'pricingProviderIds':[_0x5a09f8(-0x84,0x82,-0x24c,0x3b7)],'matchKind':_0x16b4a2(0x31a,0x10e,0x369,0x3db)},'claude-3-5-haiku-20241022':{'modelId':_0x5a09f8(0x261,-0x1f,-0x1e2,0x9f),'rates':{'input':0.8,'output':0x4},'pricingProviderIds':['302ai',_0x5a09f8(-0xd2,-0x34,-0x391,0x2a7)],'matchKind':_0x5a09f8(0x2b9,0x102,-0x93,0xfe)},'claude-3-5-haiku-latest':{'modelId':_0x5a09f8(0x214,0x514,0x75b,0x234),'rates':{'input':0.8,'output':0x4},'pricingProviderIds':[_0x16b4a2(0x5a3,0x17d,0x3a3,0x4a7)],'matchKind':_0x5a09f8(0x542,0x30a,0x115,-0x1)},'claude-3-7-sonnet-20250219':{'modelId':_0x16b4a2(0x812,0x8c1,0x523,0x724),'rates':{'input':0x3,'output':0xf},'pricingProviderIds':[_0x5a09f8(0x4d7,0x364,0x31d,0x618)],'matchKind':_0x16b4a2(0x1a8,0x41,0x369,0x42a)},'claude-3-haiku-20240307':{'modelId':_0x16b4a2(-0x3d,0x668,0x352,0x57e),'rates':{'input':0.25,'output':1.25,'cacheRead':0.03,'cacheWrite':0.3},'pricingProviderIds':[_0x5a09f8(0x340,0x46c,0x32a,0x823)],'matchKind':_0x16b4a2(0x28,0x3c2,0x369,0x4a2)},'claude-3-opus':{'modelId':_0x16b4a2(0x512,0x196,0x301,0x179),'rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75},'pricingProviderIds':['llmgateway'],'matchKind':_0x5a09f8(-0x43,0x30a,0x510,0x172)},'claude-3.5-haiku':{'modelId':'claude-3.5-haiku','rates':{'input':0.7999999999999999,'output':0x4,'cacheRead':0.08,'cacheWrite':0x1},'pricingProviderIds':[_0x16b4a2(0x2c1,0x7cf,0x4cb,0x26c)],'matchKind':_0x16b4a2(-0x47,0x14b,0x369,0x248)},'claude-3.5-sonnet-v2':{'modelId':_0x16b4a2(0x6b,-0x11c,0x197,0x40d),'rates':{'input':0x3,'output':0xf,'cacheRead':0.30000000000000004,'cacheWrite':3.75},'pricingProviderIds':['helicone'],'matchKind':_0x5a09f8(0x188,0x30a,0x421,0x3ed)},'claude-3.7-sonnet':{'modelId':_0x5a09f8(0x3b8,0xa4,-0x237,-0x83),'rates':{'input':0x3,'output':0xf,'cacheRead':0.30000000000000004,'cacheWrite':3.75},'pricingProviderIds':['helicone'],'matchKind':_0x16b4a2(0x6f2,0x256,0x369,0x16b)},'claude-4-5-sonnet':{'modelId':_0x5a09f8(-0x238,-0xe6,-0x3a6,-0x20e),'rates':{'input':3.259,'output':16.296},'pricingProviderIds':[_0x5a09f8(-0xa,0x1ca,0x33b,-0xa7)],'matchKind':'model-unique'},'claude-4-6-sonnet':{'modelId':_0x5a09f8(0x21d,0x4e8,0x440,0x5fc),'rates':{'input':3.59,'output':17.92},'pricingProviderIds':[_0x5a09f8(0x534,0x1ca,-0x1a4,0x38)],'matchKind':_0x5a09f8(0x5cd,0x30a,0x205,0x4e7)},'claude-4.5-haiku':{'modelId':_0x5a09f8(0x7f8,0x575,0x42a,0x729),'rates':{'input':0x1,'output':0x5,'cacheRead':0.09999999999999999,'cacheWrite':1.25},'pricingProviderIds':[_0x5a09f8(0x684,0x46c,0x6ac,0x802)],'matchKind':'model-unique'},'claude-4.5-opus':{'modelId':'claude-4.5-opus','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':['helicone'],'matchKind':_0x5a09f8(0x27f,0x30a,0x675,-0xa9)},'claude-4.5-sonnet':{'modelId':_0x5a09f8(-0xc1,0x13e,0x225,-0x83),'rates':{'input':0x3,'output':0xf,'cacheRead':0.30000000000000004,'cacheWrite':3.75},'pricingProviderIds':[_0x5a09f8(0x67a,0x46c,0x75e,0x59f)],'matchKind':'model-unique'},'claude-haiku-4-5-20251001-thinking':{'modelId':_0x16b4a2(-0x60,0x24d,-0xce,-0x33d),'rates':{'input':0x1,'output':0x5,'cacheRead':0.1},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0xe2,0x30a,0x327,0x5a0)},'claude-haiku-4-5-free':{'modelId':_0x5a09f8(-0x2c2,-0x7a,0x14,0x32d),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0xc0,0x10,0x5e,-0x2e7)],'matchKind':_0x16b4a2(0x5a9,0x55f,0x369,0x6ff)},'claude-haiku-4-5@20251001':{'modelId':'claude-haiku-4-5@20251001','rates':{'input':0x1,'output':0x5,'cacheRead':0.1,'cacheWrite':1.25},'pricingProviderIds':[_0x16b4a2(0x7d,-0x25,0x336,0x534),_0x5a09f8(0x736,0x558,0x596,0x863)],'matchKind':'model-identical'},'claude-haiku-4.5':{'modelId':_0x5a09f8(0x273,0x7a,-0x1a5,-0x143),'rates':{'input':0x1,'output':0x5,'cacheRead':0.1,'cacheWrite':1.25},'pricingProviderIds':[_0x16b4a2(0x365,0x367,0xbc,0x3f1)],'matchKind':_0x5a09f8(-0x94,0x30a,0x4eb,-0x20)},'claude-opus-4':{'modelId':'claude-opus-4','rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75},'pricingProviderIds':['helicone'],'matchKind':_0x5a09f8(0x63,0x30a,0x83,0x39)},'claude-opus-4-1':{'modelId':'claude-opus-4-1','rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75},'pricingProviderIds':['anthropic',_0x16b4a2(-0x289,0x2,-0xaf,-0x194),_0x16b4a2(0x1b5,-0x199,-0x88,-0x383),_0x16b4a2(0x42e,0x462,0x4cb,0x594),_0x5a09f8(-0x1b2,-0x1a,0x269,-0x26b),_0x5a09f8(-0x231,0x82,-0x145,0x30b),'pioneer'],'matchKind':_0x5a09f8(-0x1d,0x102,-0x72,0x3dc)},'claude-opus-4-1-20250805-thinking':{'modelId':_0x5a09f8(0x261,-0x142,-0x19b,0x23d),'rates':{'input':0xf,'output':0x4b},'pricingProviderIds':[_0x5a09f8(0x609,0x344,0x56b,-0x69)],'matchKind':_0x5a09f8(0xf7,0x30a,0x1ac,0x5d)},'claude-opus-4-1-thinking':{'modelId':_0x5a09f8(0x14a,0x40e,0x93,0x158),'rates':{'input':14.994,'output':75.004},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'claude-opus-4-1-thinking:1024':{'modelId':'claude-opus-4-1-thinking:1024','rates':{'input':14.994,'output':75.004},'pricingProviderIds':[_0x16b4a2(-0x23c,-0x10c,0x2b,0x358)],'matchKind':_0x5a09f8(0x2f9,0x30a,0x89,0x49d)},'claude-opus-4-1-thinking:32000':{'modelId':'claude-opus-4-1-thinking:32000','rates':{'input':14.994,'output':75.004},'pricingProviderIds':[_0x5a09f8(-0x176,-0x34,0x243,0x158)],'matchKind':'model-unique'},'claude-opus-4-1-thinking:32768':{'modelId':_0x5a09f8(0x3fc,0x4dd,0x11b,0x62a),'rates':{'input':14.994,'output':75.004},'pricingProviderIds':[_0x16b4a2(-0x14,-0x1e3,0x2b,0x382)],'matchKind':'model-unique'},'claude-opus-4-1-thinking:8192':{'modelId':_0x5a09f8(-0x150,-0x119,-0x39e,0x1fa),'rates':{'input':14.994,'output':75.004},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(-0x29,0x30a,0x64a,0x2b7)},'claude-opus-4-1@20250805':{'modelId':_0x5a09f8(0x53a,0x592,0x72d,0x460),'rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75},'pricingProviderIds':[_0x5a09f8(0x17,0x2d7,0x450,0x325),'google-vertex-anthropic'],'matchKind':_0x5a09f8(0x37,0x102,0x2ee,0x388)},'claude-opus-4-5-20251101-thinking':{'modelId':_0x16b4a2(0x418,0x26f,0x223,-0x171),'rates':{'input':0x5,'output':0x19},'pricingProviderIds':[_0x5a09f8(0x4ac,0x344,0x10b,-0x72)],'matchKind':_0x5a09f8(0x397,0x30a,0x4b1,0x28b)},'claude-opus-4-5-20251101:thinking':{'modelId':_0x5a09f8(0x3f6,0x2a4,0x356,0x9c),'rates':{'input':4.998,'output':25.007},'pricingProviderIds':[_0x16b4a2(0x28c,-0x4f,0x2b,0x1d0)],'matchKind':_0x5a09f8(0x21c,0x30a,0xfe,0x5b1)},'claude-opus-4-5@20251101':{'modelId':_0x5a09f8(0x703,0x380,0x2b3,0x207),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':['google-vertex',_0x5a09f8(0x478,0x558,0x559,0x383)],'matchKind':_0x5a09f8(0x22b,0x102,0x1fe,0x328)},'claude-opus-4-6-think':{'modelId':_0x16b4a2(0x317,0x175,0x271,0x393),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':37.5,'cacheRead':0x1,'cacheWrite':12.5}],'pricingProviderIds':[_0x16b4a2(0x37c,0xf4,0x81,-0x2d3)],'matchKind':_0x16b4a2(0xc,0x531,0x369,0x3f9)},'claude-opus-4-6-thinking':{'modelId':_0x5a09f8(-0x62,0x95,0x19f,0x266),'rates':{'input':0x5,'output':0x19},'pricingProviderIds':[_0x16b4a2(0x145,0x37d,0x3a3,0xad)],'matchKind':_0x16b4a2(0x375,0x66a,0x369,0x654)},'claude-opus-4-6@default':{'modelId':_0x5a09f8(0x7fe,0x594,0x6da,0x28b),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':37.5,'cacheRead':0x1,'cacheWrite':12.5}],'pricingProviderIds':[_0x16b4a2(0x3b0,0x379,0x336,0x56),_0x16b4a2(0x6f2,0x758,0x5b7,0x493)],'matchKind':_0x16b4a2(0x235,0x276,0x161,-0x1e8)},'claude-opus-4-7-think':{'modelId':'claude-opus-4-7-think','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':37.5,'cacheRead':0x1,'cacheWrite':12.5}],'pricingProviderIds':['aihubmix'],'matchKind':_0x16b4a2(0x50b,0x587,0x369,0x338)},'claude-opus-4-7@default':{'modelId':_0x5a09f8(0x2c7,0x41d,0x295,0x327),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':37.5,'cacheRead':0x1,'cacheWrite':12.5}],'pricingProviderIds':['google-vertex',_0x16b4a2(0x23f,0x3a4,0x5b7,0x65b)],'matchKind':'model-identical'},'claude-opus-4-8-fast':{'modelId':'claude-opus-4-8-fast','rates':{'input':0xc,'output':0x3c,'cacheRead':1.2,'cacheWrite':0xf},'pricingProviderIds':[_0x5a09f8(0x293,0x543,0x44c,0x476)],'matchKind':'model-unique'},'claude-opus-4-8-think':{'modelId':_0x5a09f8(0x14e,0x422,0x29b,0x4ad),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x16b4a2(0x42,0x355,0x81,0x258)],'matchKind':_0x5a09f8(0xb9,0x30a,0x577,0x608)},'claude-opus-4-8@default':{'modelId':_0x5a09f8(0x171,0x3b5,0x2c4,0x54f),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':37.5,'cacheRead':0x1,'cacheWrite':12.5}],'pricingProviderIds':[_0x5a09f8(0x495,0x2d7,0x429,-0x65),'google-vertex-anthropic'],'matchKind':_0x16b4a2(0x3da,0x453,0x161,0x261)},'claude-opus-4-thinking':{'modelId':_0x16b4a2(0x564,0x7b1,0x4d7,0x138),'rates':{'input':14.994,'output':75.004},'pricingProviderIds':[_0x5a09f8(0x1d4,-0x34,-0x1f8,-0x2f3)],'matchKind':'model-unique'},'claude-opus-4-thinking:1024':{'modelId':_0x5a09f8(0x62a,0x2da,0xc1,0x2f1),'rates':{'input':14.994,'output':75.004},'pricingProviderIds':[_0x5a09f8(0xb4,-0x34,-0x35,-0x308)],'matchKind':_0x5a09f8(0xa8,0x30a,0x339,0x60)},'claude-opus-4-thinking:32000':{'modelId':_0x16b4a2(0x4a6,0x33c,0x1ae,0x4ad),'rates':{'input':14.994,'output':75.004},'pricingProviderIds':[_0x16b4a2(-0x154,-0x289,0x2b,0xbf)],'matchKind':_0x5a09f8(0x438,0x30a,0x361,0x17b)},'claude-opus-4-thinking:32768':{'modelId':_0x16b4a2(0x509,0x3ec,0x435,0x206),'rates':{'input':14.994,'output':75.004},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x349,0x24c,0x369,0x41c)},'claude-opus-4-thinking:8192':{'modelId':'claude-opus-4-thinking:8192','rates':{'input':14.994,'output':75.004},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x15,0x30a,0x21d,-0xa6)},'claude-opus-4.5':{'modelId':'claude-opus-4.5','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x5a09f8(0x8f,0x5d,-0xa3,-0x22e)],'matchKind':_0x5a09f8(0x479,0x30a,0x2af,0x3ca)},'claude-opus-4.6':{'modelId':'claude-opus-4.6','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x16b4a2(0x1f8,-0x8c,0xbc,-0x2fc)],'matchKind':_0x5a09f8(0x246,0x30a,-0x9b,-0xa3)},'claude-opus-4.7':{'modelId':'claude-opus-4.7','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x16b4a2(-0x136,0x233,0xbc,-0xd3)],'matchKind':_0x16b4a2(0x3f9,0x681,0x369,0x22b)},'claude-opus-4.8':{'modelId':_0x16b4a2(0x2fd,0x26b,0x537,0x884),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':['github-copilot'],'matchKind':_0x5a09f8(0x545,0x30a,-0x5,0x101)},'claude-opus-4@20250514':{'modelId':'claude-opus-4@20250514','rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75},'pricingProviderIds':[_0x5a09f8(-0xad,0x2d7,0xc8,0xf8),'google-vertex-anthropic'],'matchKind':_0x16b4a2(0x5d,0x5f,0x161,0x3a3)},'claude-opus-5-fast':{'modelId':'claude-opus-5-fast','rates':{'input':0xc,'output':0x3c,'cacheRead':1.2,'cacheWrite':0xf},'pricingProviderIds':[_0x16b4a2(0x698,0x8a5,0x5a2,0x3fc)],'matchKind':_0x16b4a2(0x2e6,0x507,0x369,0xa4)},'claude-opus-5@default':{'modelId':_0x16b4a2(0x3eb,0x265,0x261,-0x7b),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':['google-vertex',_0x5a09f8(0x879,0x558,0x365,0x5cf)],'matchKind':'model-identical'},'claude-opus4-5':{'modelId':_0x16b4a2(0x596,0x44f,0x227,0x44c),'rates':{'input':5.98,'output':29.89},'pricingProviderIds':[_0x16b4a2(-0x45,0x91,0x229,0x2b7)],'matchKind':_0x5a09f8(0x164,0x30a,0x3f1,0x1c8)},'claude-opus4-6':{'modelId':_0x16b4a2(-0x254,0x26c,-0xdb,-0x243),'rates':{'input':5.98,'output':29.89},'pricingProviderIds':[_0x5a09f8(0x572,0x1ca,0x3e1,0x175)],'matchKind':_0x16b4a2(0x2b6,0x4ef,0x369,0x1b3)},'claude-opus4-7':{'modelId':_0x5a09f8(0x61,0x2e0,0x14,0x2cc),'rates':{'input':5.6,'output':27.99,'cacheRead':0.56,'cacheWrite':6.99},'pricingProviderIds':[_0x5a09f8(0x501,0x1ca,0x52d,0x4b3)],'matchKind':_0x16b4a2(-0x36,0x60c,0x369,0x15e)},'claude-opus4-8':{'modelId':_0x5a09f8(0x1ad,-0x76,-0x1d1,-0x206),'rates':{'input':5.64,'output':28.198,'cacheRead':0.563,'cacheWrite':7.049},'pricingProviderIds':[_0x5a09f8(-0x1b4,0x1ca,0x2b,0x1f8)],'matchKind':_0x5a09f8(0x17f,0x30a,0x45a,0x1f5)},'claude-sonnet-4-5@20250929':{'modelId':_0x5a09f8(0x1c2,0x1b0,-0x19c,-0xa1),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x5a09f8(0x191,0x2d7,0x176,0x525),'google-vertex-anthropic'],'matchKind':_0x16b4a2(-0x1f3,0x28e,0x161,0x1ff)},'claude-sonnet-4-6-think':{'modelId':_0x5a09f8(0x59e,0x4a6,0x420,0x799),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x6,'output':22.5,'cacheRead':0.6,'cacheWrite':7.5}],'pricingProviderIds':[_0x16b4a2(0x346,0x144,0x81,0x16f)],'matchKind':'model-unique'},'claude-sonnet-4-6-thinking':{'modelId':'claude-sonnet-4-6-thinking','rates':{'input':0x3,'output':0xf},'pricingProviderIds':[_0x5a09f8(0x10a,0x344,0x26e,0xd2)],'matchKind':_0x16b4a2(0x59b,0x28a,0x369,0x3d)},'claude-sonnet-4-6@default':{'modelId':_0x5a09f8(0x1da,0x2a8,0x4a9,-0x49),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x6,'output':22.5,'cacheRead':0.6,'cacheWrite':7.5}],'pricingProviderIds':['google-vertex',_0x5a09f8(0x5de,0x558,0x76e,0x542)],'matchKind':_0x16b4a2(0x3c1,-0xc0,0x161,-0x1a8)},'claude-sonnet-4-thinking':{'modelId':_0x16b4a2(-0x106,-0x15f,0x1bc,-0x6e),'rates':{'input':2.992,'output':14.994},'pricingProviderIds':[_0x16b4a2(0x3e2,-0xa3,0x2b,-0x144)],'matchKind':_0x16b4a2(0x203,0x32b,0x369,0x562)},'claude-sonnet-4-thinking:1024':{'modelId':'claude-sonnet-4-thinking:1024','rates':{'input':2.992,'output':14.994},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x6e6,0x674,0x369,0xd5)},'claude-sonnet-4-thinking:32768':{'modelId':'claude-sonnet-4-thinking:32768','rates':{'input':2.992,'output':14.994},'pricingProviderIds':[_0x16b4a2(0x31f,-0x102,0x2b,-0x28f)],'matchKind':_0x16b4a2(0x66d,0x3f1,0x369,0x1e8)},'claude-sonnet-4-thinking:64000':{'modelId':'claude-sonnet-4-thinking:64000','rates':{'input':2.992,'output':14.994},'pricingProviderIds':[_0x5a09f8(0x42,-0x34,-0x21,0x181)],'matchKind':_0x5a09f8(0x22b,0x30a,0x17f,0x55e)},'claude-sonnet-4-thinking:8192':{'modelId':'claude-sonnet-4-thinking:8192','rates':{'input':2.992,'output':14.994},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x4af,0x3fd,0x369,0x5b2)},'claude-sonnet-4.5':{'modelId':_0x16b4a2(0x76e,0x1f9,0x51a,0x7a3),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x5a09f8(-0xcc,0x5d,-0x68,0xe)],'matchKind':'model-unique'},'claude-sonnet-4.6':{'modelId':_0x5a09f8(-0x2ca,0x19,-0x2ae,-0x166),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x5a09f8(0x409,0x5d,0xfe,0x2c0)],'matchKind':_0x16b4a2(0x468,0x30b,0x369,0x6b9)},'claude-sonnet-4@20250514':{'modelId':_0x5a09f8(0x4c,0x376,0xd7,0x438),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':['google-vertex','google-vertex-anthropic'],'matchKind':'model-identical'},'claude-sonnet-5@default':{'modelId':_0x16b4a2(0x867,0x57b,0x558,0x6d3),'rates':{'input':0x2,'output':0xa,'cacheRead':0.2,'cacheWrite':2.5},'pricingProviderIds':[_0x5a09f8(0x331,0x2d7,0x4b3,-0x62),_0x5a09f8(0x319,0x558,0x611,0x6fe)],'matchKind':'model-identical'},'claudinio':{'modelId':'claudinio','rates':{'input':0.5,'output':0x2,'cacheRead':0.15},'pricingProviderIds':[_0x5a09f8(0x162,0x229,0x1f6,0x238)],'matchKind':_0x16b4a2(0x717,0x121,0x369,0x2a6)},'claudius':{'modelId':'claudius','rates':{'input':0x3,'output':0x8,'cacheRead':0.9},'pricingProviderIds':[_0x16b4a2(-0x131,0x2bc,0x288,0x59e)],'matchKind':_0x16b4a2(0x4fc,0x32a,0x369,0x138)},'claw-high':{'modelId':'claw-high','rates':{'input':4.998,'output':25.007},'pricingProviderIds':[_0x16b4a2(-0x31d,0x64,0x2b,0x37a)],'matchKind':_0x5a09f8(-0x38,0x30a,0x1b6,-0x9a)},'claw-low':{'modelId':_0x5a09f8(0x3a4,0x120,0x4e0,-0x2a1),'rates':{'input':0.25,'output':1.5,'cacheRead':0.025},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'claw-medium':{'modelId':_0x16b4a2(0x599,0x7c1,0x449,0x5da),'rates':{'input':0.3,'output':1.2},'pricingProviderIds':[_0x5a09f8(0x2c2,-0x34,0x2,0x228)],'matchKind':_0x5a09f8(0x5c3,0x30a,0x30e,0x61a)},'cline-pass/deepseek-v4-flash':{'modelId':_0x5a09f8(0xe0,0x1b,0x14b,-0x136),'rates':{'input':0.14,'output':0.28,'cacheRead':0.0028},'pricingProviderIds':[_0x5a09f8(0x3cf,0x3f4,0x6da,0x4d2)],'matchKind':_0x16b4a2(0x53b,0x60f,0x369,0x4e5)},'cline-pass/deepseek-v4-pro':{'modelId':_0x16b4a2(0x22a,-0x8b,0x214,0x6c),'rates':{'input':1.74,'output':3.48,'cacheRead':0.0145},'pricingProviderIds':[_0x16b4a2(0x5cb,0x706,0x453,0x4b1)],'matchKind':_0x16b4a2(0x468,0x273,0x369,0x21a)},'cline-pass/glm-5.2':{'modelId':'cline-pass/glm-5.2','rates':{'input':1.4,'output':4.4,'cacheRead':0.26},'pricingProviderIds':[_0x16b4a2(0x6ca,0x50c,0x453,0x338)],'matchKind':_0x16b4a2(0x276,0x1bc,0x369,0x72d)},'cline-pass/kimi-k2.6':{'modelId':_0x16b4a2(0x4e2,0x70d,0x429,0x170),'rates':{'input':0.95,'output':0x4,'cacheRead':0.16},'pricingProviderIds':[_0x5a09f8(0x16d,0x3f4,0x701,0x5c)],'matchKind':_0x5a09f8(0x11f,0x30a,0x2f7,-0x1c)},'cline-pass/kimi-k2.7-code':{'modelId':'cline-pass/kimi-k2.7-code','rates':{'input':0.95,'output':0x4,'cacheRead':0.19},'pricingProviderIds':[_0x5a09f8(0x799,0x3f4,0x2e5,0x630)],'matchKind':_0x16b4a2(0x317,0x5e8,0x369,0x66f)},'cline-pass/kimi-k3':{'modelId':_0x16b4a2(-0xe7,0x274,-0x12e,-0x20e),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3},'pricingProviderIds':[_0x5a09f8(0x676,0x3f4,0x25f,0x348)],'matchKind':_0x16b4a2(0xb2,0x102,0x369,0x334)},'cline-pass/mimo-v2.5':{'modelId':_0x5a09f8(0x2b7,0x4e6,0x1a9,0x4f2),'rates':{'input':0.14,'output':0.28,'cacheRead':0.0028},'pricingProviderIds':[_0x16b4a2(0x3cd,0x5dd,0x453,0xd4)],'matchKind':'model-unique'},'cline-pass/mimo-v2.5-pro':{'modelId':_0x16b4a2(0x484,0x198,0x129,0x466),'rates':{'input':1.74,'output':3.48,'cacheRead':0.0145},'pricingProviderIds':['cline-pass'],'matchKind':_0x16b4a2(0x34e,0x1d1,0x369,0x449)},'cline-pass/minimax-m3':{'modelId':'cline-pass/minimax-m3','rates':{'input':0.3,'output':1.2,'cacheRead':0.06},'pricingProviderIds':[_0x5a09f8(0x1e9,0x3f4,0x146,0x532)],'matchKind':_0x16b4a2(0x476,-0x1c,0x369,0x728)},'cline-pass/qwen3.7-max':{'modelId':'cline-pass/qwen3.7-max','rates':{'input':2.5,'output':7.5,'cacheRead':0.5,'cacheWrite':3.125},'pricingProviderIds':[_0x16b4a2(0x204,0x49b,0x453,0x327)],'matchKind':_0x16b4a2(0x3ec,0x38f,0x369,0xb3)},'cline-pass/qwen3.7-plus':{'modelId':_0x16b4a2(0x113,0x814,0x472,0x599),'rates':{'input':0.4,'output':1.6,'cacheRead':0.04,'cacheWrite':0.5},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':1.2,'output':4.8,'cacheRead':0.12,'cacheWrite':1.5}],'pricingProviderIds':[_0x5a09f8(0x3cd,0x3f4,0x64e,0x4ed)],'matchKind':_0x5a09f8(0x180,0x30a,0x54f,0x48f)},'codestral-2501':{'modelId':_0x16b4a2(-0x60,0x2b7,0x9,0x204),'rates':{'input':0.3,'output':0.9},'pricingProviderIds':[_0x5a09f8(0x1f2,-0x10e,-0x2f4,-0xb1),_0x16b4a2(0x44,0x281,-0x88,-0x3a9)],'matchKind':'model-identical'},'codestral-latest':{'modelId':_0x5a09f8(0x642,0x511,0x4d7,0x83d),'rates':{'input':0.3,'output':0.9},'pricingProviderIds':[_0x16b4a2(0x4e1,0x508,0x204,-0x108)],'matchKind':'model-unique'},'codex-mini':{'modelId':'codex-mini','rates':{'input':1.5,'output':0x6,'cacheRead':0.375},'pricingProviderIds':[_0x16b4a2(0x6c,0x1f2,-0xaf,0x2fb),'azure-cognitive-services'],'matchKind':_0x16b4a2(0x15b,-0x5a,0x161,0x4a6)},'coding-glm-5.1':{'modelId':_0x5a09f8(-0x17f,0xe2,0xcb,0x473),'rates':{'input':0.06,'output':0.22,'cacheRead':0.013},'pricingProviderIds':[_0x16b4a2(0x5d,0x16,0x81,0x84)],'matchKind':_0x16b4a2(0x616,0x58a,0x369,0x676)},'coding-glm-5.1-free':{'modelId':_0x16b4a2(0x16b,0x18f,0x2f5,0x5c1),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['aihubmix'],'matchKind':'model-unique'},'coding-minimax-m2.7':{'modelId':_0x16b4a2(0x4b0,0xc1,0xf0,0x7c),'rates':{'input':0.2,'output':0.2},'pricingProviderIds':[_0x5a09f8(-0x36,0x22,-0x258,-0x342)],'matchKind':'model-unique'},'coding-minimax-m2.7-free':{'modelId':'coding-minimax-m2.7-free','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0x28,-0x4a,0x81,-0x106)],'matchKind':'model-unique'},'coding-minimax-m2.7-highspeed':{'modelId':_0x16b4a2(0x3e3,-0x244,0xf5,-0x1c5),'rates':{'input':0.2,'output':0.2},'pricingProviderIds':[_0x16b4a2(0xb5,0x37e,0x81,-0x276)],'matchKind':_0x5a09f8(0x693,0x30a,0x30b,0x323)},'coding-xiaomi-mimo-v2.5':{'modelId':'coding-xiaomi-mimo-v2.5','rates':{'input':0.08,'output':0.4,'cacheRead':0.016},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0.16,'output':0.8,'cacheRead':0.032}],'pricingProviderIds':[_0x5a09f8(-0xd,0x22,-0x303,-0x310)],'matchKind':'model-unique'},'coding-xiaomi-mimo-v2.5-pro':{'modelId':_0x16b4a2(0x51d,0x362,0x421,0x202),'rates':{'input':0.2,'output':0.6,'cacheRead':0.04},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0.4,'output':1.2,'cacheRead':0.08}],'pricingProviderIds':[_0x5a09f8(0x35,0x22,-0x30,-0x11d)],'matchKind':_0x16b4a2(0x19b,0x648,0x369,0x24b)},'cognitivecomputations/dolphin-2.9.2-qwen2-72b':{'modelId':_0x5a09f8(-0x1af,-0x74,0x306,-0xc0),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x5a09f8(0x13a,-0x34,-0x7a,0x2c0)],'matchKind':_0x16b4a2(0x693,0x31,0x369,0x6ec)},'cognitivecomputations/dolphin-mistral-24b-venice-edition':{'modelId':_0x5a09f8(-0x332,-0x1ad,-0x221,-0x15),'rates':{'input':0.2,'output':0.9},'pricingProviderIds':[_0x16b4a2(0xf8,0x214,0xcc,-0x94)],'matchKind':'model-unique'},'cohere--command-a-reasoning':{'modelId':'cohere--command-a-reasoning','rates':{'input':0.63,'output':5.05},'pricingProviderIds':[_0x5a09f8(0x21,0x6,-0x2dd,0x1ef)],'matchKind':_0x16b4a2(0x668,0x20b,0x369,0x1a)},'cohere-command-a':{'modelId':_0x16b4a2(0x6f1,0x755,0x4f7,0x598),'rates':{'input':2.5,'output':0xa},'pricingProviderIds':[_0x16b4a2(-0x235,-0x21c,-0xaf,-0x77),_0x16b4a2(0x6,0x2cc,-0x88,-0xfe)],'matchKind':_0x5a09f8(-0x1fc,0x102,0x363,0x149)},'cohere-command-r-08-2024':{'modelId':'cohere-command-r-08-2024','rates':{'input':0.15,'output':0.6},'pricingProviderIds':[_0x16b4a2(0x12c,-0x3ac,-0xaf,0x282),'azure-cognitive-services'],'matchKind':_0x5a09f8(0x486,0x102,-0x1a8,0x3a4)},'cohere-command-r-plus-08-2024':{'modelId':_0x5a09f8(-0x148,0x20a,0x1c2,0x4e1),'rates':{'input':2.5,'output':0xa},'pricingProviderIds':[_0x5a09f8(-0x434,-0x10e,-0x4c7,-0x1a6),_0x5a09f8(0x147,-0xe7,0x196,-0x12b)],'matchKind':_0x5a09f8(-0x187,0x102,0x286,-0x260)},'cohere-embed-v-4-0':{'modelId':_0x16b4a2(0x6cf,0x48a,0x4d5,0x1f8),'rates':{'input':0.12,'output':0x0},'pricingProviderIds':['azure',_0x5a09f8(-0xef,-0xe7,-0x378,-0x165)],'matchKind':_0x5a09f8(0x154,0x102,0x387,0x20c)},'cohere-embed-v3-english':{'modelId':_0x16b4a2(0xe1,-0xba,0x25c,0x43e),'rates':{'input':0.1,'output':0x0},'pricingProviderIds':['azure',_0x16b4a2(0x1d3,-0x203,-0x88,0x1fa)],'matchKind':_0x5a09f8(0x11e,0x102,0x56,0x1ec)},'cohere-embed-v3-multilingual':{'modelId':'cohere-embed-v3-multilingual','rates':{'input':0.1,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x10e,0x101,-0xaf,-0x324),_0x16b4a2(0x1f8,0x32c,-0x88,-0x165)],'matchKind':_0x16b4a2(0x21,0x3fe,0x161,-0x42)},'cohere/cohere-command-a':{'modelId':_0x5a09f8(0x1ea,0x145,0xe4,0x10b),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['github-models'],'matchKind':'model-unique'},'cohere/cohere-command-r':{'modelId':_0x16b4a2(0x661,0x7a2,0x418,0x5fa),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x827,0x770,0x5ef,0x5c8)],'matchKind':'model-unique'},'cohere/cohere-command-r-08-2024':{'modelId':'cohere/cohere-command-r-08-2024','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x315,0x5ca,0x5ef,0x2f0)],'matchKind':_0x16b4a2(0x26e,0x353,0x369,0x5e0)},'cohere/cohere-command-r-plus':{'modelId':_0x16b4a2(0x622,0xce,0x464,0xec),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x791,0x44e,0x5ef,0x599)],'matchKind':_0x5a09f8(0x39b,0x30a,0x28d,0x365)},'cohere/cohere-command-r-plus-08-2024':{'modelId':_0x16b4a2(0x7b2,0x4cf,0x413,0x795),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x7df,0x3bb,0x5ef,0x45a)],'matchKind':_0x16b4a2(0x44a,0x627,0x369,0x477)},'cohere/command-a':{'modelId':_0x16b4a2(-0x12c,0x318,0x1ee,-0xcc),'rates':{'input':2.5,'output':0xa},'pricingProviderIds':['kilo',_0x16b4a2(0x2c2,0x15f,0xcc,0x2ef),_0x5a09f8(0x56b,0x387,0x318,0x2c2)],'matchKind':_0x16b4a2(-0x145,0x38b,0x161,0x22c)},'cohere/command-a-03-2025':{'modelId':_0x16b4a2(0x7c3,0x435,0x556,0x1cf),'rates':{'input':2.5,'output':0xa},'pricingProviderIds':[_0x5a09f8(0x2d7,0x454,0x76c,0x30f)],'matchKind':'model-unique'},'cohere/command-r':{'modelId':_0x5a09f8(-0x301,-0xee,-0x73,-0x3a2),'rates':{'input':0.476,'output':1.428},'pricingProviderIds':[_0x16b4a2(-0x2b0,0x3bf,0x2b,-0x192)],'matchKind':'model-unique'},'cohere/command-r-08-2024':{'modelId':_0x5a09f8(-0x2f8,0x1d,-0x1ee,-0x190),'rates':{'input':0.15,'output':0.6},'pricingProviderIds':['kilo',_0x5a09f8(0x364,0x454,0x47c,0x4d6),_0x5a09f8(-0x204,0x6d,0x2a3,-0x232)],'matchKind':_0x5a09f8(0x130,0x102,0x3a2,0x1dd)},'cohere/command-r7b-12-2024':{'modelId':'cohere/command-r7b-12-2024','rates':{'input':0.0375,'output':0.15},'pricingProviderIds':[_0x5a09f8(0x2cf,0x533,0x575,0x214),_0x16b4a2(0x5fc,0x4ac,0x4b3,0x584),'openrouter'],'matchKind':_0x16b4a2(-0xe7,-0xf8,0x161,-0x56)},'cohere/north-mini-code:free':{'modelId':_0x5a09f8(-0xc5,0x191,0x4bf,0x412),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x320,-0x123,0xcc,0x29d)],'matchKind':_0x16b4a2(0x57d,0x63e,0x369,0x4c1)},'command-a-03-2025':{'modelId':'command-a-03-2025','rates':{'input':2.5,'output':0xa},'pricingProviderIds':[_0x16b4a2(0x7aa,0x135,0x496,0x1ec)],'matchKind':_0x16b4a2(0xd9,0x215,0x369,0x18e)},'command-a-plus-05-2026':{'modelId':_0x16b4a2(0x114,0x65f,0x3a6,0x4b7),'rates':{'input':2.5,'output':0xa},'pricingProviderIds':[_0x16b4a2(0x4ee,0x266,0x496,0x194),_0x5a09f8(-0x27c,-0x34,0x2f3,-0x381)],'matchKind':_0x5a09f8(-0xc3,0x102,-0x9f,0x117)},'command-a-reasoning-08-2025':{'modelId':_0x16b4a2(0x74d,0x1ae,0x48d,0x287),'rates':{'input':2.5,'output':0xa},'pricingProviderIds':[_0x5a09f8(0x3fb,0x437,0x5dc,0x4ba),_0x5a09f8(-0x212,-0x34,-0x178,-0x6f)],'matchKind':_0x5a09f8(-0x1a4,0x102,-0x282,0xd4)},'command-a-translate-08-2025':{'modelId':_0x16b4a2(-0xa0,-0x77,0x27b,0x2aa),'rates':{'input':2.5,'output':0xa},'pricingProviderIds':[_0x16b4a2(0x57e,0x4fe,0x496,0x351)],'matchKind':'model-unique'},'command-a-vision-07-2025':{'modelId':_0x16b4a2(0x137,0x7f,-0x95,-0xfc),'rates':{'input':2.5,'output':0xa},'pricingProviderIds':[_0x16b4a2(0x527,0x81f,0x496,0x32e)],'matchKind':'model-unique'},'command-r-08-2024':{'modelId':_0x16b4a2(0x484,0x18a,0x4bc,0x45b),'rates':{'input':0.15,'output':0.6},'pricingProviderIds':[_0x5a09f8(0x727,0x437,0x7a8,0x3c4)],'matchKind':_0x16b4a2(0x120,0x542,0x369,0x568)},'command-r-plus-08-2024':{'modelId':_0x5a09f8(0xdd,0x3c8,0x1c2,0x108),'rates':{'input':2.5,'output':0xa},'pricingProviderIds':[_0x16b4a2(0x845,0x4d2,0x496,0x672)],'matchKind':_0x16b4a2(0x1f,0x37b,0x369,0x38a)},'command-r7b-12-2024':{'modelId':_0x5a09f8(0x376,0x3a4,0x705,0x6),'rates':{'input':0.0375,'output':0.15},'pricingProviderIds':[_0x5a09f8(0x7f7,0x437,0x1e7,0x763)],'matchKind':_0x5a09f8(0x167,0x30a,0x586,0x52a)},'command-r7b-arabic-02-2025':{'modelId':_0x5a09f8(0x637,0x381,0x368,0x396),'rates':{'input':0.0375,'output':0.15},'pricingProviderIds':[_0x5a09f8(0x4ac,0x437,0x318,0x1bd)],'matchKind':_0x16b4a2(0x38b,0x5b6,0x369,0x36)},'core42/jais-30b-chat':{'modelId':_0x5a09f8(0x779,0x41f,0x67d,0x24f),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x6cc,0x83c,0x5ef,0x7b1)],'matchKind':_0x16b4a2(0x19f,0x35f,0x369,0x3f5)},'cortecs/Llama-3.3-70B-Instruct-FP8-Dynamic':{'modelId':_0x5a09f8(0x173,0x12c,-0x226,0x83),'rates':{'input':0.53,'output':0.76},'pricingProviderIds':['stackit'],'matchKind':_0x16b4a2(0x1c1,0x2f5,0x369,0x52d)},'cosmos3-super-reasoner':{'modelId':_0x5a09f8(0x610,0x262,-0xb8,0x21f),'rates':{'input':0.1,'output':0.3},'pricingProviderIds':['llmgateway'],'matchKind':_0x16b4a2(0x1f3,0x465,0x369,0x603)},'custom':{'modelId':_0x16b4a2(0x461,0x21d,0x454,0x6c2),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x356,0x2b0,0x5e,-0x139)],'matchKind':_0x16b4a2(0x1cc,0x38e,0x369,0x6db)},'databricks-claude-haiku-4-5':{'modelId':_0x16b4a2(0x425,0x1c6,0x24e,-0x175),'rates':{'input':0x1,'output':0x5,'cacheRead':0.1,'cacheWrite':1.25},'pricingProviderIds':['databricks'],'matchKind':_0x5a09f8(0x341,0x30a,0x4dc,0x450)},'databricks-claude-opus-4-1':{'modelId':'databricks-claude-opus-4-1','rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75},'pricingProviderIds':['databricks'],'matchKind':_0x5a09f8(0x7,0x30a,0x29b,0x48f)},'databricks-claude-opus-4-5':{'modelId':_0x5a09f8(0x43,0x325,0xe5,0x540),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':['databricks'],'matchKind':_0x16b4a2(0x540,0x64,0x369,0x462)},'databricks-claude-opus-4-6':{'modelId':_0x16b4a2(0x3,-0xe3,-0x34,-0x214),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x5a09f8(0x31,0x329,0x417,0x699)],'matchKind':_0x5a09f8(0x113,0x30a,0x283,0x41f)},'databricks-claude-opus-4-7':{'modelId':_0x5a09f8(-0x142,0x9b,-0x207,-0x240),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':['databricks'],'matchKind':_0x5a09f8(0x20,0x30a,0xb8,0x4d1)},'databricks-claude-sonnet-4':{'modelId':'databricks-claude-sonnet-4','rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':['databricks'],'matchKind':_0x16b4a2(0x18c,0x178,0x369,0x2d7)},'databricks-claude-sonnet-4-5':{'modelId':'databricks-claude-sonnet-4-5','rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x5a09f8(0x675,0x329,0x2d8,0x5b3)],'matchKind':_0x5a09f8(0x634,0x30a,0x5f2,0x659)},'databricks-claude-sonnet-4-6':{'modelId':_0x5a09f8(0x4cb,0x3a6,0x169,0x213),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x5a09f8(0x20b,0x329,0x498,0xe8)],'matchKind':_0x16b4a2(0x3cc,0x70e,0x369,0x506)},'databricks-gemini-2-5-flash':{'modelId':_0x16b4a2(-0x244,0x1a2,-0xb4,-0x3e2),'rates':{'input':0.3,'output':2.5,'cacheRead':0.03,'inputAudio':0x1},'pricingProviderIds':[_0x5a09f8(0x650,0x329,0x4e1,0x1e4)],'matchKind':_0x5a09f8(0x17f,0x30a,0x185,0x635)},'databricks-gemini-2-5-pro':{'modelId':_0x16b4a2(0x1c4,0xdb,0x345,0x578),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.5,'output':0xf,'cacheRead':0.25}],'pricingProviderIds':[_0x5a09f8(0x70,0x329,0x4d1,0x4a3)],'matchKind':_0x16b4a2(0x528,0x5bc,0x369,0x188)},'databricks-gemini-3-1-flash-lite':{'modelId':_0x5a09f8(0x32b,0x40c,0x6a3,0x417),'rates':{'input':0.25,'output':1.5,'cacheRead':0.025,'inputAudio':0.5},'pricingProviderIds':['databricks'],'matchKind':_0x16b4a2(0x49f,0x50d,0x369,0x55a)},'databricks-gemini-3-1-pro':{'modelId':_0x16b4a2(-0x1de,0xee,-0x119,0x7c),'rates':{'input':0x2,'output':0xc,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x4,'output':0x12,'cacheRead':0.4}],'pricingProviderIds':[_0x16b4a2(0x5db,0x4a9,0x388,0x57b)],'matchKind':_0x16b4a2(0x492,0x6,0x369,0x536)},'databricks-gemini-3-flash':{'modelId':_0x5a09f8(0x367,0x2e8,0x4e7,0x545),'rates':{'input':0.5,'output':0x3,'cacheRead':0.05,'inputAudio':0x1},'pricingProviderIds':[_0x5a09f8(0x4db,0x329,0x65f,0x6d9)],'matchKind':'model-unique'},'databricks-gemini-3-pro':{'modelId':_0x5a09f8(0xb3,0x234,0x121,0x17a),'rates':{'input':0x2,'output':0xc,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x4,'output':0x12,'cacheRead':0.4}],'pricingProviderIds':[_0x16b4a2(0x156,0x162,0x388,0x351)],'matchKind':_0x5a09f8(0x392,0x30a,0x6c2,0x24e)},'databricks-glm-5-2':{'modelId':_0x16b4a2(0x3e5,0x302,0x3e8,0x282),'rates':{'input':1.4,'output':4.4,'cacheRead':0.26},'pricingProviderIds':[_0x5a09f8(0x5ac,0x329,0x5ff,0x284)],'matchKind':'model-unique'},'databricks-gpt-5':{'modelId':'databricks-gpt-5','rates':{'input':1.25,'output':0xa,'cacheRead':0.125},'pricingProviderIds':[_0x16b4a2(0x315,0x468,0x388,0x34a)],'matchKind':_0x5a09f8(0x31a,0x30a,0x3f,0x363)},'databricks-gpt-5-1':{'modelId':_0x16b4a2(0x46b,0x22d,0x381,0x12d),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125},'pricingProviderIds':[_0x5a09f8(0x68e,0x329,0x52d,0x1d)],'matchKind':'model-unique'},'databricks-gpt-5-2':{'modelId':'databricks-gpt-5-2','rates':{'input':1.75,'output':0xe,'cacheRead':0.175},'pricingProviderIds':[_0x16b4a2(0x1c2,0x3a,0x388,0x157)],'matchKind':'model-unique'},'databricks-gpt-5-4':{'modelId':_0x5a09f8(0x475,0x283,0xc4,0x1eb),'rates':{'input':2.5,'output':0xf,'cacheRead':0.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x5,'output':22.5,'cacheRead':0.5}],'pricingProviderIds':[_0x16b4a2(0x678,0x645,0x388,0x3e)],'matchKind':_0x16b4a2(0x65,0xb5,0x369,0x194)},'databricks-gpt-5-4-mini':{'modelId':_0x16b4a2(-0x69,0x281,0x95,0x3f7),'rates':{'input':0.75,'output':4.5,'cacheRead':0.075},'pricingProviderIds':[_0x5a09f8(0x66c,0x329,0x112,0x4d5)],'matchKind':'model-unique'},'databricks-gpt-5-4-nano':{'modelId':_0x5a09f8(0x4b2,0x1c1,-0x1aa,0x557),'rates':{'input':0.2,'output':1.25,'cacheRead':0.02},'pricingProviderIds':[_0x16b4a2(0x57d,0x595,0x388,0x42d)],'matchKind':_0x16b4a2(0x11a,0xbc,0x369,0x5a)},'databricks-gpt-5-5':{'modelId':_0x16b4a2(-0x2fc,0x2,0xaa,-0x2fb),'rates':{'input':0x5,'output':0x1e,'cacheRead':0.5},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':0x2d,'cacheRead':0x1}],'pricingProviderIds':[_0x16b4a2(0x21e,0x6ee,0x388,0x1d7)],'matchKind':_0x16b4a2(0x65c,0x1c8,0x369,0x3f7)},'databricks-gpt-5-6-luna':{'modelId':_0x5a09f8(0x60,-0x188,-0x2e6,-0x1d9),'rates':{'input':0x1,'output':0x6,'cacheRead':0.1},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x2,'output':0x9,'cacheRead':0.2}],'pricingProviderIds':['databricks'],'matchKind':_0x16b4a2(0x15f,0x1b1,0x369,0x9f)},'databricks-gpt-5-6-sol':{'modelId':_0x5a09f8(0x4bf,0x59c,0x66e,0x75f),'rates':{'input':0x5,'output':0x1e,'cacheRead':0.5},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':0x2d,'cacheRead':0x1}],'pricingProviderIds':['databricks'],'matchKind':_0x5a09f8(0x201,0x30a,0x6a4,0x2c2)},'databricks-gpt-5-6-terra':{'modelId':_0x16b4a2(0xb3,0x61,0x1f8,0x1c3),'rates':{'input':2.5,'output':0xf,'cacheRead':0.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x5,'output':22.5,'cacheRead':0.5}],'pricingProviderIds':[_0x16b4a2(0x4ec,0x585,0x388,0x273)],'matchKind':'model-unique'},'databricks-gpt-5-mini':{'modelId':_0x5a09f8(-0x2df,0xa0,-0x122,0x2b9),'rates':{'input':0.25,'output':0x2,'cacheRead':0.025},'pricingProviderIds':['databricks'],'matchKind':'model-unique'},'databricks-gpt-5-nano':{'modelId':_0x16b4a2(0x15c,-0x115,0x29d,0x5dc),'rates':{'input':0.05,'output':0.4,'cacheRead':0.005},'pricingProviderIds':['databricks'],'matchKind':_0x5a09f8(0x67d,0x30a,0x3c9,0x12c)},'databricks-gpt-oss-120b':{'modelId':_0x16b4a2(0x89b,0x7da,0x55a,0x339),'rates':{'input':0.072,'output':0.28},'pricingProviderIds':['databricks'],'matchKind':_0x16b4a2(0x5f5,0x60a,0x369,-0x11)},'databricks-gpt-oss-20b':{'modelId':_0x16b4a2(-0x27d,-0x191,-0xdf,-0x3c3),'rates':{'input':0.05,'output':0.2},'pricingProviderIds':[_0x5a09f8(0x75,0x329,0x438,0x5bc)],'matchKind':_0x16b4a2(0x37c,0x163,0x369,0x42f)},'databricks-kimi-k2-7-code':{'modelId':_0x5a09f8(0x21d,-0x19e,-0x20e,0x139),'rates':{'input':0.95,'output':0x4,'cacheRead':0.19},'pricingProviderIds':[_0x5a09f8(0x8f,0x329,0x34d,0x615)],'matchKind':'model-unique'},'deep-deepseek-v4-flash':{'modelId':'deep-deepseek-v4-flash','rates':{'input':0.154,'output':0.308,'cacheRead':0.0308},'pricingProviderIds':['aihubmix'],'matchKind':'model-unique'},'deep-deepseek-v4-pro':{'modelId':'deep-deepseek-v4-pro','rates':{'input':0.478,'output':0.956,'cacheRead':0.004302},'pricingProviderIds':['aihubmix'],'matchKind':'model-unique'},'deep-research-max-preview-04-2026':{'modelId':'deep-research-max-preview-04-2026','rates':{'input':0x2,'output':0xc,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x4,'output':0x12,'cacheRead':0.4}],'pricingProviderIds':[_0x16b4a2(0x30f,0x13e,0x2d3,0x132)],'matchKind':_0x5a09f8(0xa9,0x30a,0x243,0x3a5)},'deep-research-preview-04-2026':{'modelId':'deep-research-preview-04-2026','rates':{'input':0x2,'output':0xc,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x4,'output':0x12,'cacheRead':0.4}],'pricingProviderIds':['google'],'matchKind':_0x16b4a2(0x6c9,0x2d0,0x369,0x2b5)},'deepclaude':{'modelId':_0x16b4a2(0x506,-0x164,0x143,0x209),'rates':{'input':0x3,'output':0xf},'pricingProviderIds':[_0x16b4a2(0xb,0x38b,0x2b,0x3ce)],'matchKind':_0x5a09f8(0x3f5,0x30a,0x3cf,0x5f)},'deepcogito/cogito-v1-preview-qwen-32B':{'modelId':_0x16b4a2(0x129,0x125,0x43e,0x5ef),'rates':{'input':1.7999999999999998,'output':1.7999999999999998},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x509,0x30a,0x35c,0x6c9)},'deepcogito/cogito-v2-1-671b':{'modelId':_0x5a09f8(0x2fa,0x280,0x339,0x393),'rates':{'input':1.25,'output':1.25},'pricingProviderIds':[_0x5a09f8(0x68c,0x2e1,0x20b,0x686)],'matchKind':_0x16b4a2(0x3a1,0x1cb,0x369,0xa0)},'deepcogito/cogito-v2.1-671b':{'modelId':_0x5a09f8(-0x7e,-0x183,-0x1b2,-0x478),'rates':{'input':1.25,'output':1.25},'pricingProviderIds':['kilo','openrouter'],'matchKind':_0x5a09f8(-0x10,0x102,0x421,-0xb)},'deepseek-3.2':{'modelId':_0x16b4a2(0x265,0x39d,0x396,0x46b),'rates':{'input':0.5,'output':1.6},'pricingProviderIds':[_0x5a09f8(-0xdb,-0x7c,-0x3b7,-0x168)],'matchKind':_0x5a09f8(0x3a,0x30a,0x309,-0x29)},'deepseek-ai/DeepSeek-OCR':{'modelId':'deepseek-ai/DeepSeek-OCR','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x1e8,0x45e,0x5c3,0x7e0)],'matchKind':'model-unique'},'deepseek-ai/DeepSeek-V3-1':{'modelId':_0x16b4a2(0x20e,0x89,0x178,0x77),'rates':{'input':0.6,'output':1.7},'pricingProviderIds':[_0x16b4a2(0x391,0x0,0x340,0x4c5)],'matchKind':'model-unique'},'deepseek-ai/DeepSeek-V3.1-Terminus:thinking':{'modelId':_0x16b4a2(-0x18b,-0x41c,-0x72,0xae),'rates':{'input':0.25,'output':0.7},'pricingProviderIds':[_0x16b4a2(0x3d0,0x3d3,0x2b,0x2f6)],'matchKind':'model-unique'},'deepseek-ai/DeepSeek-V3.1:thinking':{'modelId':_0x5a09f8(0x6a6,0x5ab,0x3cc,0x551),'rates':{'input':0.2,'output':0.7},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x171,-0x48,0x369,0x6d0)},'deepseek-ai/DeepSeek-V3.2-TEE':{'modelId':_0x5a09f8(0x413,0x359,0x281,0x6b4),'rates':{'input':0x1,'output':0x1,'cacheRead':0.5},'pricingProviderIds':[_0x5a09f8(0x629,0x354,0x407,0x4d0)],'matchKind':_0x5a09f8(0x9,0x30a,0x632,0x296)},'deepseek-ai/DeepSeek-V3.2-fast':{'modelId':_0x16b4a2(0x415,0x3f0,0x1fb,0x50b),'rates':{'input':0.4,'output':0x2,'cacheRead':0.04,'cacheWrite':0.5},'pricingProviderIds':[_0x16b4a2(0x359,0x656,0x311,0x514)],'matchKind':_0x16b4a2(0x209,0xff,0x369,0x517)},'deepseek-ai/deepseek-ocr/models/DeepSeek-OCR':{'modelId':_0x16b4a2(0x27b,0x21,0x205,0xf0),'rates':{'input':0.2,'output':0.7},'pricingProviderIds':[_0x16b4a2(0x5d4,0x508,0x23a,0x2b0)],'matchKind':_0x16b4a2(0x54e,0x62,0x369,0x27c)},'deepseek-ai/deepseek-r1-distill-llama-70b':{'modelId':_0x16b4a2(-0x8a,0x124,-0xc8,0x2fa),'rates':{'input':0.03,'output':0.14},'pricingProviderIds':[_0x16b4a2(-0x256,0x3e6,0x121,-0x71)],'matchKind':_0x5a09f8(0x5eb,0x30a,0x71,0x99)},'deepseek-ai/deepseek-v3.1-maas':{'modelId':_0x5a09f8(0x425,0x44f,0x61c,0x74a),'rates':{'input':0.6,'output':1.7},'pricingProviderIds':['google-vertex'],'matchKind':_0x16b4a2(0x56,0x36d,0x369,-0x21)},'deepseek-ai/deepseek-v3.2-exp':{'modelId':_0x16b4a2(0xc6,0x369,0x392,0x71),'rates':{'input':0.27999999999999997,'output':0.42000000000000004},'pricingProviderIds':[_0x16b4a2(-0x2b6,-0x203,0x2b,-0x359)],'matchKind':_0x16b4a2(0x534,0x3f3,0x369,0x310)},'deepseek-ai/deepseek-v3.2-exp-thinking':{'modelId':_0x5a09f8(0x65a,0x4b5,0x67c,0x2ac),'rates':{'input':0.27999999999999997,'output':0.42000000000000004},'pricingProviderIds':[_0x5a09f8(-0x228,-0x34,-0x356,0x7)],'matchKind':'model-unique'},'deepseek-ai/deepseek-v3.2-maas':{'modelId':_0x5a09f8(0x532,0x4b1,0x4f6,0x255),'rates':{'input':0.56,'output':1.68,'cacheRead':0.056},'pricingProviderIds':['google-vertex'],'matchKind':_0x5a09f8(0x5ec,0x30a,0x44,0xd4)},'deepseek-chat-cheaper':{'modelId':_0x16b4a2(-0x266,-0x1ae,0x12a,-0x155),'rates':{'input':0.25,'output':0.7},'pricingProviderIds':[_0x5a09f8(-0xdd,-0x34,0x29f,-0x26a)],'matchKind':_0x5a09f8(0x635,0x30a,0x579,0x4f)},'deepseek-math-v2':{'modelId':'deepseek-math-v2','rates':{'input':0.6,'output':2.2},'pricingProviderIds':[_0x16b4a2(0x23f,0xbd,0x2b,-0x397)],'matchKind':_0x5a09f8(0x279,0x30a,0x5d3,0x2b5)},'deepseek-r1-distill-llama-8b':{'modelId':_0x16b4a2(0x129,-0x15c,-0x118,0x18a),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['alibaba-cn'],'matchKind':'model-unique'},'deepseek-r1-distill-qwen-1-5b':{'modelId':_0x5a09f8(-0x126,0xac,0x78,-0xa7),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x164,0x164,0xf6,-0x279)],'matchKind':_0x5a09f8(0x24c,0x30a,0x25b,0x551)},'deepseek-r1-distill-qwen-14b':{'modelId':_0x16b4a2(0xf7,0x28b,0x1a3,-0x38),'rates':{'input':0.144,'output':0.431},'pricingProviderIds':[_0x5a09f8(-0x2df,0x97,0x392,0x361)],'matchKind':_0x5a09f8(0x597,0x30a,0x1ee,0x142)},'deepseek-r1-distill-qwen-32b':{'modelId':'deepseek-r1-distill-qwen-32b','rates':{'input':0.287,'output':0.861},'pricingProviderIds':[_0x5a09f8(-0x31b,0x97,-0x220,-0x24f)],'matchKind':'model-unique'},'deepseek-r1-distill-qwen-7b':{'modelId':_0x16b4a2(0x60,-0x29,0x5d,0x341),'rates':{'input':0.072,'output':0.144},'pricingProviderIds':[_0x5a09f8(0x2b7,0x97,-0x6e,0x280)],'matchKind':_0x5a09f8(0x1f2,0x30a,-0x4b,0x520)},'deepseek-r1-sambanova':{'modelId':_0x5a09f8(0x145,0x272,-0x146,0x11f),'rates':{'input':4.998,'output':6.987},'pricingProviderIds':[_0x5a09f8(-0x11f,-0x34,0x190,0x1c8)],'matchKind':'model-unique'},'deepseek-reasoner-cheaper':{'modelId':_0x16b4a2(-0x3bc,0xff,-0x85,0x16d),'rates':{'input':0.4,'output':1.7},'pricingProviderIds':[_0x16b4a2(0x28e,0x3c8,0x2b,0x3be)],'matchKind':_0x5a09f8(0xe6,0x30a,0x5ee,0x288)},'deepseek-tng-r1t2-chimera':{'modelId':_0x5a09f8(0x194,0x16,0x3d0,-0x174),'rates':{'input':0.3,'output':1.2},'pricingProviderIds':[_0x5a09f8(0x1f0,0x46c,0x32e,0x1a8)],'matchKind':'model-unique'},'deepseek-v3-1':{'modelId':_0x16b4a2(0x5b3,0x345,0x562,0x2a5),'rates':{'input':0.574,'output':1.721},'pricingProviderIds':[_0x5a09f8(-0x2a5,0x97,-0xd0,-0x255)],'matchKind':_0x5a09f8(-0x45,0x30a,0x57b,0x660)},'deepseek-v3-2-exp':{'modelId':'deepseek-v3-2-exp','rates':{'input':0.287,'output':0.431},'pricingProviderIds':['alibaba-cn'],'matchKind':_0x16b4a2(0x5f1,0x38f,0x369,0x300)},'deepseek-v3.1':{'modelId':_0x16b4a2(-0x9d,-0xe6,0x2ca,0x1),'rates':{'input':0.56,'output':1.68},'pricingProviderIds':['azure',_0x16b4a2(0x2f2,-0x2c0,-0x88,-0x3d)],'matchKind':_0x16b4a2(0x3ba,0xf9,0x161,-0x20d)},'deepseek-v3.1-terminus':{'modelId':_0x16b4a2(0x484,0x29d,0x3de,0x60d),'rates':{'input':0.27,'output':0x1,'cacheRead':0.21600000000000003},'pricingProviderIds':[_0x5a09f8(0xb9,0x46c,0x259,0x2fe)],'matchKind':'model-unique'},'deepseek-v3.2-speciale':{'modelId':_0x16b4a2(-0xa7,-0x453,-0xc7,-0x2ec),'rates':{'input':0.58,'output':1.68},'pricingProviderIds':[_0x5a09f8(-0x7d,-0x10e,-0x306,0xbb),'azure-cognitive-services'],'matchKind':'model-identical'},'deepseek-v3.2-thinking':{'modelId':'deepseek-v3.2-thinking','rates':{'input':0.29,'output':0.43},'pricingProviderIds':[_0x5a09f8(0x4ef,0x344,0x74,0x6e4)],'matchKind':'model-unique'},'deepseek-v4-flash-free':{'modelId':_0x5a09f8(-0x18,0x4c,0x3b5,-0x266),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x16b4a2(0x2ed,-0x73,0xe1,0x13d)],'matchKind':_0x5a09f8(-0x95,0x30a,0xac,0x134)},'deepseek-v4-flash:free':{'modelId':_0x5a09f8(0x320,0x32a,0x3af,0x68),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x535,0x1f2,0x467,0x753),_0x5a09f8(-0x5e,-0x186,0xee,-0x155)],'matchKind':'model-identical'},'deepseek-v4-pro-lightning':{'modelId':_0x16b4a2(0x76c,0x396,0x500,0x1f4),'rates':{'input':0.8,'output':1.6,'cacheRead':0.02},'pricingProviderIds':[_0x16b4a2(0x3c2,0x232,0x43a,0x71d)],'matchKind':'model-unique'},'deepseek-v4-pro:free':{'modelId':_0x5a09f8(0x6e4,0x36f,0x4f9,0x209),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['unorouter'],'matchKind':'model-unique'},'deepseek.r1-v1:0':{'modelId':_0x5a09f8(-0xb4,-0x176,0x206,-0x383),'rates':{'input':1.35,'output':5.4},'pricingProviderIds':[_0x16b4a2(0x66d,0x66,0x2aa,0x577)],'matchKind':'model-unique'},'deepseek.v3-v1:0':{'modelId':'deepseek.v3-v1:0','rates':{'input':0.58,'output':1.68},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x5a09f8(0x4d0,0x30a,0x67b,0x5aa)},'deepseek.v3.2':{'modelId':_0x16b4a2(0x71d,0x24d,0x422,0x385),'rates':{'input':0.62,'output':1.85},'pricingProviderIds':[_0x16b4a2(0x5e2,0x650,0x2aa,0x35b)],'matchKind':_0x5a09f8(0x608,0x30a,0x638,0x353)},'deepseek/deepseek-latest':{'modelId':_0x5a09f8(0x37,-0x18,0x124,0x24),'rates':{'input':1.1,'output':2.2,'cacheRead':0.11},'pricingProviderIds':[_0x16b4a2(0xc4,-0xf6,0x2b,-0x1e0)],'matchKind':_0x5a09f8(0x27e,0x30a,0x402,0x2ef)},'deepseek/deepseek-ocr':{'modelId':_0x16b4a2(0x11f,0x2ef,-0x56,-0x20b),'rates':{'input':0.03,'output':0.03},'pricingProviderIds':['novita-ai'],'matchKind':'model-unique'},'deepseek/deepseek-ocr-2':{'modelId':_0x5a09f8(0x303,0x395,0x68f,0x2e0),'rates':{'input':0.03,'output':0.03},'pricingProviderIds':['novita-ai'],'matchKind':_0x5a09f8(-0x85,0x30a,-0x61,0x5ae)},'deepseek/deepseek-r1-0528-qwen3-8b':{'modelId':'deepseek/deepseek-r1-0528-qwen3-8b','rates':{'input':0.06,'output':0.09},'pricingProviderIds':['novita-ai'],'matchKind':_0x5a09f8(0x5db,0x30a,0x4ff,0x5a8)},'deepseek/deepseek-r1-distill-qwen-14b':{'modelId':'deepseek/deepseek-r1-distill-qwen-14b','rates':{'input':0.15,'output':0.15},'pricingProviderIds':[_0x5a09f8(0x33c,0x372,0x6e5,0x6fa)],'matchKind':_0x5a09f8(0x1f5,0x30a,-0x2a,0x9c)},'deepseek/deepseek-r1-turbo':{'modelId':_0x5a09f8(-0x26c,0x52,0x3d4,0x2f5),'rates':{'input':0.7,'output':2.5},'pricingProviderIds':['novita-ai'],'matchKind':'model-unique'},'deepseek/deepseek-reasoner':{'modelId':'deepseek/deepseek-reasoner','rates':{'input':0.435,'output':0.87,'cacheRead':0.028},'pricingProviderIds':[_0x5a09f8(-0x2e8,-0x27,-0x1f0,-0x2f)],'matchKind':_0x5a09f8(0x5e8,0x30a,0x24d,0x5b7)},'deepseek/deepseek-v3':{'modelId':_0x5a09f8(-0x4f4,-0x16e,0x1a1,-0x529),'rates':{'input':0.27,'output':1.12,'cacheRead':0.135},'pricingProviderIds':['vercel'],'matchKind':_0x5a09f8(0x611,0x30a,0x1a1,0x108)},'deepseek/deepseek-v3-turbo':{'modelId':_0x5a09f8(-0x1b0,0x1cc,0x326,-0xd7),'rates':{'input':0.4,'output':1.3},'pricingProviderIds':['novita-ai'],'matchKind':'model-unique'},'deepseek/deepseek-v3.2-thinking':{'modelId':_0x16b4a2(-0x124,0x4b9,0x19e,0x1c8),'rates':{'input':0.62,'output':1.85},'pricingProviderIds':['vercel'],'matchKind':_0x5a09f8(0x233,0x30a,-0x4c,0x580)},'deepseek/deepseek-v3.2:thinking':{'modelId':_0x5a09f8(-0x8a,-0x114,-0x442,0x22),'rates':{'input':0.27999999999999997,'output':0.42000000000000004},'pricingProviderIds':[_0x16b4a2(-0x1b4,-0x4a,0x2b,-0x332)],'matchKind':_0x5a09f8(0xc,0x30a,0x21e,0xa1)},'deepseek/deepseek-v4-flash:thinking':{'modelId':_0x16b4a2(0x30e,0x2c2,0x508,0x222),'rates':{'input':0.14,'output':0.28,'cacheRead':0.028},'pricingProviderIds':[_0x16b4a2(-0x85,-0x1d7,0x2b,-0x1a3)],'matchKind':_0x5a09f8(0x136,0x30a,-0xb9,0x551)},'deepseek/deepseek-v4-pro-cheaper':{'modelId':'deepseek/deepseek-v4-pro-cheaper','rates':{'input':0.435,'output':0.87,'cacheRead':0.003625},'pricingProviderIds':[_0x5a09f8(-0x161,-0x34,0x8f,0x241)],'matchKind':_0x16b4a2(0x78,0x1fe,0x369,0x47b)},'deepseek/deepseek-v4-pro-cheaper:thinking':{'modelId':_0x5a09f8(-0x1e6,0x3a,0x375,-0xbc),'rates':{'input':0.435,'output':0.87,'cacheRead':0.003625},'pricingProviderIds':[_0x16b4a2(-0x8b,0x3a3,0x2b,0x3db)],'matchKind':'model-unique'},'deepseek/deepseek-v4-pro:thinking':{'modelId':'deepseek/deepseek-v4-pro:thinking','rates':{'input':1.1,'output':2.2,'cacheRead':0.11},'pricingProviderIds':[_0x5a09f8(-0x3cc,-0x34,-0x354,0x234)],'matchKind':_0x5a09f8(0x4a2,0x30a,0x277,0x47d)},'devstral-2-123b-instruct-2512':{'modelId':'devstral-2-123b-instruct-2512','rates':{'input':0.4,'output':0x2},'pricingProviderIds':[_0x16b4a2(-0x91,-0xd8,-0x13b,-0x2d5)],'matchKind':_0x5a09f8(0x635,0x30a,0x4b6,0x5c4)},'devstral-latest':{'modelId':_0x16b4a2(0xf5,0x100,0x380,0x502),'rates':{'input':0.4,'output':0x2},'pricingProviderIds':[_0x5a09f8(0x42,0x1a5,0x126,0x4b5)],'matchKind':_0x5a09f8(0x580,0x30a,-0x3,0x650)},'devstral-medium-2507':{'modelId':_0x5a09f8(-0x2c6,-0x50,0x87,-0x19f),'rates':{'input':0.4,'output':0x2},'pricingProviderIds':[_0x5a09f8(-0x8b,0x1a5,0x466,0x222)],'matchKind':'model-unique'},'devstral-medium-latest':{'modelId':_0x5a09f8(0x339,-0x12,-0x153,-0x105),'rates':{'input':0.4,'output':0x2},'pricingProviderIds':[_0x5a09f8(0x541,0x1a5,-0x1b,0x14)],'matchKind':'model-unique'},'devstral-small-2505':{'modelId':_0x5a09f8(-0x208,0x189,0x4d0,-0xee),'rates':{'input':0.1,'output':0.3},'pricingProviderIds':[_0x16b4a2(-0x8d,0xe4,0x204,0x2b4)],'matchKind':_0x5a09f8(-0x15,0x30a,0x122,0x646)},'devstral-small-2507':{'modelId':_0x16b4a2(0x2ee,-0x2e1,0xb8,0x139),'rates':{'input':0.1,'output':0.3},'pricingProviderIds':[_0x16b4a2(0x1b,0x1ed,0x204,0x18d)],'matchKind':_0x5a09f8(0x1f0,0x30a,0x1fe,0x364)},'dmind/dmind-1':{'modelId':_0x5a09f8(0x6a3,0x427,0x17d,0x7a6),'rates':{'input':0.3,'output':0.6},'pricingProviderIds':[_0x5a09f8(0x116,-0x34,0x33b,-0x2a)],'matchKind':_0x16b4a2(0x343,0x654,0x369,0x46d)},'dmind/dmind-1-mini':{'modelId':_0x5a09f8(-0x209,0xf7,-0x16d,0x35d),'rates':{'input':0.2,'output':0.4},'pricingProviderIds':[_0x16b4a2(0x16a,-0x27a,0x2b,0x199)],'matchKind':_0x5a09f8(0x98,0x30a,0x3b,0x17e)},'doubao-1-5-thinking-pro-250415':{'modelId':'doubao-1-5-thinking-pro-250415','rates':{'input':0.6,'output':2.4},'pricingProviderIds':[_0x5a09f8(0x1c1,-0x34,-0x1f6,0x2a1)],'matchKind':_0x5a09f8(0x564,0x30a,0x366,0x5c7)},'doubao-1-5-thinking-pro-vision-250415':{'modelId':_0x5a09f8(-0x1a,0x28f,0x4f8,0x381),'rates':{'input':0.6,'output':2.4},'pricingProviderIds':[_0x16b4a2(-0x56,0x229,0x2b,0x136)],'matchKind':_0x16b4a2(0x50f,0x23b,0x369,0x0)},'doubao-1-5-thinking-vision-pro-250428':{'modelId':_0x5a09f8(0x7bc,0x441,0x619,0x5a1),'rates':{'input':0.55,'output':1.43},'pricingProviderIds':[_0x16b4a2(0x23a,0xd,0x2b,-0x396)],'matchKind':_0x5a09f8(0x32a,0x30a,0x591,0x5ef)},'doubao-1.5-pro-256k':{'modelId':'doubao-1.5-pro-256k','rates':{'input':0.799,'output':1.445},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x5c5,0x30a,0xab,0x1e4)},'doubao-1.5-pro-32k':{'modelId':'doubao-1.5-pro-32k','rates':{'input':0.1343,'output':0.3349},'pricingProviderIds':[_0x16b4a2(0xd,-0x80,0x2b,-0x300)],'matchKind':'model-unique'},'doubao-1.5-vision-pro-32k':{'modelId':_0x5a09f8(0x4e0,0x3d2,0x416,0x54d),'rates':{'input':0.459,'output':1.377},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x69e,0x202,0x369,0xb1)},'doubao-seed-1-6-250615':{'modelId':_0x16b4a2(0x1f,0x59b,0x22d,-0xbb),'rates':{'input':0.204,'output':0.51},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'doubao-seed-1-6-flash-250615':{'modelId':_0x16b4a2(0x22a,0x6b2,0x5c6,0x4de),'rates':{'input':0.0374,'output':0.374},'pricingProviderIds':[_0x5a09f8(-0x2b,-0x34,-0xf4,0xe8)],'matchKind':_0x16b4a2(0x6b3,0x6aa,0x369,0x26)},'doubao-seed-1-6-thinking-250615':{'modelId':'doubao-seed-1-6-thinking-250615','rates':{'input':0.204,'output':2.04},'pricingProviderIds':[_0x16b4a2(0x39d,-0x326,0x2b,0x3e0)],'matchKind':_0x16b4a2(0x2cb,0x391,0x369,0x316)},'doubao-seed-1-6-thinking-250715':{'modelId':_0x5a09f8(0x6fb,0x3a1,0x60d,0x368),'rates':{'input':0.121,'output':1.21},'pricingProviderIds':['302ai'],'matchKind':_0x5a09f8(0x285,0x30a,0x35a,-0x4f)},'doubao-seed-1-6-vision-250815':{'modelId':'doubao-seed-1-6-vision-250815','rates':{'input':0.114,'output':1.143},'pricingProviderIds':[_0x5a09f8(0x314,0x344,0x1ae,0x682)],'matchKind':_0x16b4a2(0x37d,0x2d,0x369,0x3d5)},'doubao-seed-2-0-code-preview':{'modelId':_0x16b4a2(0x3b3,0x3b1,0x3bb,0x6f8),'rates':{'input':0.48,'output':2.41,'cacheRead':0.09644},'pricingProviderIds':[_0x16b4a2(0x3e,-0x1a2,0x81,0x2b4)],'matchKind':_0x16b4a2(0xcd,0x543,0x369,0x31)},'doubao-seed-2-0-code-preview-260215':{'modelId':'doubao-seed-2-0-code-preview-260215','rates':{'input':0.782,'output':3.893},'pricingProviderIds':[_0x5a09f8(0x12c,-0x34,0x267,0x1c7)],'matchKind':_0x16b4a2(0x23d,0x5ba,0x369,0x402)},'doubao-seed-2-0-lite-260215':{'modelId':_0x16b4a2(0x60f,0x261,0x5d6,0x50c),'rates':{'input':0.1462,'output':0.8738},'pricingProviderIds':[_0x16b4a2(-0x249,-0x92,0x2b,0x72)],'matchKind':_0x5a09f8(0x477,0x30a,0x425,0x495)},'doubao-seed-2-0-lite-260428':{'modelId':_0x16b4a2(0x1bb,0x42,0x29b,0x47a),'rates':{'input':0.08,'output':0.51,'cacheRead':0.01692,'inputAudio':1.269},'pricingProviderIds':['aihubmix'],'matchKind':_0x16b4a2(0x218,0x6db,0x369,0x1f)},'doubao-seed-2-0-mini-260215':{'modelId':'doubao-seed-2-0-mini-260215','rates':{'input':0.0493,'output':0.4845},'pricingProviderIds':[_0x5a09f8(0x251,-0x34,-0x318,0x77)],'matchKind':_0x16b4a2(0x69,0x324,0x369,0x472)},'doubao-seed-2-0-mini-260428':{'modelId':_0x16b4a2(0x202,0x5c9,0x3ef,0x715),'rates':{'input':0.03,'output':0.28,'cacheRead':0.00564,'inputAudio':0.423},'pricingProviderIds':[_0x16b4a2(0x1ad,-0x281,0x81,-0x227)],'matchKind':_0x5a09f8(0x16a,0x30a,0x8a,0x4d1)},'doubao-seed-2-0-pro':{'modelId':_0x16b4a2(0x522,0x4c9,0x1a0,-0x14c),'rates':{'input':0.48,'output':2.41,'cacheRead':0.09644},'pricingProviderIds':[_0x5a09f8(0x1b7,0x22,-0x323,0x3b1)],'matchKind':_0x5a09f8(0x3a1,0x30a,0x444,0x522)},'doubao-seed-2-0-pro-260215':{'modelId':_0x16b4a2(0xbb,0x3d,0x38b,0x23e),'rates':{'input':0.782,'output':3.876},'pricingProviderIds':[_0x16b4a2(-0x275,0x118,0x2b,0x3a)],'matchKind':_0x5a09f8(0xc3,0x30a,0x38d,0x287)},'doubao-seed-code-preview-251028':{'modelId':'doubao-seed-code-preview-251028','rates':{'input':0.17,'output':1.14},'pricingProviderIds':[_0x16b4a2(0x761,0x1c4,0x3a3,0x3db)],'matchKind':_0x5a09f8(-0x7b,0x30a,0x1c2,0x63f)},'duo-chat-fable-5':{'modelId':_0x16b4a2(0x12,0x320,0x37,-0x346),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x5a09f8(0x3b5,0x29c,0x224,0x65b)],'matchKind':_0x16b4a2(0x684,0x2d8,0x369,0x471)},'duo-chat-gpt-5-1':{'modelId':'duo-chat-gpt-5-1','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x2cc,0x29c,0x2ab,0x470)],'matchKind':'model-unique'},'duo-chat-gpt-5-2':{'modelId':_0x16b4a2(-0x167,-0x48,-0xc0,-0x29b),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x22f,0x29c,0x31f,0xbf)],'matchKind':_0x5a09f8(0x34f,0x30a,0x69f,0x66a)},'duo-chat-gpt-5-2-codex':{'modelId':_0x5a09f8(0x45a,0xf2,0x5,0x93),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['gitlab'],'matchKind':'model-unique'},'duo-chat-gpt-5-3-codex':{'modelId':_0x5a09f8(-0x4d,-0x120,0x1de,-0x2e2),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x419,0x29c,0xed,0x7a)],'matchKind':_0x5a09f8(0x349,0x30a,0x538,0x2e3)},'duo-chat-gpt-5-4':{'modelId':_0x5a09f8(-0x114,-0x3b,-0x34e,0x350),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x221,0x29c,0x1c9,-0x9f)],'matchKind':'model-unique'},'duo-chat-gpt-5-4-mini':{'modelId':_0x5a09f8(-0x1d8,-0xde,0x294,-0x132),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x5ab,0x29c,0x1cd,0x5d2)],'matchKind':_0x5a09f8(0x51,0x30a,0x74,0x29d)},'duo-chat-gpt-5-4-nano':{'modelId':_0x5a09f8(0x203,-0x1b1,0x9a,0x11b),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x354,0x4f7,0x2fb,0x4d2)],'matchKind':_0x5a09f8(0x1b9,0x30a,0x21f,0x28d)},'duo-chat-gpt-5-5':{'modelId':_0x16b4a2(0x61f,0x30e,0x36c,0x25a),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['gitlab'],'matchKind':_0x5a09f8(0x27b,0x30a,0x1b7,0x24c)},'duo-chat-gpt-5-6-luna':{'modelId':_0x5a09f8(0x17f,0x4b4,0x14b,0x285),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x5a09f8(0x3ea,0x29c,0x16,-0xbb)],'matchKind':'model-unique'},'duo-chat-gpt-5-6-sol':{'modelId':'duo-chat-gpt-5-6-sol','rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x16b4a2(0xc0,0xca,0x2fb,0x25f)],'matchKind':_0x5a09f8(0x1c5,0x30a,0x1cc,0x521)},'duo-chat-gpt-5-6-terra':{'modelId':'duo-chat-gpt-5-6-terra','rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x16b4a2(0x35d,-0x6a,0x2fb,0x23b)],'matchKind':_0x16b4a2(0xa3,0x83,0x369,0x476)},'duo-chat-gpt-5-codex':{'modelId':_0x5a09f8(-0x2c9,-0x121,-0x4aa,0x31),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x439,0x29c,0x434,-0x36)],'matchKind':'model-unique'},'duo-chat-gpt-5-mini':{'modelId':_0x16b4a2(0x8f7,0x1af,0x53b,0x767),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x23e,0x29c,0x567,0x4e2)],'matchKind':_0x5a09f8(0x10d,0x30a,0x370,0x5ec)},'duo-chat-haiku-4-5':{'modelId':_0x5a09f8(0x303,-0xbc,0x260,0x184),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x16b4a2(0x14d,0x2ed,0x2fb,-0x5b)],'matchKind':_0x16b4a2(0x48a,0x201,0x369,0x231)},'duo-chat-opus-4-5':{'modelId':_0x5a09f8(0x331,0x3c6,0x651,0x53a),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x5a09f8(-0xd3,0x29c,0x3e9,0x5af)],'matchKind':_0x16b4a2(0x244,0x4db,0x369,0x28a)},'duo-chat-opus-4-6':{'modelId':_0x16b4a2(-0x286,-0x1de,-0x4c,-0x197),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x16b4a2(-0x50,0x4bf,0x2fb,0x159)],'matchKind':_0x5a09f8(0xdd,0x30a,0x111,0x224)},'duo-chat-opus-4-7':{'modelId':_0x16b4a2(0x519,0x5c2,0x39c,0x23b),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x5a09f8(0x548,0x29c,0x38c,0x4b0)],'matchKind':_0x5a09f8(0x525,0x30a,0x21f,0x74)},'duo-chat-opus-4-8':{'modelId':_0x5a09f8(-0x4b7,-0xf6,-0x1e2,-0x42),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':['gitlab'],'matchKind':'model-unique'},'duo-chat-sonnet-4-5':{'modelId':_0x5a09f8(0x443,0x3e3,0x4ed,0x23c),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x16b4a2(0x235,0x28d,0x2fb,0x7f)],'matchKind':_0x16b4a2(0x2a3,0x35d,0x369,0x595)},'duo-chat-sonnet-4-6':{'modelId':'duo-chat-sonnet-4-6','rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':['gitlab'],'matchKind':'model-unique'},'duo-chat-sonnet-5':{'modelId':_0x5a09f8(0x493,0x569,0x6be,0x496),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x16b4a2(0x482,0x36f,0x2fb,0x54b)],'matchKind':_0x5a09f8(0x1b6,0x30a,0x3e3,0x585)},'e5-large-v2':{'modelId':'e5-large-v2','rates':{'input':0.02,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x3a1,-0x11f,-0x1d,0x14e)],'matchKind':_0x16b4a2(0x35e,0x64a,0x369,0x158)},'empiriolabs/deepseek-v4-flash-el':{'modelId':_0x16b4a2(0x73a,0x169,0x4d3,0x3e2),'rates':{'input':0.14,'output':0.28},'pricingProviderIds':['poe'],'matchKind':_0x5a09f8(0x148,0x30a,0x52d,0x45b)},'empiriolabs/deepseek-v4-pro-el':{'modelId':_0x16b4a2(-0xde,0x164,0x147,0x13b),'rates':{'input':1.67,'output':3.33},'pricingProviderIds':[_0x5a09f8(-0x4a1,-0x1b8,-0x10e,-0x2c5)],'matchKind':_0x5a09f8(0x562,0x30a,0x563,0x526)},'ernie-4.5-21b-a3b-thinking':{'modelId':'ernie-4.5-21b-a3b-thinking','rates':{'input':0.07,'output':0.28},'pricingProviderIds':['helicone'],'matchKind':'model-unique'},'ernie-4.5-8k-preview':{'modelId':_0x5a09f8(-0x9b,-0x14b,0x47,-0x28f),'rates':{'input':0.66,'output':2.6},'pricingProviderIds':[_0x16b4a2(-0xb8,0x2ed,0x2b,0x163)],'matchKind':_0x16b4a2(0x5e,0x1f1,0x369,0x24b)},'ernie-4.5-turbo-128k':{'modelId':'ernie-4.5-turbo-128k','rates':{'input':0.132,'output':0.55},'pricingProviderIds':[_0x16b4a2(0x21e,-0x36f,0x2b,0x47)],'matchKind':_0x5a09f8(0x17c,0x30a,0x2e0,0x581)},'ernie-4.5-turbo-vl-32k':{'modelId':'ernie-4.5-turbo-vl-32k','rates':{'input':0.495,'output':1.43},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0xcb,0x30a,0x1ef,0x183)},'ernie-5.0-thinking-preview':{'modelId':'ernie-5.0-thinking-preview','rates':{'input':1.1,'output':0x2},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x373,0x5c9,0x369,0x1e5)},'ernie-5.1':{'modelId':_0x5a09f8(0xac,-0x32,0x1c0,0x40),'rates':{'input':0.75,'output':0x3,'cacheRead':0.75},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'ernie-5.1:thinking':{'modelId':_0x16b4a2(0x37a,-0x115,0x3,0x32b),'rates':{'input':0.75,'output':0x3,'cacheRead':0.75},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x30c,0x30a,0x3e8,0x262)},'ernie-x1-32k':{'modelId':_0x16b4a2(0x115,0x16e,0x36f,0x185),'rates':{'input':0.33,'output':1.32},'pricingProviderIds':[_0x5a09f8(-0xe5,-0x34,-0x108,0x345)],'matchKind':_0x5a09f8(0x41b,0x30a,0x21e,0x43c)},'ernie-x1-32k-preview':{'modelId':_0x5a09f8(0x323,0x5af,0x782,0x810),'rates':{'input':0.33,'output':1.32},'pricingProviderIds':[_0x16b4a2(-0x310,0x86,0x2b,0x37d)],'matchKind':_0x5a09f8(0x41a,0x30a,0x2ae,0x5c8)},'ernie-x1-turbo-32k':{'modelId':_0x16b4a2(0x497,-0x65,0x2ec,0x143),'rates':{'input':0.165,'output':0.66},'pricingProviderIds':[_0x5a09f8(0x2c0,-0x34,0x68,0x1f8)],'matchKind':'model-unique'},'ernie-x1.1-preview':{'modelId':_0x16b4a2(0x3e2,0x371,0x184,0x373),'rates':{'input':0.15,'output':0.6},'pricingProviderIds':[_0x5a09f8(0x15c,-0x34,-0x93,0xa5)],'matchKind':'model-unique'},'essentialai/Rnj-1-Instruct':{'modelId':_0x16b4a2(-0x197,0x206,0x158,0xf9),'rates':{'input':0.15,'output':0.15},'pricingProviderIds':[_0x16b4a2(0x20f,0x181,0x340,0x128)],'matchKind':_0x5a09f8(0x1f6,0x30a,0x416,0x52f)},'essentialai/rnj-1-instruct':{'modelId':_0x5a09f8(-0x4a7,-0x1cb,-0x23f,-0x25e),'rates':{'input':0.15,'output':0.15},'pricingProviderIds':['kilo','nano-gpt'],'matchKind':_0x5a09f8(0xd9,0x102,0x3e8,-0x90)},'eu.anthropic.claude-fable-5':{'modelId':_0x5a09f8(0x1e5,-0x129,0xa5,0x173),'rates':{'input':0xb,'output':0x37,'cacheRead':1.1,'cacheWrite':13.75},'pricingProviderIds':[_0x16b4a2(0xaa,0x352,0x2aa,0x3a)],'matchKind':'model-unique'},'eu.anthropic.claude-haiku-4-5-20251001-v1:0':{'modelId':_0x16b4a2(-0x25b,-0x134,0x10a,0x160),'rates':{'input':1.1,'output':5.5,'cacheRead':0.11,'cacheWrite':1.375},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x16b4a2(0xf1,0x6a9,0x369,0x189)},'eu.anthropic.claude-opus-4-5-20251101-v1:0':{'modelId':_0x5a09f8(0x3a5,0x66,0x21a,-0x7),'rates':{'input':5.5,'output':27.5,'cacheRead':0.55,'cacheWrite':6.875},'pricingProviderIds':[_0x16b4a2(0x3b6,0x52e,0x2aa,0x294)],'matchKind':'model-unique'},'eu.anthropic.claude-opus-4-6-v1':{'modelId':'eu.anthropic.claude-opus-4-6-v1','rates':{'input':5.5,'output':27.5,'cacheRead':0.55,'cacheWrite':6.875},'pricingProviderIds':[_0x16b4a2(0xb,0x3da,0x2aa,0x642)],'matchKind':_0x5a09f8(0x6b7,0x30a,0xc0,0x4cc)},'eu.anthropic.claude-opus-4-7':{'modelId':_0x16b4a2(0x4d7,0xc4,0x215,0x2d6),'rates':{'input':5.5,'output':27.5,'cacheRead':0.55,'cacheWrite':6.875},'pricingProviderIds':[_0x16b4a2(0x382,0x5d1,0x2aa,0x491)],'matchKind':_0x16b4a2(0x713,0x425,0x369,0x5a3)},'eu.anthropic.claude-opus-4-8':{'modelId':_0x5a09f8(0x166,-0x1bc,-0x3f8,-0x55d),'rates':{'input':5.5,'output':27.5,'cacheRead':0.55,'cacheWrite':6.875},'pricingProviderIds':[_0x5a09f8(0x5ea,0x24b,0x2d5,0x4bf)],'matchKind':_0x5a09f8(0x57f,0x30a,-0x98,0x41b)},'eu.anthropic.claude-opus-5':{'modelId':_0x16b4a2(0x50a,0x53c,0x1e9,0x2b7),'rates':{'input':5.5,'output':27.5,'cacheRead':0.55,'cacheWrite':6.875},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x16b4a2(0x5f2,0x1a0,0x369,0x5b3)},'eu.anthropic.claude-sonnet-4-5-20250929-v1:0':{'modelId':'eu.anthropic.claude-sonnet-4-5-20250929-v1:0','rates':{'input':3.3,'output':16.5,'cacheRead':0.33,'cacheWrite':4.125},'pricingProviderIds':[_0x5a09f8(0x9d,0x24b,0x5ac,-0x65)],'matchKind':_0x5a09f8(-0x12,0x30a,0x41c,-0x20)},'eu.anthropic.claude-sonnet-4-6':{'modelId':'eu.anthropic.claude-sonnet-4-6','rates':{'input':3.3,'output':16.5,'cacheRead':0.33,'cacheWrite':4.125},'pricingProviderIds':[_0x5a09f8(-0x4b,0x24b,0x1db,0x66)],'matchKind':_0x5a09f8(0x2b1,0x30a,0x4d1,0x2ce)},'eu.anthropic.claude-sonnet-5':{'modelId':_0x5a09f8(0x236,0x34,-0x83,-0xca),'rates':{'input':2.2,'output':0xb,'cacheRead':0.22,'cacheWrite':2.75},'pricingProviderIds':['amazon-bedrock'],'matchKind':'model-unique'},'evroc/roc':{'modelId':_0x5a09f8(-0x467,-0x139,0x13b,-0x32b),'rates':{'input':2.875,'output':11.516},'pricingProviderIds':['evroc'],'matchKind':_0x5a09f8(0x4a2,0x30a,0x306,0x472)},'exa-answer':{'modelId':_0x16b4a2(0x408,0x562,0x25e,0x2c5),'rates':{'input':2.5,'output':2.5},'pricingProviderIds':[_0x5a09f8(-0x1b2,-0x34,-0x1e7,-0x1e)],'matchKind':_0x16b4a2(0x513,0x3a4,0x369,0xc1)},'exa-research':{'modelId':'exa-research','rates':{'input':2.5,'output':2.5},'pricingProviderIds':[_0x16b4a2(0x8e,0x2c3,0x2b,-0x239)],'matchKind':'model-unique'},'exa-research-pro':{'modelId':_0x16b4a2(0x6f0,0x374,0x4ac,0x3e1),'rates':{'input':2.5,'output':2.5},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x5c,0x5ff,0x369,0xc7)},'failspy/Meta-Llama-3-70B-Instruct-abliterated-v3.5':{'modelId':_0x16b4a2(0x730,0x797,0x601,0x27c),'rates':{'input':0.7,'output':0.7},'pricingProviderIds':[_0x16b4a2(0x7f,0x21,0x2b,0x291)],'matchKind':_0x16b4a2(0x242,0x4cd,0x369,0x5c8)},'fastgpt':{'modelId':_0x5a09f8(-0x380,0x3e,0x1c7,0x163),'rates':{'input':7.5,'output':7.5},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x652,0x396,0x369,0xe5)},'fastino/gliguard-LLMGuardrails-300M':{'modelId':_0x16b4a2(-0x3e2,0xb,-0x2d,0x13a),'rates':{'input':0.15,'output':0.15,'cacheRead':0.15,'cacheWrite':0.15},'pricingProviderIds':[_0x16b4a2(0x559,0x5a3,0x584,0x2e1)],'matchKind':'model-unique'},'fastino/gliner2-base-v1':{'modelId':_0x5a09f8(-0xe3,0x163,0x32f,-0x185),'rates':{'input':0.15,'output':0.15,'cacheRead':0.15,'cacheWrite':0.15},'pricingProviderIds':[_0x5a09f8(0x2ce,0x525,0x1c7,0x795)],'matchKind':_0x5a09f8(0x5a8,0x30a,0x297,0x62c)},'fastino/gliner2-large-v1':{'modelId':'fastino/gliner2-large-v1','rates':{'input':0.15,'output':0.15,'cacheRead':0.15,'cacheWrite':0.15},'pricingProviderIds':[_0x5a09f8(0x8b4,0x525,0x729,0x43b)],'matchKind':'model-unique'},'fastino/gliner2-multi-large-v1':{'modelId':_0x16b4a2(0x4a2,0x214,0x538,0x5fc),'rates':{'input':0.15,'output':0.15,'cacheRead':0.15,'cacheWrite':0.15},'pricingProviderIds':[_0x5a09f8(0x5d9,0x525,0x699,0x757)],'matchKind':_0x16b4a2(0x27e,0x17d,0x369,0x325)},'fastino/gliner2-multi-v1':{'modelId':'fastino/gliner2-multi-v1','rates':{'input':0.15,'output':0.15,'cacheRead':0.15,'cacheWrite':0.15},'pricingProviderIds':[_0x16b4a2(0x331,0x4db,0x584,0x469)],'matchKind':_0x16b4a2(0x152,0x2d6,0x369,0x2cf)},'fastino/gliner2-privacy-filter-PII-multi':{'modelId':_0x16b4a2(-0x2ef,-0xea,-0x1f,-0x376),'rates':{'input':0.15,'output':0.15,'cacheRead':0.15,'cacheWrite':0.15},'pricingProviderIds':['pioneer'],'matchKind':_0x5a09f8(0xaa,0x30a,0x5b,0x634)},'featherless-ai/Qwerky-72B':{'modelId':'featherless-ai/Qwerky-72B','rates':{'input':0.5,'output':0.5},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'fireworks-ai/kimi-k2.5-fw':{'modelId':'fireworks-ai/kimi-k2.5-fw','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x265,-0x50f,-0x159,-0x8a)],'matchKind':_0x5a09f8(0x47c,0x30a,0x70,0x67)},'fugu-ultra-20260615':{'modelId':_0x16b4a2(0xc3,0x580,0x401,0x7c2),'rates':{'input':0x5,'output':0x1e,'cacheRead':0.5},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':0x2d,'cacheRead':0x1}],'pricingProviderIds':[_0x5a09f8(0x1e1,-0x36,-0xa1,-0xa2)],'matchKind':'model-unique'},'gemini-2-5-flash-lite':{'modelId':_0x5a09f8(0x356,0x289,-0xa0,0x1ed),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x6fa,0x408,0x47a,0xd1)],'matchKind':_0x5a09f8(0x278,0x30a,0x33a,0x471)},'gemini-2-5-pro':{'modelId':'gemini-2-5-pro','rates':{'input':1.25,'output':0xa,'cacheRead':0.125},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.5,'output':0xf,'cacheRead':0.25}],'pricingProviderIds':['neon'],'matchKind':_0x16b4a2(0x513,0x177,0x369,0x708)},'gemini-2.0-flash':{'modelId':_0x5a09f8(-0x191,0x1a3,0x1e1,0x28e),'rates':{'input':0.1,'output':0.4,'cacheRead':0.025},'pricingProviderIds':[_0x16b4a2(0x2b4,0x644,0x2d3,0xb9)],'matchKind':_0x16b4a2(-0x51,0x96,0x369,0x6fb)},'gemini-2.0-flash-001':{'modelId':'gemini-2.0-flash-001','rates':{'input':0.1003,'output':0.408},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'gemini-2.0-flash-exp-image-generation':{'modelId':_0x16b4a2(0x357,0xb4,0xe,0x2af),'rates':{'input':0.2,'output':0.8},'pricingProviderIds':[_0x5a09f8(0x15e,-0x34,0x244,0x102)],'matchKind':'model-unique'},'gemini-2.0-flash-lite':{'modelId':_0x16b4a2(0x587,0x730,0x57f,0x383),'rates':{'input':0.075,'output':0.3},'pricingProviderIds':[_0x16b4a2(0x368,0x505,0x3a3,0x250),_0x16b4a2(0x5ee,0x32,0x2d3,0x687)],'matchKind':'model-identical'},'gemini-2.0-flash-thinking-exp-01-21':{'modelId':_0x16b4a2(0x624,0x630,0x52b,0x526),'rates':{'input':0.306,'output':1.003},'pricingProviderIds':[_0x16b4a2(-0x2b8,0x323,0x2b,-0x183)],'matchKind':_0x16b4a2(0x188,0x4ba,0x369,0x18f)},'gemini-2.0-flash-thinking-exp-1219':{'modelId':_0x5a09f8(-0x162,-0xad,-0xee,-0x35c),'rates':{'input':0.1003,'output':0.408},'pricingProviderIds':[_0x16b4a2(-0x101,-0x265,0x2b,-0x19e)],'matchKind':'model-unique'},'gemini-2.0-pro-exp-02-05':{'modelId':'gemini-2.0-pro-exp-02-05','rates':{'input':1.989,'output':7.956},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x294,0x57e,0x369,0x546)},'gemini-2.0-pro-reasoner':{'modelId':_0x5a09f8(-0x409,-0xf9,-0x332,-0xda),'rates':{'input':1.292,'output':4.998},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x406,0x30a,0x65e,0x2ab)},'gemini-2.5-computer-use-preview-10-2025':{'modelId':'gemini-2.5-computer-use-preview-10-2025','rates':{'input':1.25,'output':0xa},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.5,'output':0xf}],'pricingProviderIds':[_0x16b4a2(0x4b2,0x4c,0x2d3,0x5a7)],'matchKind':_0x16b4a2(0x1c8,0x28a,0x369,0x550)},'gemini-2.5-flash-lite-preview-09-2025-thinking':{'modelId':'gemini-2.5-flash-lite-preview-09-2025-thinking','rates':{'input':0.1,'output':0.4},'pricingProviderIds':[_0x5a09f8(0x299,-0x34,-0x28,-0xee)],'matchKind':'model-unique'},'gemini-2.5-flash-nothink':{'modelId':'gemini-2.5-flash-nothink','rates':{'input':0.3,'output':2.5},'pricingProviderIds':[_0x16b4a2(0x6c0,0x60d,0x3a3,0x58b)],'matchKind':'model-unique'},'gemini-2.5-flash-nothinking':{'modelId':_0x16b4a2(0x220,0x540,0x371,0x371),'rates':{'input':0.3,'output':2.5},'pricingProviderIds':[_0x16b4a2(0x3d,-0x38f,0x2b,-0x71)],'matchKind':_0x16b4a2(0x490,0x264,0x369,-0x39)},'gemini-2.5-flash-preview-04-17':{'modelId':'gemini-2.5-flash-preview-04-17','rates':{'input':0.15,'output':0.6},'pricingProviderIds':[_0x5a09f8(-0x240,-0x34,-0x3c5,-0x3e3)],'matchKind':_0x5a09f8(0xa0,0x30a,0x32b,0x543)},'gemini-2.5-flash-preview-04-17:thinking':{'modelId':_0x16b4a2(-0x2af,0x36f,0x107,-0x235),'rates':{'input':0.15,'output':3.5},'pricingProviderIds':[_0x5a09f8(-0x21b,-0x34,-0x1f5,-0x363)],'matchKind':_0x5a09f8(0x33d,0x30a,0x484,0x4bc)},'gemini-2.5-flash-preview-05-20:thinking':{'modelId':_0x5a09f8(0x6a1,0x504,0x303,0x2fb),'rates':{'input':0.15,'output':3.5},'pricingProviderIds':[_0x16b4a2(0xa6,0xad,0x2b,0x2a4)],'matchKind':_0x16b4a2(0x3e8,0x1fa,0x369,0x1e0)},'gemini-2.5-flash-preview-09-2025':{'modelId':_0x16b4a2(0x586,0x2f3,0x50c,0x3c1),'rates':{'input':0.3,'output':2.5},'pricingProviderIds':['302ai','nano-gpt'],'matchKind':_0x16b4a2(-0xa8,0x2fc,0x161,-0x5)},'gemini-2.5-flash-preview-09-2025-thinking':{'modelId':_0x5a09f8(-0x2e5,0x50,-0xed,-0x30f),'rates':{'input':0.3,'output':2.5},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x67e,0x30a,0x250,0x655)},'gemini-2.5-flash-preview-tts':{'modelId':_0x5a09f8(0x32d,-0x73,0x204,-0x348),'rates':{'input':0.5,'output':0xa},'pricingProviderIds':[_0x5a09f8(-0x35,0x274,0x61e,-0x67)],'matchKind':_0x5a09f8(0x44,0x30a,0x265,0x47d)},'gemini-2.5-flash-tts':{'modelId':_0x16b4a2(-0x107,-0x429,-0x76,-0x3a),'rates':{'input':0.5,'output':0xa},'pricingProviderIds':['google-vertex'],'matchKind':'model-unique'},'gemini-2.5-pro-exp-03-25':{'modelId':_0x16b4a2(0x161,-0x1cf,-0x169,0x1b9),'rates':{'input':2.5,'output':0xa},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x5cd,0x30a,-0x73,0x20d)},'gemini-2.5-pro-preview-03-25':{'modelId':_0x5a09f8(0x140,0x3eb,0x6c1,0x66f),'rates':{'input':2.5,'output':0xa},'pricingProviderIds':[_0x5a09f8(-0x33c,-0x34,-0x1d6,-0xd0)],'matchKind':_0x5a09f8(0x3dc,0x30a,0x78,-0x2e)},'gemini-2.5-pro-preview-05-06':{'modelId':'gemini-2.5-pro-preview-05-06','rates':{'input':2.5,'output':0xa},'pricingProviderIds':[_0x5a09f8(0x24c,-0x34,-0x2d0,0x57)],'matchKind':_0x5a09f8(0x592,0x30a,0x525,0x123)},'gemini-2.5-pro-preview-tts':{'modelId':_0x5a09f8(-0x185,-0xe8,-0xa2,0x20a),'rates':{'input':0x1,'output':0x14},'pricingProviderIds':[_0x16b4a2(0x5f8,0x3e7,0x2d3,-0xa3)],'matchKind':_0x16b4a2(0x574,0x68,0x369,0x6d1)},'gemini-2.5-pro-tts':{'modelId':_0x5a09f8(-0x1cd,-0x1b7,0x5c,-0x12f),'rates':{'input':0x1,'output':0x14},'pricingProviderIds':[_0x5a09f8(0x5df,0x2d7,0x334,0x151)],'matchKind':_0x5a09f8(0x3e7,0x30a,-0x84,0x684)},'gemini-3-1-pro':{'modelId':_0x16b4a2(0x1f2,0x451,0x49c,0x5cb),'rates':{'input':0x2,'output':0xc,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x4,'output':0x12,'cacheRead':0.4}],'pricingProviderIds':[_0x16b4a2(0x340,0x320,0x45,0x107)],'matchKind':_0x5a09f8(-0x89,0x30a,0x5d0,-0x4a)},'gemini-3-5-flash-lite':{'modelId':'gemini-3-5-flash-lite','rates':{'input':0.375,'output':3.125,'cacheRead':0.0375},'pricingProviderIds':[_0x5a09f8(0x774,0x543,0x737,0x651)],'matchKind':_0x5a09f8(0x3a8,0x30a,0x21a,0x17b)},'gemini-3-6-flash':{'modelId':_0x5a09f8(-0x365,-0xc,0x2c9,-0x42),'rates':{'input':1.875,'output':9.375,'cacheRead':0.1875},'pricingProviderIds':['venice'],'matchKind':_0x5a09f8(-0x7f,0x30a,0x427,0x3cf)},'gemini-3-pro':{'modelId':'gemini-3-pro','rates':{'input':0x2,'output':0xc,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x4,'output':0x12,'cacheRead':0.4}],'pricingProviderIds':[_0x5a09f8(-0x34b,-0x1a,0x206,0x72),_0x16b4a2(0x16,0x3f0,0xe1,0x183)],'matchKind':_0x16b4a2(-0xd9,0x4a0,0x161,-0x109)},'gemini-3-pro-image':{'modelId':'gemini-3-pro-image','rates':{'input':0x2,'output':0x78},'pricingProviderIds':[_0x16b4a2(0x37,0x522,0x2d3,0x41f),_0x5a09f8(0x4aa,0x2d7,0x384,-0x74)],'matchKind':_0x16b4a2(-0x1c5,0x371,0x161,-0x17e)},'gemini-3.1-flash-image':{'modelId':_0x16b4a2(0x47e,0x230,0x2f6,0xc5),'rates':{'input':0.5,'output':0x3c},'pricingProviderIds':[_0x16b4a2(0x615,0x43f,0x2d3,0x37),_0x16b4a2(0xa,-0x12,0x336,0x6f5)],'matchKind':_0x5a09f8(0x1cf,0x102,0x216,0x29c)},'gemini-3.1-flash-lite-image':{'modelId':'gemini-3.1-flash-lite-image','rates':{'input':0.25,'output':0x1e},'pricingProviderIds':[_0x5a09f8(0x130,0x274,0x56e,0x30c)],'matchKind':_0x16b4a2(0x17e,0x727,0x369,0x5e8)},'gemini-3.1-flash-live-preview':{'modelId':_0x5a09f8(0x2ac,0x301,0x1fa,0x25e),'rates':{'input':0.75,'output':4.5,'inputAudio':0x3,'outputAudio':0xc},'pricingProviderIds':[_0x5a09f8(0x3ca,0x274,0x3a1,-0xf0)],'matchKind':'model-unique'},'gemini-3.1-flash-tts-preview':{'modelId':_0x16b4a2(0x55b,0x265,0x2dd,-0xac),'rates':{'input':0x1,'output':0x14},'pricingProviderIds':[_0x5a09f8(0x603,0x274,-0x4,0x2b)],'matchKind':_0x5a09f8(0x255,0x30a,0xc3,0x3be)},'gemini-3.1-pro-preview-customtools':{'modelId':_0x5a09f8(0x81d,0x555,0x81b,0x1bc),'rates':{'input':0x2,'output':0xc,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x4,'output':0x12,'cacheRead':0.4}],'pricingProviderIds':[_0x5a09f8(0x360,0x22,-0x269,0x17f),'google',_0x5a09f8(-0x94,0x2d7,0x363,0xc4)],'matchKind':'model-identical'},'gemini-3.5-live-translate-preview':{'modelId':'gemini-3.5-live-translate-preview','rates':{'input':3.5,'output':0x15,'inputAudio':3.5,'outputAudio':0x15},'pricingProviderIds':[_0x16b4a2(-0x88,0x408,0x2d3,0x1fa)],'matchKind':'model-unique'},'gemini-embedding-001':{'modelId':'gemini-embedding-001','rates':{'input':0.15,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x31c,0x19b,0x2d3,0x16),_0x5a09f8(-0xce,0x2d7,0x146,0x1c3)],'matchKind':'model-identical'},'gemini-embedding-2':{'modelId':'gemini-embedding-2','rates':{'input':0.2,'output':0x0,'inputAudio':6.5},'pricingProviderIds':[_0x5a09f8(0x14a,0x274,0x75,0x559)],'matchKind':'model-unique'},'gemini-exp-1206':{'modelId':_0x16b4a2(-0xac,0x211,0x116,-0xb1),'rates':{'input':1.258,'output':4.998},'pricingProviderIds':[_0x16b4a2(-0x31a,-0x310,0x2b,-0x35d)],'matchKind':'model-unique'},'gemini-flash-latest':{'modelId':_0x16b4a2(0x95,0x372,0x3a,0x338),'rates':{'input':1.5,'output':0x9,'cacheRead':0.15,'inputAudio':1.5},'pricingProviderIds':['google',_0x16b4a2(0x4f7,0x382,0x336,0x150)],'matchKind':'model-identical'},'gemini-flash-lite-latest':{'modelId':_0x5a09f8(-0x44c,-0x99,0x230,-0x42e),'rates':{'input':0.25,'output':1.5,'cacheRead':0.025,'inputAudio':0.5},'pricingProviderIds':[_0x5a09f8(0x31c,0x274,-0xa2,-0x12f),_0x16b4a2(0xf1,0x194,0x336,0x5c5)],'matchKind':_0x5a09f8(0x163,0x102,0x349,0xa)},'gemini-omni-flash-preview':{'modelId':_0x16b4a2(-0x2d4,0x27a,-0x9b,-0x452),'rates':{'input':1.5,'output':17.5},'pricingProviderIds':[_0x5a09f8(0x32f,0x274,0x499,0x597)],'matchKind':_0x5a09f8(0x685,0x30a,0xe3,0x31f)},'gemini-pro-latest':{'modelId':_0x5a09f8(0x54,0xb6,-0xe1,0x406),'rates':{'input':0x2,'output':0xc,'cacheRead':0.2},'pricingProviderIds':['llmgateway'],'matchKind':_0x16b4a2(0x154,0x70b,0x369,0x19f)},'gemini-robotics-er-1.6-preview':{'modelId':'gemini-robotics-er-1.6-preview','rates':{'input':0x1,'output':0x5,'inputAudio':0x2},'pricingProviderIds':[_0x5a09f8(0x58c,0x274,0x163,0x52d)],'matchKind':_0x16b4a2(0x178,0x660,0x369,0xf8)},'gemini/gemini-2.5-flash':{'modelId':'gemini/gemini-2.5-flash','rates':{'input':0.3,'output':2.5,'cacheRead':0.03,'cacheWrite':0.3},'pricingProviderIds':[_0x5a09f8(0x2f5,0x4cb,0x68b,0x3e4)],'matchKind':'model-unique'},'gemini/gemini-2.5-flash-lite':{'modelId':_0x5a09f8(-0x2d6,0x4a,0x259,-0x294),'rates':{'input':0.1,'output':0.4,'cacheRead':0.01,'cacheWrite':0.1},'pricingProviderIds':['crossmodel'],'matchKind':'model-unique'},'gemini/gemini-2.5-pro':{'modelId':_0x16b4a2(-0x176,0xf0,0x1e5,0x9c),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125,'cacheWrite':1.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.5,'output':0xf,'cacheRead':0.25,'cacheWrite':2.5}],'pricingProviderIds':['crossmodel'],'matchKind':_0x5a09f8(0x192,0x30a,0x4eb,0x42c)},'gemini/gemini-3-flash-preview':{'modelId':_0x16b4a2(0x599,0x460,0x316,0xf7),'rates':{'input':0.5,'output':0x3,'cacheRead':0.05,'cacheWrite':0.5},'pricingProviderIds':['crossmodel'],'matchKind':_0x16b4a2(0x23f,0x32,0x369,0x476)},'gemini/gemini-3.1-pro-preview':{'modelId':_0x5a09f8(0x1ed,0x1cb,-0x5e,-0x1a0),'rates':{'input':0x2,'output':0xc,'cacheRead':0.2,'cacheWrite':0x2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x4,'output':0x12,'cacheRead':0.4,'cacheWrite':0x4}],'pricingProviderIds':[_0x16b4a2(0x5ff,0x459,0x52a,0x211)],'matchKind':'model-unique'},'gemini/gemini-3.5-flash':{'modelId':_0x5a09f8(0x5d1,0x47a,0xdb,0x5c3),'rates':{'input':1.5,'output':0x9,'cacheRead':0.15,'cacheWrite':1.5},'pricingProviderIds':[_0x5a09f8(0x3ba,0x4cb,0x1b8,0x2d6)],'matchKind':_0x16b4a2(0x2f6,0x70c,0x369,0x5d2)},'gemma-3-12b':{'modelId':_0x16b4a2(0x4fb,0x5cd,0x35b,0x23),'rates':{'input':0.15,'output':0.5},'pricingProviderIds':[_0x5a09f8(0x330,-0x1a,0x220,-0x35f)],'matchKind':_0x5a09f8(0x3fd,0x30a,0x3fa,0x3b3)},'gemma-3-12b-it':{'modelId':_0x5a09f8(0x445,0x15a,-0x12,0x2a8),'rates':{'input':0.049999999999999996,'output':0.09999999999999999},'pricingProviderIds':['helicone'],'matchKind':'model-unique'},'gemma-3-27b':{'modelId':'gemma-3-27b','rates':{'input':0.1,'output':0.3},'pricingProviderIds':['llmgateway'],'matchKind':_0x16b4a2(-0x8,0x54d,0x369,0x474)},'gemma-3-27b-it':{'modelId':_0x16b4a2(0x369,0x258,0x1c5,-0x139),'rates':{'input':0.25,'output':0.5},'pricingProviderIds':[_0x5a09f8(-0x29b,-0x19a,-0x2e5,0x31)],'matchKind':_0x5a09f8(0x4ba,0x30a,0x565,0x4d5)},'gemma-4':{'modelId':_0x16b4a2(0x3c2,0x2fc,0x4ea,0x75a),'rates':{'input':0x5,'output':0xa},'pricingProviderIds':['llmtr'],'matchKind':_0x16b4a2(0x31c,0x67c,0x369,0x44b)},'gemma-4-26b-a4b':{'modelId':_0x16b4a2(0x54f,0x7a3,0x56f,0x27d),'rates':{'input':0.05,'output':0.29,'cacheRead':0.025},'pricingProviderIds':[_0x16b4a2(-0x58,0x38a,0x224,0x515)],'matchKind':_0x5a09f8(0x2aa,0x30a,0x48b,0x69)},'gemma-4-31B-Fabled':{'modelId':_0x5a09f8(0x3fc,0x1c6,-0x16e,0x497),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(0x6d,0x29,0x2b,0x22a)],'matchKind':_0x16b4a2(0x3c2,0x273,0x369,0x3d3)},'gemma-4-31B-Garnet':{'modelId':_0x16b4a2(0x185,0x42c,0x230,0xf9),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(0x2b4,-0x259,0x2b,-0x1d8)],'matchKind':_0x16b4a2(0x163,0x324,0x369,0x6fe)},'gemma-4-31B-K1-v5':{'modelId':_0x16b4a2(-0x3f0,-0x38b,-0x107,0x19a),'rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(0x2c6,0x216,0x2b,-0x1c0)],'matchKind':_0x16b4a2(0x355,0x6de,0x369,0x6e8)},'gemma-4-31B-Larkspur-v0.5':{'modelId':'gemma-4-31B-Larkspur-v0.5','rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(-0x1af,-0x62,0x2b,0x239)],'matchKind':_0x16b4a2(0x690,-0x3,0x369,0x8a)},'gemma-4-31B-MeroMero':{'modelId':'gemma-4-31B-MeroMero','rates':{'input':0.306,'output':0.306},'pricingProviderIds':[_0x16b4a2(-0x109,0x17b,0x2b,0x38d)],'matchKind':_0x16b4a2(0x663,0x6cf,0x369,0x119)},'gemma-4-31B-it':{'modelId':_0x16b4a2(-0xf0,-0x3c6,-0x120,-0x10e),'rates':{'input':0.18,'output':0.5},'pricingProviderIds':['digitalocean'],'matchKind':_0x5a09f8(0x5ea,0x30a,0x169,0x420)},'gemma-4-31b':{'modelId':_0x16b4a2(0x1dd,0x71,0x11d,0x47e),'rates':{'input':0.99,'output':1.49},'pricingProviderIds':[_0x5a09f8(0x4e9,0x531,0x7b7,0x453)],'matchKind':_0x5a09f8(0x5e,0x30a,-0x8f,0x442)},'gemma-4-31b-it:free':{'modelId':_0x16b4a2(0x284,0x2fe,0x6f,-0x182),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0xca,-0x9c,-0x127,0x1a)],'matchKind':'model-unique'},'gemma-4-E4B-it-IQ4_XS':{'modelId':_0x5a09f8(-0x61,0x117,0x448,0x28),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x10a,0x74,0x22a,0xae)],'matchKind':_0x5a09f8(0x2b6,0x30a,0x595,0x615)},'gemma-4-E4B-it-MLX-4bit':{'modelId':_0x5a09f8(0x54,0x287,0x124,-0x11c),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x37b,0x74,-0x1d4,0x3e5)],'matchKind':'model-unique'},'gemma-4-uncensored':{'modelId':_0x16b4a2(0x217,0x44d,0x36d,0x166),'rates':{'input':0.1625,'output':0.5},'pricingProviderIds':['venice'],'matchKind':'model-unique'},'gemma2-9b-it':{'modelId':_0x5a09f8(0x1ea,0x44b,0x16d,0x4e7),'rates':{'input':0.01,'output':0.03},'pricingProviderIds':[_0x16b4a2(0x140,0x546,0x4cb,0x86b)],'matchKind':_0x16b4a2(0x46f,0x5e7,0x369,0x14c)},'gemma4-26b':{'modelId':_0x5a09f8(0x208,0x464,0x177,0x53b),'rates':{'input':0.1,'output':0.5},'pricingProviderIds':[_0x16b4a2(0x323,-0x73,0x106,-0x1fa)],'matchKind':_0x5a09f8(0x2e7,0x30a,0x444,-0xae)},'gemma4-31b':{'modelId':_0x16b4a2(-0x1bb,0x185,0x4a,-0x97),'rates':{'input':0.4,'output':0x1},'pricingProviderIds':[_0x16b4a2(0x7f8,0x221,0x498,0x100)],'matchKind':_0x16b4a2(0x289,0x6a4,0x369,0xff)},'glm-4':{'modelId':_0x5a09f8(0x46d,0x56f,0x1ec,0x856),'rates':{'input':14.994,'output':14.994},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'glm-4-32b-0414-128k':{'modelId':'glm-4-32b-0414-128k','rates':{'input':0.1,'output':0.1},'pricingProviderIds':['llmgateway'],'matchKind':_0x5a09f8(0x11,0x30a,0x1ec,0x3c4)},'glm-4-5-flash':{'modelId':'glm-4-5-flash','rates':{'input':0x0,'output':0x0},'pricingProviderIds':['empiriolabs'],'matchKind':'model-unique'},'glm-4-7-flash':{'modelId':_0x16b4a2(0x3f4,0x440,0x3c2,0x381),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['empiriolabs'],'matchKind':_0x5a09f8(0x271,0x30a,0x44e,0x33b)},'glm-4-7-flash:free':{'modelId':_0x5a09f8(-0x14c,0x1f4,0x19b,0x81),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['kenari'],'matchKind':_0x16b4a2(0x2b1,0x6ba,0x369,-0x4b)},'glm-4-air':{'modelId':_0x16b4a2(0x10b,0x64a,0x40f,0xda),'rates':{'input':0.2006,'output':0.2006},'pricingProviderIds':[_0x5a09f8(0x2c1,-0x34,0xaa,0x295)],'matchKind':'model-unique'},'glm-4-air-0111':{'modelId':'glm-4-air-0111','rates':{'input':0.1394,'output':0.1394},'pricingProviderIds':[_0x16b4a2(-0x238,0x12c,0x2b,-0x20d)],'matchKind':_0x16b4a2(0x5fb,0x178,0x369,0x42c)},'glm-4-airx':{'modelId':_0x16b4a2(0x31b,-0x317,-0x46,-0x347),'rates':{'input':2.006,'output':2.006},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x655,0x30a,0x3a6,0x2ae)},'glm-4-flash':{'modelId':_0x5a09f8(-0x1d4,0x1ee,0xcd,0x98),'rates':{'input':0.1003,'output':0.1003},'pricingProviderIds':[_0x5a09f8(0x359,-0x34,0x16b,-0x309)],'matchKind':_0x16b4a2(0x1e0,0x39b,0x369,0x242)},'glm-4-long':{'modelId':_0x5a09f8(0x17b,0x114,-0x92,-0x27f),'rates':{'input':0.2006,'output':0.2006},'pricingProviderIds':[_0x16b4a2(0x277,-0x224,0x2b,-0x1e6)],'matchKind':_0x16b4a2(0x39,0x1db,0x369,0x71)},'glm-4-plus':{'modelId':_0x16b4a2(0x4e4,0x12f,0x2ff,0x31d),'rates':{'input':7.497,'output':7.497},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x2a8,-0x1,0x369,-0x56)},'glm-4-plus-0111':{'modelId':_0x16b4a2(0x3a3,0x459,0x59f,0x8e8),'rates':{'input':9.996,'output':9.996},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x705,0x5c,0x369,0x205)},'glm-4.1v-thinking-flash':{'modelId':'glm-4.1v-thinking-flash','rates':{'input':0.3,'output':0.3},'pricingProviderIds':[_0x5a09f8(0x190,-0x34,0x2a2,-0x384)],'matchKind':'model-unique'},'glm-4.1v-thinking-flashx':{'modelId':'glm-4.1v-thinking-flashx','rates':{'input':0.3,'output':0.3},'pricingProviderIds':[_0x5a09f8(0x2d6,-0x34,-0x16a,-0x356)],'matchKind':'model-unique'},'glm-4.5-flash':{'modelId':_0x5a09f8(0x5ce,0x4e7,0x514,0x31f),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x5a09f8(-0x157,0x17b,0xd5,0x40a),_0x16b4a2(0x275,0x642,0x5aa,0x7f6)],'matchKind':_0x5a09f8(-0x98,0x102,0x1b4,-0x188)},'glm-4.5-flash:free':{'modelId':_0x5a09f8(0x2e3,0x37,-0x38d,-0xf6),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x216,-0x186,-0x371,-0x425)],'matchKind':'model-unique'},'glm-4.6v-flashx':{'modelId':_0x5a09f8(0x357,0x90,0x420,0x90),'rates':{'input':0.04,'output':0.4,'cacheRead':0.004},'pricingProviderIds':['llmgateway'],'matchKind':_0x16b4a2(0x9,0x6fa,0x369,-0x32)},'glm-4.7-free':{'modelId':_0x16b4a2(0x338,0x28c,0xa5,0x99),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x5a09f8(0x394,0x82,0x2a7,0x226)],'matchKind':_0x16b4a2(0x5c3,0x99,0x369,0x9)},'glm-5-free':{'modelId':_0x5a09f8(-0x1b8,0x76,0x139,-0x288),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':['opencode'],'matchKind':'model-unique'},'glm-5.2-fast':{'modelId':'glm-5.2-fast','rates':{'input':1.45,'output':4.5,'cacheRead':0.3625},'pricingProviderIds':[_0x16b4a2(-0xc3,0x2b3,0x6c,0x287)],'matchKind':'model-unique'},'glm-5.2-flex':{'modelId':_0x5a09f8(-0x219,0x136,0x114,-0x7c),'rates':{'input':0.725,'output':2.25,'cacheRead':0.18125},'pricingProviderIds':[_0x16b4a2(0x4d,0x3cf,0x6c,-0x1e4)],'matchKind':_0x16b4a2(0x31b,0x4ff,0x369,0x678)},'glm-5.2-nitro':{'modelId':_0x5a09f8(-0x17b,-0x106,-0x12e,-0x2f0),'rates':{'input':0.8,'output':2.4},'pricingProviderIds':[_0x5a09f8(0x141,0xd5,-0x1ea,0x2df)],'matchKind':_0x16b4a2(0x4c6,0x587,0x369,0x1b3)},'glm-5.2-short':{'modelId':_0x5a09f8(0x3de,0x2bd,-0xd2,0x428),'rates':{'input':1.45,'output':4.5,'cacheRead':0.3625},'pricingProviderIds':[_0x16b4a2(0x300,-0x344,0x6c,0x306)],'matchKind':_0x16b4a2(0x34a,0x41c,0x369,0x300)},'glm-5.2-short-fast':{'modelId':_0x5a09f8(0xcb,-0xff,-0x160,-0x4e),'rates':{'input':1.45,'output':4.5,'cacheRead':0.3625},'pricingProviderIds':[_0x5a09f8(-0x331,0xd,0x107,0x377)],'matchKind':_0x16b4a2(0x108,0x2e1,0x369,0x6ff)},'glm-5.2-short-fast-flex':{'modelId':_0x16b4a2(0x4f7,0x688,0x4e4,0x39f),'rates':{'input':0.725,'output':2.25,'cacheRead':0.18125},'pricingProviderIds':[_0x5a09f8(0x2d7,0xd,-0x2c2,-0x395)],'matchKind':_0x16b4a2(0x2a4,0x6d0,0x369,0x3f4)},'glm-5.2-short-flex':{'modelId':'glm-5.2-short-flex','rates':{'input':0.725,'output':2.25,'cacheRead':0.18125},'pricingProviderIds':['neuralwatt'],'matchKind':_0x5a09f8(0x130,0x30a,0x37d,0x55d)},'glm-5.2:free':{'modelId':_0x16b4a2(0x2ba,0x2cc,0x499,0x833),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['unorouter'],'matchKind':'model-unique'},'glm-for-coding':{'modelId':_0x16b4a2(0x2b3,0x328,-0x65,0x96),'rates':{'input':0.086,'output':0.343},'pricingProviderIds':[_0x16b4a2(0x12b,0x6cf,0x3a3,0x1f5)],'matchKind':_0x5a09f8(0x304,0x30a,0x229,0x68f)},'glm-z1-air':{'modelId':_0x16b4a2(0x34,-0x335,-0x33,0x341),'rates':{'input':0.07,'output':0.07},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x180,0x30a,0x2de,-0x19)},'glm-z1-airx':{'modelId':_0x16b4a2(-0xae,0xad,0xcd,-0x127),'rates':{'input':0.7,'output':0.7},'pricingProviderIds':[_0x5a09f8(0x2a8,-0x34,0x45,0x1f5)],'matchKind':_0x5a09f8(0x321,0x30a,0xf0,0x3ac)},'glm-zero-preview':{'modelId':_0x5a09f8(-0x13a,-0x1bb,-0xd4,-0xae),'rates':{'input':1.802,'output':1.802},'pricingProviderIds':[_0x5a09f8(0x385,-0x34,-0x5a,0x240)],'matchKind':_0x16b4a2(-0x3c,0x13,0x369,0x446)},'glm5.2-fast':{'modelId':_0x16b4a2(0xc3,0x397,0x1d4,0x44e),'rates':{'input':0x3,'output':10.25,'cacheRead':0.5,'cacheWrite':0x0},'pricingProviderIds':[_0x16b4a2(0x23e,0x32,0x1e,0x2ff)],'matchKind':_0x5a09f8(0x4bd,0x30a,0x5e8,0x3ff)},'global.anthropic.claude-fable-5':{'modelId':_0x5a09f8(0x395,0x3b7,0x2fc,0x408),'rates':{'input':0xa,'output':0x32,'cacheRead':0x1,'cacheWrite':12.5},'pricingProviderIds':[_0x16b4a2(0x2f4,0x621,0x2aa,0x467)],'matchKind':_0x5a09f8(0x4a4,0x30a,0x22e,0x5d3)},'global.anthropic.claude-haiku-4-5-20251001-v1:0':{'modelId':_0x5a09f8(0x7f4,0x47d,0x76e,0x44f),'rates':{'input':0x1,'output':0x5,'cacheRead':0.1,'cacheWrite':1.25},'pricingProviderIds':[_0x16b4a2(0x307,0x43,0x2aa,0x61e)],'matchKind':_0x5a09f8(0x6cd,0x30a,-0xa2,0x28d)},'global.anthropic.claude-opus-4-5-20251101-v1:0':{'modelId':'global.anthropic.claude-opus-4-5-20251101-v1:0','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x5a09f8(-0x22,0x24b,0xe2,0x2ec)],'matchKind':_0x16b4a2(0x492,0x38a,0x369,0x5e9)},'global.anthropic.claude-opus-4-6-v1':{'modelId':_0x16b4a2(-0x444,-0x184,-0xb2,-0x1b1),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x16b4a2(0x3c4,0x55a,0x2aa,0x1cf)],'matchKind':_0x16b4a2(0x1a8,0x5c3,0x369,0x479)},'global.anthropic.claude-opus-4-7':{'modelId':_0x16b4a2(0x273,0x725,0x40c,0x707),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x16b4a2(0x129,-0x59,0x2aa,0x487)],'matchKind':_0x16b4a2(0x660,0x1ad,0x369,0x50d)},'global.anthropic.claude-opus-4-8':{'modelId':'global.anthropic.claude-opus-4-8','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x5a09f8(0x5b2,0x24b,0x4ba,0x49d)],'matchKind':_0x16b4a2(0x39e,0x1c,0x369,0x349)},'global.anthropic.claude-opus-5':{'modelId':_0x5a09f8(-0x9d,0x2f1,0x15b,0x91),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x16b4a2(0x177,0x153,0x2aa,0x61f)],'matchKind':_0x16b4a2(0x22c,0x375,0x369,0x42b)},'global.anthropic.claude-sonnet-4-5-20250929-v1:0':{'modelId':_0x5a09f8(0x636,0x4b3,0x18e,0x10c),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':['amazon-bedrock'],'matchKind':'model-unique'},'global.anthropic.claude-sonnet-4-6':{'modelId':'global.anthropic.claude-sonnet-4-6','rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x5a09f8(0x277,0x30a,0xb6,0x173)},'global.anthropic.claude-sonnet-5':{'modelId':'global.anthropic.claude-sonnet-5','rates':{'input':0x2,'output':0xa,'cacheRead':0.2,'cacheWrite':2.5},'pricingProviderIds':[_0x5a09f8(0x3af,0x24b,0x207,0x46c)],'matchKind':'model-unique'},'google-gemma-3-27b-it':{'modelId':_0x5a09f8(0x32f,0x30c,0x21d,0x1e4),'rates':{'input':0.12,'output':0.2},'pricingProviderIds':[_0x5a09f8(0x49e,0x543,0x431,0x276)],'matchKind':_0x5a09f8(0x69d,0x30a,0x6a8,0x1a7)},'google-gemma-4-26b-a4b-it':{'modelId':'google-gemma-4-26b-a4b-it','rates':{'input':0.13,'output':0.4,'cacheRead':0.05},'pricingProviderIds':[_0x16b4a2(0x7c1,0x72f,0x5a2,0x89f)],'matchKind':_0x5a09f8(-0x55,0x30a,0x36c,0x3a5)},'google-gemma-4-31b-it':{'modelId':_0x5a09f8(-0x1dc,0x8,-0x112,-0x80),'rates':{'input':0.12,'output':0.36,'cacheRead':0.09},'pricingProviderIds':[_0x5a09f8(0x615,0x543,0x55f,0x678)],'matchKind':_0x5a09f8(0xd5,0x30a,0x5e9,0x1a2)},'google.gemma-3-12b-it':{'modelId':_0x5a09f8(-0x2ab,0x80,-0x2b1,0xf8),'rates':{'input':0.049999999999999996,'output':0.09999999999999999},'pricingProviderIds':[_0x5a09f8(0x4e5,0x24b,0x285,-0x9b)],'matchKind':_0x5a09f8(0xf7,0x30a,0x40e,0x393)},'google.gemma-3-27b-it':{'modelId':_0x16b4a2(0x17d,0xdb,0x461,0x7d9),'rates':{'input':0.12,'output':0.2},'pricingProviderIds':[_0x5a09f8(0x3f8,0x24b,0x3d7,-0x27)],'matchKind':_0x16b4a2(0x89,0x3c0,0x369,0x620)},'google.gemma-3-4b-it':{'modelId':_0x16b4a2(0x353,0x706,0x5e5,0x3da),'rates':{'input':0.04,'output':0.08},'pricingProviderIds':[_0x16b4a2(0x19a,0x631,0x2aa,0x144)],'matchKind':_0x16b4a2(0x131,0x34c,0x369,0x4f0)},'google/diffusiongemma-26B-A4B-it':{'modelId':_0x16b4a2(-0x19c,0x131,-0x178,0x20),'rates':{'input':0.5,'output':0.5,'cacheRead':0.5,'cacheWrite':0.5},'pricingProviderIds':['pioneer'],'matchKind':_0x16b4a2(0x453,0x131,0x369,0x1cf)},'google/gemini-2.0-flash':{'modelId':'google/gemini-2.0-flash','rates':{'input':0.1,'output':0.42},'pricingProviderIds':['poe'],'matchKind':'model-unique'},'google/gemini-2.0-flash-001':{'modelId':'google/gemini-2.0-flash-001','rates':{'input':0.1,'output':0.4,'cacheRead':0.025,'cacheWrite':0.083333},'pricingProviderIds':[_0x16b4a2(0x708,0x342,0x592,0x61c)],'matchKind':'model-unique'},'google/gemini-2.0-flash-lite':{'modelId':_0x16b4a2(0x587,0x576,0x4d0,0x7a8),'rates':{'input':0.052,'output':0.21},'pricingProviderIds':['poe'],'matchKind':'model-unique'},'google/gemini-2.0-flash-lite-001':{'modelId':_0x5a09f8(0x472,0x1ad,0x126,0x3d7),'rates':{'input':0.075,'output':0.3},'pricingProviderIds':[_0x5a09f8(0x505,0x533,0x49c,0x519)],'matchKind':_0x5a09f8(0x42a,0x30a,0x2ec,0x2a5)},'google/gemini-2.5-flash-lite-preview-09-2025':{'modelId':_0x5a09f8(-0x148,0x63,-0x14c,0x6f),'rates':{'input':0.1,'output':0.4,'reasoning':0.4,'cacheRead':0.01,'cacheWrite':0.083333},'pricingProviderIds':[_0x16b4a2(0x6c2,0x2de,0x592,0x847)],'matchKind':'model-unique'},'google/gemini-2.5-pro-preview':{'modelId':_0x16b4a2(0x3d6,0xe,0x3ae,0x625),'rates':{'input':1.25,'output':0xa,'reasoning':0xa,'cacheRead':0.125,'cacheWrite':0.375},'pricingProviderIds':[_0x16b4a2(0x738,0x88d,0x592,0x5dd),_0x16b4a2(0x15c,0x3b0,0xcc,0x472)],'matchKind':_0x16b4a2(0x9e,-0x1ab,0x161,0x295)},'google/gemini-2.5-pro-preview-05-06':{'modelId':'google/gemini-2.5-pro-preview-05-06','rates':{'input':1.25,'output':0xa,'reasoning':0xa,'cacheRead':0.125,'cacheWrite':0.375},'pricingProviderIds':['kilo',_0x16b4a2(-0x1e2,0x1ff,0xcc,0x7d)],'matchKind':_0x5a09f8(0x201,0x102,-0x59,-0xfb)},'google/gemini-3-flash-preview-thinking':{'modelId':'google/gemini-3-flash-preview-thinking','rates':{'input':0.5,'output':0x3},'pricingProviderIds':[_0x5a09f8(-0x3a5,-0x34,-0x13a,0x2b9)],'matchKind':'model-unique'},'google/gemini-3.1-pro':{'modelId':_0x5a09f8(-0x207,0x1ac,-0x135,-0x1d3),'rates':{'input':0x2,'output':0xc,'cacheRead':0.2},'pricingProviderIds':[_0x5a09f8(-0xf2,-0x1b8,-0x21a,-0x99)],'matchKind':_0x16b4a2(0x467,0x59c,0x369,0x180)},'google/gemini-3.1-pro-preview-high':{'modelId':'google/gemini-3.1-pro-preview-high','rates':{'input':0x2,'output':0xc,'cacheRead':0.2},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x410,0x30a,0x1d1,0x552)},'google/gemini-3.1-pro-preview-low':{'modelId':_0x5a09f8(0x4b9,0x541,0x41c,0x7e1),'rates':{'input':0x2,'output':0xc,'cacheRead':0.2},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x478,0x2e4,0x369,0xc2)},'google/gemini-3.5-flash-thinking':{'modelId':_0x5a09f8(0x23c,0x1f,-0x76,-0x306),'rates':{'input':1.5,'output':0x9,'cacheRead':0.15},'pricingProviderIds':[_0x16b4a2(0x305,-0x1e6,0x2b,-0x324)],'matchKind':_0x16b4a2(0x181,0x213,0x369,0x6d9)},'google/gemini-deep-research':{'modelId':_0x5a09f8(0x3aa,0x48a,0x672,0xef),'rates':{'input':1.6,'output':9.6},'pricingProviderIds':[_0x5a09f8(0x13e,-0x1b8,-0x430,0x163)],'matchKind':_0x5a09f8(0x11d,0x30a,0x470,0x4a1)},'google/gemini-flash-1.5':{'modelId':'google/gemini-flash-1.5','rates':{'input':0.0748,'output':0.306},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x3f5,0x33d,0x369,0x2e0)},'google/gemini-omni-flash-preview':{'modelId':'google/gemini-omni-flash-preview','rates':{'input':1.5,'output':0x9},'pricingProviderIds':[_0x5a09f8(0x2a4,0x387,0x85,0x674)],'matchKind':_0x5a09f8(0x22,0x30a,0xcb,0x6bc)},'google/gemini-pro-latest':{'modelId':_0x5a09f8(0x4b0,0x3cd,0x685,0x15d),'rates':{'input':0x2,'output':0xc,'cacheRead':0.2},'pricingProviderIds':[_0x16b4a2(0x124,0xb4,0x2b,0x19f)],'matchKind':_0x5a09f8(0x64,0x30a,0x36d,0x1a6)},'google/gemma-2-27b-it':{'modelId':_0x16b4a2(0x6d9,0x30e,0x48c,0x321),'rates':{'input':0.65,'output':0.65},'pricingProviderIds':[_0x16b4a2(0x38f,0x58c,0x592,0x560),_0x16b4a2(-0x72,0xc7,0xcc,0x28)],'matchKind':'model-identical'},'google/gemma-2-2b-it':{'modelId':_0x5a09f8(0x21,-0x13,0x1a5,0x291),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['nvidia'],'matchKind':_0x16b4a2(0x703,0x34b,0x369,0xfa)},'google/gemma-3':{'modelId':_0x5a09f8(0x400,0x574,0x7bb,0x576),'rates':{'input':0.15,'output':0.3},'pricingProviderIds':[_0x16b4a2(0x50c,0x384,0x26f,-0x8f)],'matchKind':_0x16b4a2(0x66f,0x10e,0x369,0x1b1)},'google/gemma-3-4b-pt':{'modelId':_0x5a09f8(0x5ba,0x4d7,0x22f,0x53f),'rates':{'input':0.15,'output':0.15,'cacheRead':0.15,'cacheWrite':0.15},'pricingProviderIds':[_0x5a09f8(0x443,0x525,0x387,0x7f4)],'matchKind':_0x5a09f8(-0x24,0x30a,0x84,0x2fe)},'google/gemma-3n-E4B-it':{'modelId':_0x16b4a2(0x23d,0x159,0x208,0x20a),'rates':{'input':0.06,'output':0.12},'pricingProviderIds':['togetherai'],'matchKind':'model-unique'},'google/gemma-3n-e2b-it':{'modelId':'google/gemma-3n-e2b-it','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x2bb,0x3b,0x3ef,-0x1b1)],'matchKind':_0x16b4a2(0x5f2,0x470,0x369,0x26c)},'google/gemma-4-12B-it':{'modelId':'google/gemma-4-12B-it','rates':{'input':0.25,'output':0.25,'cacheRead':0.25,'cacheWrite':0.25},'pricingProviderIds':['pioneer'],'matchKind':_0x5a09f8(0x7c,0x30a,0x657,0x537)},'google/gemma-4-26b-a4b-it:free':{'modelId':_0x5a09f8(0x3ea,0x133,0x3e5,0x277),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x22f,0x6d,0x3a0,-0xdc)],'matchKind':_0x5a09f8(0x13c,0x30a,0x4cb,0x26b)},'google/gemma-4-26b-a4b-it:thinking':{'modelId':'google/gemma-4-26b-a4b-it:thinking','rates':{'input':0.13,'output':0.4},'pricingProviderIds':[_0x16b4a2(-0x52,0x331,0x2b,0x106)],'matchKind':_0x5a09f8(-0x31,0x30a,0x4ae,-0x57)},'google/gemma-4-31B-turbo-TEE':{'modelId':'google/gemma-4-31B-turbo-TEE','rates':{'input':0.12,'output':0.37,'cacheRead':0.06},'pricingProviderIds':['chutes'],'matchKind':_0x5a09f8(0x2d6,0x30a,0x254,0x5b4)},'google/gemma-4-31b':{'modelId':_0x16b4a2(0x61e,0x596,0x4f4,0x308),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['poe'],'matchKind':_0x16b4a2(0x3c2,0x4d0,0x369,-0x3c)},'google/gemma-4-31b-it-fp8':{'modelId':'google/gemma-4-31b-it-fp8','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x76,0x1b9,0x532,0x2f1)],'matchKind':_0x16b4a2(0x265,0x1ba,0x369,0x664)},'google/gemma-4-31b-it:free':{'modelId':_0x5a09f8(0x496,0x2b6,0x636,0x58e),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x101,0x6d,-0x1b1,0x3ef)],'matchKind':'model-unique'},'google/gemma-4-31b-it:thinking':{'modelId':_0x5a09f8(0x124,0x445,0x660,0x192),'rates':{'input':0.1,'output':0.35},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x529,0x30a,0x4e1,0x361)},'google/gemma-4-E2B-it':{'modelId':_0x5a09f8(0x6fe,0x346,0x283,0x2a4),'rates':{'input':0.1,'output':0.1,'cacheRead':0.1,'cacheWrite':0.1},'pricingProviderIds':[_0x5a09f8(0x436,0x525,0x4fa,0x54a)],'matchKind':'model-unique'},'google/gemma-4-E4B-it':{'modelId':_0x5a09f8(-0x21e,-0x4d,0xc0,-0x388),'rates':{'input':0.2,'output':0.2,'cacheRead':0.2,'cacheWrite':0.2},'pricingProviderIds':['pioneer'],'matchKind':_0x5a09f8(0x304,0x30a,0x301,0x21e)},'google/google-paligemma':{'modelId':'google/google-paligemma','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x3,0x3b,0x1b8,-0x24d)],'matchKind':_0x16b4a2(0x37e,0x39b,0x369,0x716)},'google/lyria-3-clip-preview':{'modelId':'google/lyria-3-clip-preview','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x70f,0x8ab,0x592,0x6d2),_0x16b4a2(-0x1f9,-0x12e,0xcc,-0x2b4)],'matchKind':_0x16b4a2(0x485,0x1ef,0x161,0xb8)},'google/lyria-3-pro-preview':{'modelId':_0x16b4a2(0x555,0x2f9,0x4ab,0x107),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x679,0x345,0x592,0x356),_0x5a09f8(-0x1ce,0x6d,-0x1e1,-0x2c5)],'matchKind':_0x5a09f8(0x271,0x102,0x393,-0x87)},'google/nano-banana':{'modelId':_0x16b4a2(0x34b,0x6fc,0x3c8,0x14d),'rates':{'input':0.21,'output':1.8,'cacheRead':0.021},'pricingProviderIds':[_0x5a09f8(-0x281,-0x1b8,-0x28,-0x397)],'matchKind':_0x16b4a2(0x280,0x29e,0x369,0x313)},'google/nano-banana-pro':{'modelId':_0x5a09f8(-0x2e0,-0x3f,-0x61,0x1ff),'rates':{'input':0x2,'output':0xc,'cacheRead':0.2},'pricingProviderIds':['poe'],'matchKind':_0x5a09f8(0x1ac,0x30a,0x411,0x60d)},'gpt-3.5-turbo':{'modelId':_0x5a09f8(0x24d,0x452,0x677,0x276),'rates':{'input':0.5,'output':1.5,'cacheRead':0x0},'pricingProviderIds':[_0x16b4a2(0x171,0x25a,0x5e,0x248),'openai'],'matchKind':_0x16b4a2(0x37e,0x408,0x161,0x211)},'gpt-3.5-turbo-0125':{'modelId':_0x5a09f8(0x2b8,0x599,0x8b1,0x715),'rates':{'input':0.5,'output':1.5},'pricingProviderIds':['azure','azure-cognitive-services'],'matchKind':_0x5a09f8(-0x1f5,0x102,0x47,0x471)},'gpt-3.5-turbo-0301':{'modelId':'gpt-3.5-turbo-0301','rates':{'input':1.5,'output':0x2},'pricingProviderIds':['azure','azure-cognitive-services'],'matchKind':'model-identical'},'gpt-3.5-turbo-0613':{'modelId':'gpt-3.5-turbo-0613','rates':{'input':0x3,'output':0x4},'pricingProviderIds':[_0x16b4a2(-0x2f6,-0x407,-0xaf,0x86),'azure-cognitive-services'],'matchKind':_0x16b4a2(0xd3,-0xad,0x161,0x4c)},'gpt-3.5-turbo-1106':{'modelId':_0x5a09f8(0x6d9,0x492,0x103,0x2ba),'rates':{'input':0x1,'output':0x2},'pricingProviderIds':[_0x5a09f8(-0x2c,-0x10e,0xe5,-0x3fa),_0x5a09f8(-0x485,-0xe7,-0x384,-0x21c)],'matchKind':_0x16b4a2(0x161,0xec,0x161,0x456)},'gpt-3.5-turbo-instruct':{'modelId':_0x5a09f8(0x4f,0x394,0x5d7,0x2c2),'rates':{'input':1.5,'output':0x2},'pricingProviderIds':['azure',_0x5a09f8(-0x474,-0xe7,-0xbf,-0x3f7)],'matchKind':_0x5a09f8(-0x1e0,0x102,0x151,-0xba)},'gpt-4-32k':{'modelId':_0x5a09f8(0x2d5,0x339,0x440,0xff),'rates':{'input':0x3c,'output':0x78},'pricingProviderIds':[_0x5a09f8(0x15,-0x10e,0xe3,0x1f9),_0x5a09f8(0x1f1,-0xe7,0xfc,-0x199)],'matchKind':'model-identical'},'gpt-4-turbo':{'modelId':_0x16b4a2(0x323,0x339,0x9f,0xda),'rates':{'input':0xa,'output':0x1e},'pricingProviderIds':['azure','azure-cognitive-services','llmgateway',_0x5a09f8(-0x1be,0x10f,-0x15a,0xc7)],'matchKind':_0x16b4a2(0x9b,0x1bb,0x161,-0xbb)},'gpt-4-turbo-vision':{'modelId':_0x5a09f8(0x553,0x362,0x466,0x216),'rates':{'input':0xa,'output':0x1e},'pricingProviderIds':[_0x5a09f8(-0x144,-0x10e,-0x86,0xbf),'azure-cognitive-services'],'matchKind':_0x16b4a2(-0x1f8,0x3da,0x161,0x164)},'gpt-4.1-mini-2025-04-14':{'modelId':_0x5a09f8(-0x2,0x244,0x2e8,0x500),'rates':{'input':0.39999999999999997,'output':1.5999999999999999,'cacheRead':0.09999999999999999},'pricingProviderIds':[_0x5a09f8(0x441,0x46c,0x5f2,0x6f9)],'matchKind':_0x5a09f8(0xb6,0x30a,0x378,0x1e5)},'gpt-4o-2024-05-13':{'modelId':_0x5a09f8(0x473,0x2d2,0x4f2,0x210),'rates':{'input':0x5,'output':0xf},'pricingProviderIds':[_0x16b4a2(0x221,-0x15d,0x16e,-0x1a6)],'matchKind':_0x5a09f8(-0x28,0x30a,0x5fe,0x109)},'gpt-4o-2024-08-06':{'modelId':_0x16b4a2(-0x2f,0x4cc,0x35a,0x473),'rates':{'input':2.5,'output':0xa,'cacheRead':1.25},'pricingProviderIds':['openai'],'matchKind':_0x5a09f8(0x20f,0x30a,0x63c,0x51a)},'gpt-4o-mini-search-preview':{'modelId':_0x5a09f8(-0x28e,-0x8e,-0x8f,-0x14),'rates':{'input':0.15,'output':0.6},'pricingProviderIds':[_0x16b4a2(0x73,0x28,0x5e,-0xff)],'matchKind':'model-unique'},'gpt-4o-search-preview':{'modelId':'gpt-4o-search-preview','rates':{'input':2.5,'output':0xa},'pricingProviderIds':[_0x16b4a2(0x147,0x2cf,0x5e,-0x32e)],'matchKind':_0x5a09f8(0x50a,0x30a,0x19c,0x558)},'gpt-5-1':{'modelId':_0x5a09f8(0x373,0x1f5,-0x43,0x4d),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125},'pricingProviderIds':[_0x16b4a2(-0xdb,0x2c9,0x45,0x182)],'matchKind':'model-unique'},'gpt-5-1-codex-max':{'modelId':_0x5a09f8(0x57,-0x150,0x89,-0x3c5),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125},'pricingProviderIds':[_0x5a09f8(-0xf2,-0x1a,0x25c,0x366)],'matchKind':'model-unique'},'gpt-5-1-codex-mini':{'modelId':_0x16b4a2(0x1ee,-0x10b,0x168,-0x23d),'rates':{'input':0.25,'output':0x2,'cacheRead':0.025},'pricingProviderIds':[_0x5a09f8(0x2f8,-0x1a,0x220,-0x231)],'matchKind':_0x16b4a2(0x2f5,0x3b8,0x369,0x596)},'gpt-5-2':{'modelId':'gpt-5-2','rates':{'input':1.75,'output':0xe,'cacheRead':0.175},'pricingProviderIds':[_0x16b4a2(0x1a2,0x10,0x45,-0xe8)],'matchKind':'model-unique'},'gpt-5-2-codex':{'modelId':_0x16b4a2(0x6e4,0x312,0x59d,0x3ba),'rates':{'input':1.75,'output':0xe,'cacheRead':0.175},'pricingProviderIds':[_0x16b4a2(0x165,-0x89,0x45,0x35c)],'matchKind':_0x16b4a2(0x478,0x204,0x369,0x2f1)},'gpt-5-3-codex':{'modelId':_0x16b4a2(0x18c,0x2eb,0x3ed,0x3dc),'rates':{'input':1.75,'output':0xe,'cacheRead':0.175},'pricingProviderIds':[_0x5a09f8(0xcd,0x164,-0x1ac,0x2e),_0x5a09f8(0x2f4,-0x1a,-0x33,-0x137)],'matchKind':_0x16b4a2(0x48a,0x4a6,0x161,0xad)},'gpt-5-4':{'modelId':_0x5a09f8(-0x3b7,-0xdb,-0x47e,-0xb5),'rates':{'input':2.5,'output':0xf,'cacheRead':0.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x5,'output':22.5,'cacheRead':0.5}],'pricingProviderIds':[_0x16b4a2(0x159,0x2ee,0x45,-0x2eb)],'matchKind':_0x5a09f8(0x83,0x30a,0x5b,0x10f)},'gpt-5-4-nano':{'modelId':_0x5a09f8(0x6df,0x513,0x1af,0x198),'rates':{'input':0.2,'output':1.25,'cacheRead':0.02},'pricingProviderIds':['frogbot',_0x5a09f8(-0x328,-0x1a,-0x21e,-0x1b6)],'matchKind':_0x16b4a2(-0x1a6,0x1a0,0x161,0x15)},'gpt-5-6-luna':{'modelId':_0x5a09f8(-0x1e1,0x173,0x24c,0x28a),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x343,0x6d7,0x467,0x4cc)],'matchKind':_0x16b4a2(0x209,0x6b1,0x369,0x6d3)},'gpt-5-6-sol':{'modelId':'gpt-5-6-sol','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x7c7,0x6cb,0x467,0x103)],'matchKind':_0x5a09f8(0x37c,0x30a,0x41d,0x2c0)},'gpt-5-6-terra':{'modelId':'gpt-5-6-terra','rates':{'input':0x0,'output':0x0},'pricingProviderIds':['kenari'],'matchKind':_0x5a09f8(-0x3b,0x30a,0x411,0x116)},'gpt-5-chat':{'modelId':'gpt-5-chat','rates':{'input':1.25,'output':0xa,'cacheRead':0.13},'pricingProviderIds':[_0x5a09f8(-0x114,-0x10e,-0x2c0,-0x41c),_0x5a09f8(-0x181,-0xe7,-0x177,0x25b)],'matchKind':_0x5a09f8(-0x26a,0x102,0x3de,-0x265)},'gpt-5-thinking':{'modelId':_0x16b4a2(0x48d,0x4ec,0x5e9,0x5cb),'rates':{'input':1.25,'output':0xa},'pricingProviderIds':['302ai'],'matchKind':_0x5a09f8(-0x85,0x30a,0x505,0x565)},'gpt-5.1-chat':{'modelId':'gpt-5.1-chat','rates':{'input':1.25,'output':0xa,'cacheRead':0.125},'pricingProviderIds':[_0x16b4a2(-0xe,0x1d7,-0xaf,0x134),_0x5a09f8(0x2b0,-0xe7,-0x300,0xb6)],'matchKind':'model-identical'},'gpt-5.2-chat':{'modelId':_0x5a09f8(0x262,0x57c,0x678,0x6b7),'rates':{'input':1.75,'output':0xe,'cacheRead':0.175},'pricingProviderIds':[_0x5a09f8(-0x2d5,-0x10e,0x114,-0x4cd),_0x16b4a2(0x13c,-0x3c2,-0x88,-0x2f2)],'matchKind':'model-identical'},'gpt-5.3-chat':{'modelId':_0x16b4a2(0x1be,0x9,0x1e0,-0x170),'rates':{'input':1.75,'output':0xe,'cacheRead':0.175},'pricingProviderIds':[_0x16b4a2(0x4f,0x1bd,-0xaf,-0x26e)],'matchKind':_0x5a09f8(0x203,0x30a,0x2db,0x661)},'gpt-5.3-codex-spark':{'modelId':_0x16b4a2(0x37e,0x1ad,0x49,-0x282),'rates':{'input':1.75,'output':0xe,'cacheRead':0.175},'pricingProviderIds':[_0x5a09f8(0x93,0x10f,0x39e,0x353),_0x16b4a2(0xba,0x126,0xe1,0x408)],'matchKind':_0x16b4a2(0x69,-0x179,0x161,0x287)},'gpt-5.3-codex-xhigh':{'modelId':'gpt-5.3-codex-xhigh','rates':{'input':1.75,'output':0xe},'pricingProviderIds':[_0x16b4a2(0x423,0x117,0x3c3,0x3d4)],'matchKind':_0x16b4a2(0x4bb,0x534,0x369,0x5b4)},'gpt-5.4-mini-2026-03-17':{'modelId':_0x16b4a2(-0x145,-0x7a,0x35,0x106),'rates':{'input':0.75,'output':4.5},'pricingProviderIds':[_0x16b4a2(0x513,0x6c3,0x3a3,0x3c4)],'matchKind':_0x16b4a2(0x331,0x38c,0x369,0x2b2)},'gpt-5.4-nano-2026-03-17':{'modelId':_0x16b4a2(0x7d9,0x2f8,0x4f8,0x70d),'rates':{'input':0.2,'output':1.25},'pricingProviderIds':[_0x5a09f8(0x489,0x344,0x583,0x283)],'matchKind':_0x16b4a2(0xae,0x1a3,0x369,0x6b2)},'gpt-5.4:free':{'modelId':_0x5a09f8(0x9c,0x25b,0xda,0xc4),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x132,0x9e,-0x127,-0x43f)],'matchKind':_0x16b4a2(0x6d,-0x32,0x369,0x70)},'gpt-5.5:free':{'modelId':_0x16b4a2(0x41c,0x41c,0x39a,0x3bc),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x226,-0x1d0,-0x127,-0x408)],'matchKind':_0x16b4a2(0x571,0x5b9,0x369,0x358)},'gpt-5.6':{'modelId':'gpt-5.6','rates':{'input':0x5,'output':0x1e,'cacheRead':0.5,'cacheWrite':6.25},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':0x2d,'cacheRead':0x1,'cacheWrite':12.5}],'pricingProviderIds':[_0x16b4a2(0xb1,0x46e,0x16e,0xa3)],'matchKind':_0x5a09f8(0x597,0x30a,0x2aa,-0xa4)},'gpt-chat-latest':{'modelId':_0x5a09f8(0x5ef,0x240,0x49b,0x4db),'rates':{'input':0x5,'output':0x1e,'cacheRead':0.5},'pricingProviderIds':[_0x16b4a2(-0x255,0x172,-0xaf,0x100),_0x5a09f8(-0xb0,-0xe7,-0x193,-0x348)],'matchKind':_0x16b4a2(-0x5,0x22e,0x161,-0x14a)},'gpt-image-1':{'modelId':_0x16b4a2(0x553,0x3fb,0x333,0x148),'rates':{'input':0x5,'output':0x28,'cacheRead':1.25},'pricingProviderIds':['azure'],'matchKind':'model-unique'},'gpt-image-1.5':{'modelId':'gpt-image-1.5','rates':{'input':0x5,'output':0x20,'cacheRead':1.25},'pricingProviderIds':['azure'],'matchKind':_0x5a09f8(0x2b1,0x30a,0x113,0x377)},'gpt-oss-safeguard-120b':{'modelId':'gpt-oss-safeguard-120b','rates':{'input':0.15,'output':0.6},'pricingProviderIds':[_0x5a09f8(0x6d3,0x439,0x372,0x16e)],'matchKind':_0x16b4a2(0x4c1,0x49a,0x369,0x104)},'gpt-realtime-2.1':{'modelId':_0x16b4a2(0x257,-0x453,-0xad,0x7),'rates':{'input':0x4,'output':0x18,'cacheRead':0.4,'inputAudio':0x20,'outputAudio':0x40},'pricingProviderIds':[_0x16b4a2(-0x1fc,0x221,0x16e,0x31d)],'matchKind':'model-unique'},'greg-1-mini':{'modelId':_0x5a09f8(-0xa7,0xfc,0x1fa,0x1),'rates':{'input':0.07,'output':0.15,'cacheRead':0.01},'pricingProviderIds':['crof'],'matchKind':_0x5a09f8(-0x5f,0x30a,0x4cb,0x2fc)},'greg-2-super':{'modelId':_0x5a09f8(0x1b1,0x245,-0x173,0x3f1),'rates':{'input':1.5,'output':0x5,'cacheRead':0.25},'pricingProviderIds':[_0x16b4a2(0x139,0x621,0x43a,0x17f)],'matchKind':'model-unique'},'greg-2-ultra':{'modelId':_0x16b4a2(0x25c,0xf2,0xa3,-0x9),'rates':{'input':0x3,'output':0xa,'cacheRead':0.5},'pricingProviderIds':[_0x5a09f8(0x53c,0x3db,0x52a,0x25e)],'matchKind':'model-unique'},'greg-rp':{'modelId':_0x16b4a2(0x1da,-0xe1,0x2cd,0x7b),'rates':{'input':0.1,'output':0.3,'cacheRead':0.02},'pricingProviderIds':[_0x5a09f8(0x5eb,0x3db,0x2f6,0x3ae)],'matchKind':_0x16b4a2(0x12d,0x654,0x369,0x373)},'grok-3':{'modelId':_0x5a09f8(0xb,0x79,-0x9f,-0x85),'rates':{'input':0x3,'output':0xf,'cacheRead':0.75},'pricingProviderIds':['helicone'],'matchKind':_0x16b4a2(0x63,0x377,0x369,0x350)},'grok-3-mini':{'modelId':_0x16b4a2(-0xa0,-0xf0,0xdc,-0x117),'rates':{'input':0.3,'output':0.5,'cacheRead':0.075},'pricingProviderIds':['helicone'],'matchKind':_0x5a09f8(0x6c6,0x30a,0x66d,0x4ff)},'grok-4':{'modelId':_0x5a09f8(0x225,0x2e2,0x1a6,0x270),'rates':{'input':0x3,'output':0xf,'cacheRead':0.75},'pricingProviderIds':['helicone',_0x5a09f8(0x87,-0x1,0x33d,-0x3c2)],'matchKind':'model-identical'},'grok-4-20':{'modelId':_0x16b4a2(0x341,-0x234,0x4e,-0x342),'rates':{'input':1.42,'output':2.83,'cacheRead':0.23},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.83,'output':5.67,'cacheRead':0.45}],'pricingProviderIds':[_0x5a09f8(0x565,0x543,0x528,0x5f3)],'matchKind':'model-unique'},'grok-4-20-beta-0309-non-reasoning':{'modelId':_0x16b4a2(0x94,0x2c1,0x1b2,0x3b0),'rates':{'input':0x2,'output':0x6,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.5,'output':0x5,'cacheRead':0.4}],'pricingProviderIds':['llmgateway'],'matchKind':_0x5a09f8(0x690,0x30a,0x20,0x475)},'grok-4-20-beta-0309-reasoning':{'modelId':_0x5a09f8(0xe2,-0x55,-0xc6,0x187),'rates':{'input':0x2,'output':0x6,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.5,'output':0x5,'cacheRead':0.4}],'pricingProviderIds':[_0x5a09f8(0x230,-0x1,-0x1fd,-0x1bd)],'matchKind':_0x16b4a2(0x3af,-0x33,0x369,0x612)},'grok-4-20-multi-agent':{'modelId':_0x5a09f8(-0x25c,0x167,0x23e,0x1c),'rates':{'input':1.42,'output':2.83,'cacheRead':0.23},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.83,'output':5.67,'cacheRead':0.45}],'pricingProviderIds':[_0x5a09f8(0x26d,0x543,0x4dd,0x4b3)],'matchKind':_0x16b4a2(0x3a0,0x54a,0x369,0x138)},'grok-4.1':{'modelId':_0x5a09f8(0x14e,0x142,0x47a,0x4de),'rates':{'input':0x2,'output':0xa},'pricingProviderIds':[_0x16b4a2(0x548,0x71f,0x3a3,0x72d)],'matchKind':_0x16b4a2(0x56d,0xd0,0x369,0x14)},'grok-4.20-0309-non-reasoning':{'modelId':_0x16b4a2(-0xd1,0x5ed,0x2d7,0x1f8),'rates':{'input':1.25,'output':2.5,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.5,'output':0x5,'cacheRead':0.4}],'pricingProviderIds':[_0x16b4a2(0x36b,-0x249,-0x49,0x1a6)],'matchKind':'model-unique'},'grok-4.20-0309-reasoning':{'modelId':'grok-4.20-0309-reasoning','rates':{'input':1.25,'output':2.5,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.5,'output':0x5,'cacheRead':0.4}],'pricingProviderIds':[_0x16b4a2(-0x98,-0x207,-0x49,0x7b)],'matchKind':'model-unique'},'grok-4.20-beta-0309-non-reasoning':{'modelId':_0x5a09f8(-0x1dc,-0x9d,-0x16,-0xd3),'rates':{'input':0x2,'output':0x6},'pricingProviderIds':[_0x5a09f8(0x3f5,0x344,0x4f,0x2d6)],'matchKind':_0x5a09f8(0xd3,0x30a,0x2ed,0x696)},'grok-4.20-beta-0309-reasoning':{'modelId':_0x16b4a2(0x350,0x553,0x3f9,0x38d),'rates':{'input':0x2,'output':0x6},'pricingProviderIds':[_0x5a09f8(0x488,0x344,0x575,0x5f0)],'matchKind':_0x5a09f8(0x113,0x30a,0x531,0x66f)},'grok-4.20-multi-agent-0309':{'modelId':_0x16b4a2(-0x2b2,0x177,-0x68,0x3f),'rates':{'input':1.25,'output':2.5,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.5,'output':0x5,'cacheRead':0.4}],'pricingProviderIds':[_0x16b4a2(-0x163,0x19c,-0x49,0x3f)],'matchKind':_0x16b4a2(0x360,0x722,0x369,0x1db)},'grok-4.20-multi-agent-beta-0309':{'modelId':_0x16b4a2(-0x6,0x285,-0xe9,-0x2b8),'rates':{'input':0x2,'output':0x6},'pricingProviderIds':[_0x5a09f8(0x1cd,0x344,0x101,0xc3)],'matchKind':_0x5a09f8(0x4f4,0x30a,0x5f6,0x68b)},'grok-code':{'modelId':'grok-code','rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x16b4a2(0x445,0x73,0xe1,0x471)],'matchKind':_0x5a09f8(-0x4e,0x30a,0x2cc,0x3bd)},'grok/grok-4.3':{'modelId':_0x5a09f8(-0x172,0x1df,0x1b7,-0xfc),'rates':{'input':1.25,'output':2.5,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.5,'output':0x5,'cacheRead':0.4}],'pricingProviderIds':[_0x16b4a2(0x31,-0x2d4,0x38,-0x1f5)],'matchKind':_0x5a09f8(-0x99,0x30a,0x1ee,0x2ba)},'groq-llama-4-maverick-17b-128e-instruct':{'modelId':_0x16b4a2(0x610,0x57d,0x568,0x29b),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x7c,0x183,-0x1a9,-0x239)],'matchKind':_0x16b4a2(0x1c5,0x318,0x369,0x6ae)},'gte-large-en-v1.5':{'modelId':'gte-large-en-v1.5','rates':{'input':0.09,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x181,-0x7c,-0x332,0xb6)],'matchKind':_0x5a09f8(0x457,0x30a,0x116,0x686)},'happyhorse-1.1-i2v':{'modelId':_0x5a09f8(-0x4ef,-0x187,-0x1f7,-0xc5),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['alibaba-token-plan','alibaba-token-plan-cn'],'matchKind':'model-identical'},'happyhorse-1.1-r2v':{'modelId':'happyhorse-1.1-r2v','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x2f8,0x58d,0x54c,0x484),_0x16b4a2(0x1b2,-0x25f,-0x1c,-0x3b0)],'matchKind':_0x5a09f8(0x376,0x102,-0x1f6,-0x110)},'happyhorse-1.1-t2v':{'modelId':_0x5a09f8(0x4b8,0x2ee,0x5e9,0x1d1),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x2f3,0x58d,0x58a,0x79c),_0x5a09f8(-0x358,-0x7b,0x2d8,0xcc)],'matchKind':_0x5a09f8(-0x115,0x102,-0xf1,-0x2ae)},'hermes-2-pro-llama-3-8b':{'modelId':_0x16b4a2(-0xc,0x300,-0x3d,0x214),'rates':{'input':0.14,'output':0.14},'pricingProviderIds':['helicone'],'matchKind':_0x16b4a2(0x466,0x23e,0x369,-0x4a)},'hermes-3-llama-3.1-405b':{'modelId':_0x5a09f8(0x51c,0x47b,0x31f,0x704),'rates':{'input':1.1,'output':0x3},'pricingProviderIds':['venice'],'matchKind':_0x16b4a2(0x47b,0x469,0x369,0x57e)},'hermes-4-405b':{'modelId':_0x5a09f8(0x37b,0x71,-0x25a,-0xdb),'rates':{'input':0x1,'output':0x3},'pricingProviderIds':[_0x16b4a2(0xc2,0x11f,0x5e,0x1c0)],'matchKind':_0x5a09f8(0x34c,0x30a,0x120,0x2ff)},'hermes-high':{'modelId':_0x5a09f8(0x7b9,0x49e,0x6a7,0x797),'rates':{'input':4.998,'output':25.007},'pricingProviderIds':[_0x5a09f8(-0xb3,-0x34,-0x84,0x234)],'matchKind':_0x16b4a2(-0x2c,0x6e4,0x369,0x50)},'hermes-low':{'modelId':_0x5a09f8(0x344,0x9,0x187,0x393),'rates':{'input':0.25,'output':1.5,'cacheRead':0.025},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x5ab,0x43e,0x369,0x36a)},'hermes-medium':{'modelId':_0x5a09f8(0x3c6,0x475,0x25d,0x621),'rates':{'input':0.3,'output':1.2},'pricingProviderIds':[_0x16b4a2(0x25c,-0x4c,0x2b,-0x266)],'matchKind':'model-unique'},'hf:MiniMaxAI/MiniMax-M3':{'modelId':_0x5a09f8(-0x170,0x201,0x215,0x25b),'rates':{'input':0.6,'output':1.2,'cacheRead':0.6},'pricingProviderIds':[_0x5a09f8(0x78d,0x562,0x8ea,0x38d)],'matchKind':_0x16b4a2(0x30d,-0x33,0x369,0x35a)},'hf:Qwen/Qwen3.6-27B':{'modelId':_0x16b4a2(-0x31a,0x1b5,-0x11e,0x64),'rates':{'input':0.45,'output':3.6,'cacheRead':0.45},'pricingProviderIds':[_0x5a09f8(0x886,0x562,0x568,0x6fa)],'matchKind':_0x5a09f8(0x5d5,0x30a,0x68a,0x3fe)},'hf:moonshotai/Kimi-K2.7-Code':{'modelId':_0x5a09f8(0x23c,0x39d,0xe7,0x6c0),'rates':{'input':0.95,'output':0x4,'cacheRead':0.95},'pricingProviderIds':[_0x5a09f8(0x3cf,0x562,0x62f,0x2be)],'matchKind':_0x16b4a2(0x334,0x1a,0x369,0x63f)},'hf:nvidia/NVIDIA-Nemotron-3-Super-120B-A12B-NVFP4':{'modelId':_0x16b4a2(0x27e,0x61e,0x60c,0x7b5),'rates':{'input':0.3,'output':0x1,'cacheRead':0.3},'pricingProviderIds':[_0x5a09f8(0x5e8,0x562,0x1ba,0x368)],'matchKind':_0x16b4a2(0x397,0x5e3,0x369,0x437)},'hf:openai/gpt-oss-120b':{'modelId':_0x16b4a2(0x5c,0x2d2,-0x59,0x2e5),'rates':{'input':0.1,'output':0.1,'cacheRead':0.1},'pricingProviderIds':[_0x16b4a2(0x798,0x898,0x5c1,0x6e5)],'matchKind':'model-unique'},'hf:zai-org/GLM-4.7-Flash':{'modelId':_0x16b4a2(0x3b5,-0xab,0x217,0x428),'rates':{'input':0.1,'output':0.5,'cacheRead':0.1},'pricingProviderIds':['synthetic'],'matchKind':_0x5a09f8(0x6b,0x30a,0x538,0x1f8)},'hf:zai-org/GLM-5.2':{'modelId':_0x16b4a2(0x697,0x375,0x33a,0x180),'rates':{'input':1.4,'output':4.4,'cacheRead':1.4},'pricingProviderIds':[_0x16b4a2(0x5e6,0x5a0,0x5c1,0x52e)],'matchKind':_0x5a09f8(0x5c5,0x30a,0x4b9,0x30e)},'holo3-35b-a3b':{'modelId':_0x16b4a2(0x244,-0x134,0x84,-0x16b),'rates':{'input':0.25,'output':1.8},'pricingProviderIds':[_0x16b4a2(-0x159,-0x82,0x2b,-0xb7)],'matchKind':'model-unique'},'holo3-35b-a3b:thinking':{'modelId':_0x16b4a2(-0x7b,0x513,0x280,0x23e),'rates':{'input':0.25,'output':1.8},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x627,0xf4,0x369,0x541)},'huihui-ai/DeepSeek-R1-Distill-Llama-70B-abliterated':{'modelId':_0x16b4a2(0x101,0x212,0x3e7,0x555),'rates':{'input':0.7,'output':0.7},'pricingProviderIds':[_0x5a09f8(-0x13b,-0x34,-0x366,0x2ae)],'matchKind':_0x5a09f8(0x5d7,0x30a,-0x25,0x5dc)},'huihui-ai/DeepSeek-R1-Distill-Qwen-32B-abliterated':{'modelId':_0x16b4a2(0x384,0x45f,0x4a9,0x7ef),'rates':{'input':1.4,'output':1.4},'pricingProviderIds':[_0x16b4a2(-0x2fa,-0x256,0x2b,-0xc7)],'matchKind':_0x5a09f8(0x46d,0x30a,0x1b4,0x1c9)},'huihui-ai/Llama-3.3-70B-Instruct-abliterated':{'modelId':'huihui-ai/Llama-3.3-70B-Instruct-abliterated','rates':{'input':0.7,'output':0.7},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x689,0x30a,0x537,0x3c3)},'huihui-ai/Qwen2.5-32B-Instruct-abliterated':{'modelId':_0x5a09f8(-0x100,-0xf,0x23f,0x11b),'rates':{'input':0.7,'output':0.7},'pricingProviderIds':[_0x16b4a2(-0x11c,-0x2b1,0x2b,0x164)],'matchKind':_0x16b4a2(0x24b,0x1ac,0x369,0x1eb)},'hunyuan-2.0-instruct':{'modelId':'hunyuan-2.0-instruct','rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x5a09f8(0x3b6,0x51c,0x3be,0x678)],'matchKind':'model-unique'},'hunyuan-2.0-thinking':{'modelId':_0x5a09f8(0x217,0x2f2,0x477,0x417),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':['tencent-coding-plan'],'matchKind':_0x5a09f8(0x1fe,0x30a,0xd5,0x65e)},'hunyuan-t1':{'modelId':_0x5a09f8(0x33a,0x17d,0x1b5,0x165),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':['tencent-coding-plan'],'matchKind':_0x16b4a2(0x623,0xad,0x369,0x506)},'hunyuan-turbos':{'modelId':_0x16b4a2(-0x260,0x312,0x11e,-0x42),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x5a09f8(0x4ad,0x51c,0x508,0x5b1)],'matchKind':_0x5a09f8(0x4a3,0x30a,0x3f8,0x562)},'hunyuan-turbos-20250226':{'modelId':_0x16b4a2(0x353,0x47d,0x2a8,0x64e),'rates':{'input':0.187,'output':0.374},'pricingProviderIds':[_0x16b4a2(-0x364,-0x2f9,0x2b,-0x36b)],'matchKind':_0x16b4a2(0x521,0x179,0x369,0x265)},'hy3-free':{'modelId':'hy3-free','rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x5a09f8(-0x2bf,0x82,-0x5c,-0x33e)],'matchKind':'model-unique'},'hy3-preview-free':{'modelId':_0x16b4a2(0x97,0x219,0x3bc,0x263),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':['opencode'],'matchKind':_0x16b4a2(0x258,0x4fe,0x369,0x512)},'ibm-granite/granite-4.1-8b':{'modelId':_0x5a09f8(0xff,0x162,0x28a,-0x1cb),'rates':{'input':0.05,'output':0.1,'cacheRead':0.05},'pricingProviderIds':[_0x5a09f8(0x6af,0x533,0x874,0x2e4),_0x5a09f8(-0xa7,-0x34,0x169,-0x1c),_0x5a09f8(0x319,0x6d,-0x206,0x1d1),_0x5a09f8(0x7ee,0x486,0x1de,0x175)],'matchKind':_0x16b4a2(0x4e3,0x1bb,0x161,-0x191)},'inception/mercury-coder-small':{'modelId':_0x16b4a2(0xfe,0x355,-0x38,0x145),'rates':{'input':0.25,'output':0x1},'pricingProviderIds':['vercel'],'matchKind':'model-unique'},'inclusionAI/Ling-flash-2.0':{'modelId':_0x16b4a2(-0xe7,0x26d,0x2ae,-0xc9),'rates':{'input':0.14,'output':0.57},'pricingProviderIds':[_0x5a09f8(0x1b9,0x48c,0x405,0x216),_0x5a09f8(0x51c,0x45e,0x7bd,0x346)],'matchKind':'model-identical'},'inclusionai/ling-1t':{'modelId':_0x16b4a2(0x2d6,0x26c,0x2cf,0x3a9),'rates':{'input':0.56,'output':2.24,'cacheRead':0.11},'pricingProviderIds':[_0x5a09f8(0x29e,-0x115,0x288,-0x7c)],'matchKind':'model-unique'},'inclusionai/ling-3.0-flash-free':{'modelId':_0x5a09f8(-0x15e,0xf3,-0x95,0x205),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x297,0x387,0x516,0x69e)],'matchKind':'model-unique'},'inclusionai/ling-3.0-flash:free':{'modelId':_0x16b4a2(0x44a,0x4a3,0x24b,-0xb4),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0xa5,0x320,0xcc,0x1c7)],'matchKind':_0x16b4a2(0x28,0x2ee,0x369,0x59e)},'inclusionai/ring-1t':{'modelId':_0x5a09f8(0x4ee,0x2c3,0x16a,0x545),'rates':{'input':0.56,'output':2.24,'cacheRead':0.11},'pricingProviderIds':['zenmux'],'matchKind':_0x16b4a2(0x1da,-0x6,0x369,0x41d)},'inflatebot/MN-12B-Mag-Mell-R1':{'modelId':_0x16b4a2(-0x94,0x301,0x1b5,0x52d),'rates':{'input':0.49299999999999994,'output':0.49299999999999994},'pricingProviderIds':[_0x16b4a2(-0x192,0xef,0x2b,0xe4)],'matchKind':'model-unique'},'inkling':{'modelId':_0x16b4a2(0x2e9,0x425,0xa4,-0xa1),'rates':{'input':1.25,'output':5.0625,'cacheRead':0.2125},'pricingProviderIds':[_0x16b4a2(0x95b,0x64f,0x5a2,0x536)],'matchKind':_0x5a09f8(0x5c3,0x30a,0x463,0x522)},'intellect-3':{'modelId':_0x16b4a2(0x2d3,-0x21b,-0x6a,-0x364),'rates':{'input':0.219,'output':1.202},'pricingProviderIds':['cortecs'],'matchKind':_0x16b4a2(0x58d,0x454,0x369,0x6ad)},'interfaze/interfaze-beta':{'modelId':_0x5a09f8(-0xba,0xb4,0x2e7,0x3f0),'rates':{'input':1.5,'output':3.5},'pricingProviderIds':[_0x16b4a2(0x668,0x169,0x3e6,0x23a)],'matchKind':_0x16b4a2(0x17d,0x709,0x369,0x61f)},'intfloat/e5-mistral-7b-instruct':{'modelId':_0x5a09f8(0x38f,0x206,-0x150,0x59a),'rates':{'input':0.02,'output':0.02},'pricingProviderIds':['stackit'],'matchKind':'model-unique'},'intfloat/multilingual-e5-large-instruct':{'modelId':_0x16b4a2(-0x2da,-0x137,0x85,0x146),'rates':{'input':0.114,'output':0.114},'pricingProviderIds':[_0x16b4a2(0x4ab,0x2bd,0x11b,0x3b2)],'matchKind':_0x16b4a2(0x334,0x6b8,0x369,0x13a)},'jamba-large':{'modelId':_0x16b4a2(0x3b1,-0x1a,0x37f,0x58b),'rates':{'input':1.989,'output':7.99},'pricingProviderIds':[_0x16b4a2(0x52,-0x135,0x2b,-0xc3)],'matchKind':_0x16b4a2(0x387,0x727,0x369,0x459)},'jamba-large-1.6':{'modelId':'jamba-large-1.6','rates':{'input':1.989,'output':7.99},'pricingProviderIds':[_0x16b4a2(0x285,-0x241,0x2b,0x2e5)],'matchKind':'model-unique'},'jamba-large-1.7':{'modelId':_0x16b4a2(-0x20e,0x1,0x80,0x201),'rates':{'input':1.989,'output':7.99},'pricingProviderIds':[_0x16b4a2(0x3bc,-0x125,0x2b,0x1bd)],'matchKind':'model-unique'},'jamba-mini':{'modelId':_0x5a09f8(0x6e3,0x4d6,0x4f8,0x721),'rates':{'input':0.1989,'output':0.408},'pricingProviderIds':[_0x5a09f8(-0x17f,-0x34,-0x3bc,0x193)],'matchKind':_0x16b4a2(0x5e6,0x2e,0x369,0x294)},'jamba-mini-1.6':{'modelId':_0x16b4a2(0x281,0x400,0x393,0x608),'rates':{'input':0.1989,'output':0.408},'pricingProviderIds':[_0x5a09f8(0x34d,-0x34,0x389,-0x6d)],'matchKind':_0x5a09f8(0x378,0x30a,0x45f,0x14d)},'jamba-mini-1.7':{'modelId':_0x16b4a2(-0xc4,0x148,0x17a,0x2dd),'rates':{'input':0.1989,'output':0.408},'pricingProviderIds':[_0x16b4a2(-0x185,-0xd5,0x2b,0x3dd)],'matchKind':'model-unique'},'jp.anthropic.claude-haiku-4-5-20251001-v1:0':{'modelId':'jp.anthropic.claude-haiku-4-5-20251001-v1:0','rates':{'input':0x1,'output':0x5,'cacheRead':0.1,'cacheWrite':1.25},'pricingProviderIds':[_0x5a09f8(0x13a,0x24b,-0x14e,0x5a5)],'matchKind':_0x16b4a2(0x97,0x440,0x369,0x709)},'jp.anthropic.claude-opus-4-7':{'modelId':'jp.anthropic.claude-opus-4-7','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x16b4a2(0x625,0x3,0x2aa,0x2ab)],'matchKind':_0x16b4a2(0x5d2,-0x5b,0x369,0x53c)},'jp.anthropic.claude-opus-4-8':{'modelId':_0x5a09f8(0x2a2,0xc7,-0x50,-0x256),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x16b4a2(0x25d,0x410,0x2aa,0x190)],'matchKind':'model-unique'},'jp.anthropic.claude-opus-5':{'modelId':_0x16b4a2(0x796,0x737,0x440,0x484),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x5a09f8(-0x100,0x24b,0x51,0x137)],'matchKind':_0x5a09f8(0x4a6,0x30a,0x4f5,0x22c)},'jp.anthropic.claude-sonnet-4-5-20250929-v1:0':{'modelId':_0x16b4a2(0x2c1,0x6a9,0x5d0,0x77a),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x16b4a2(0x2bd,0xd4,0x2aa,0x5a8)],'matchKind':_0x16b4a2(0x4e7,0x1ee,0x369,0x177)},'jp.anthropic.claude-sonnet-4-6':{'modelId':_0x16b4a2(0x49e,0x4bb,0x36a,0x169),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':['amazon-bedrock'],'matchKind':'model-unique'},'jp.anthropic.claude-sonnet-5':{'modelId':_0x16b4a2(-0x26,0x135,0x248,0x8d),'rates':{'input':0x2,'output':0xa,'cacheRead':0.2,'cacheWrite':2.5},'pricingProviderIds':[_0x5a09f8(0x10a,0x24b,0x3b0,0x439)],'matchKind':_0x16b4a2(0x1b7,0x2c4,0x369,0x4ea)},'k3':{'modelId':'k3','rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x16b4a2(-0x24a,0x42e,0xf7,0x1da)],'matchKind':_0x5a09f8(-0xa5,0x30a,0x215,0x3f3)},'k3-256k':{'modelId':_0x16b4a2(0x93d,0x223,0x5a9,0x539),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x16b4a2(0x136,0x460,0xf7,-0x258)],'matchKind':_0x5a09f8(0x34f,0x30a,0xc1,0x303)},'kilo-auto/balanced':{'modelId':_0x5a09f8(-0x3ae,-0x4e,0x19a,0x35),'rates':{'input':0.6,'output':0x3},'pricingProviderIds':['kilo'],'matchKind':_0x5a09f8(0x4e,0x30a,-0x4a,0x220)},'kilo-auto/free':{'modelId':_0x5a09f8(-0x291,-0x171,-0x29f,-0xb4),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x57d,0x533,0x600,0x305)],'matchKind':_0x16b4a2(0x289,0x4d1,0x369,0x687)},'kilo-auto/frontier':{'modelId':_0x16b4a2(0x964,0x4df,0x5f7,0x510),'rates':{'input':0x5,'output':0x19},'pricingProviderIds':[_0x5a09f8(0x28e,0x533,0x821,0x3f2)],'matchKind':_0x16b4a2(0x1de,0x241,0x369,0x1cc)},'kilo-auto/small':{'modelId':_0x5a09f8(-0x249,-0x94,-0x2d6,0x20d),'rates':{'input':0.05,'output':0.4},'pricingProviderIds':[_0x5a09f8(0x87b,0x533,0x759,0x7fa)],'matchKind':_0x16b4a2(0x679,0x69f,0x369,0x6b3)},'kimi-for-coding':{'modelId':_0x16b4a2(-0x25f,0x1ca,0xf7,0x442),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x5a09f8(0x10b,0x98,0x4f,0x42f)],'matchKind':_0x5a09f8(0x5b2,0x30a,0x558,0x3de)},'kimi-for-coding-highspeed':{'modelId':'kimi-for-coding-highspeed','rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x5a09f8(0x6d,0x98,0x168,0x11a)],'matchKind':_0x5a09f8(0x39a,0x30a,0x4bd,0x47b)},'kimi-k2-0711':{'modelId':_0x5a09f8(-0xb9,0x198,-0xa7,0x35),'rates':{'input':0.5700000000000001,'output':2.3},'pricingProviderIds':[_0x5a09f8(0x77c,0x46c,0x7f7,0x15e)],'matchKind':_0x16b4a2(0x448,-0x47,0x369,0x681)},'kimi-k2-0711-preview':{'modelId':_0x5a09f8(0x430,0x3e5,0x2ba,0x48a),'rates':{'input':0.6,'output':2.5,'cacheRead':0.15},'pricingProviderIds':['moonshotai',_0x16b4a2(0x53f,0x376,0x3a8,0x746)],'matchKind':_0x16b4a2(0x153,-0x166,0x161,0x13)},'kimi-k2-5':{'modelId':'kimi-k2-5','rates':{'input':0.56,'output':3.5,'cacheRead':0.22},'pricingProviderIds':[_0x16b4a2(0x6b1,0x597,0x5a2,0x5f9)],'matchKind':_0x16b4a2(0x493,0x296,0x369,0x53c)},'kimi-k2-6:free':{'modelId':_0x16b4a2(-0x18c,0x4d,0x124,0x32b),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x683,0x19d,0x467,0x366)],'matchKind':'model-unique'},'kimi-k2-7-code-highspeed':{'modelId':_0x16b4a2(0x403,0x3ad,0x4f,-0x1c4),'rates':{'input':1.9,'output':0x8},'pricingProviderIds':[_0x16b4a2(-0x43,0xea,0x224,0x223)],'matchKind':_0x16b4a2(0x654,0x623,0x369,0x19)},'kimi-k2-7-code:free':{'modelId':_0x16b4a2(0x39a,0x111,0x25f,0x5e2),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x18d,0x408,0x353,0x264)],'matchKind':_0x5a09f8(0x27e,0x30a,0x5c1,0x3f0)},'kimi-k2-instruct':{'modelId':_0x5a09f8(0x659,0x55f,0x7d6,0x260),'rates':{'input':0.551,'output':2.646},'pricingProviderIds':[_0x16b4a2(0x1d4,0x45a,0x229,0xa3)],'matchKind':_0x5a09f8(0x675,0x30a,0x1,0x0)},'kimi-k2-instruct-fast':{'modelId':_0x16b4a2(0x177,-0xc2,0x2c6,-0x15),'rates':{'input':0.1,'output':0x2},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'kimi-k2.5-fast':{'modelId':_0x16b4a2(0x53a,0x935,0x5d9,0x33f),'rates':{'input':0.52,'output':2.59,'cacheRead':0.13},'pricingProviderIds':[_0x5a09f8(-0x27a,0xd,0x2ed,-0x1e)],'matchKind':'model-unique'},'kimi-k2.5-free':{'modelId':_0x5a09f8(0x4ea,0x38a,0x1b9,0x358),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x16b4a2(0xa5,0xbd,0xe1,0x45)],'matchKind':_0x5a09f8(0x3ec,0x30a,0x2fe,0x65a)},'kimi-k2.5-lightning':{'modelId':'kimi-k2.5-lightning','rates':{'input':0x1,'output':0x3,'cacheRead':0.2},'pricingProviderIds':['crof'],'matchKind':_0x16b4a2(0x377,0x6a6,0x369,0xb8)},'kimi-k2.6-fast':{'modelId':_0x5a09f8(0x3fe,0x5a5,0x6b9,0x3be),'rates':{'input':0.69,'output':3.22,'cacheRead':0.1725},'pricingProviderIds':[_0x5a09f8(0x2d5,0xd,0x11c,-0x167)],'matchKind':_0x16b4a2(0x391,0x4df,0x369,0x1c7)},'kimi-k2.6-flex':{'modelId':_0x5a09f8(0x736,0x573,0x47b,0x7fa),'rates':{'input':0.345,'output':1.61,'cacheRead':0.08625},'pricingProviderIds':[_0x5a09f8(-0x1db,0xd,-0x2f9,0x24f)],'matchKind':_0x5a09f8(0x4f3,0x30a,0xd6,0x200)},'kimi-k2.6-nitro':{'modelId':_0x16b4a2(-0x2b7,0x248,-0xb9,-0xd0),'rates':{'input':0.275,'output':1.1},'pricingProviderIds':[_0x16b4a2(0x456,0x98,0x134,0x1a)],'matchKind':_0x5a09f8(0x5c8,0x30a,0x672,0x1d9)},'kimi-k2.7-code-1100b':{'modelId':_0x5a09f8(0x7cb,0x57e,0x576,0x212),'rates':{'input':0.86,'output':0x3},'pricingProviderIds':[_0x5a09f8(-0x148,0xa7,0x26d,0x461)],'matchKind':_0x5a09f8(0x5d0,0x30a,0x4fd,0x1a6)},'kimi-k2.7-code-flex':{'modelId':'kimi-k2.7-code-flex','rates':{'input':0.475,'output':0x2,'cacheRead':0.11875},'pricingProviderIds':[_0x5a09f8(-0x3b0,0xd,0xb1,-0x34e)],'matchKind':'model-unique'},'kimi-k2.7-code-nitro':{'modelId':_0x16b4a2(-0x245,-0x23d,0x43,-0x36a),'rates':{'input':0.275,'output':1.1},'pricingProviderIds':['routing-run'],'matchKind':_0x16b4a2(0x604,0x3d,0x369,0x429)},'kimi-thinking-preview':{'modelId':_0x5a09f8(0x8b8,0x527,0x21c,0x5f2),'rates':{'input':31.46,'output':31.46},'pricingProviderIds':[_0x5a09f8(-0x177,-0x34,-0x34d,-0x276)],'matchKind':_0x5a09f8(0x6ca,0x30a,0x3a1,0x2db)},'kimi/kimi-k2.5':{'modelId':_0x5a09f8(0x5e7,0x43f,0x22d,0x5f5),'rates':{'input':0.6,'output':0x3,'cacheRead':0.1},'pricingProviderIds':[_0x5a09f8(0x308,0x97,0x1dc,-0x208),_0x16b4a2(-0x386,-0x2a5,0x38,0x39e)],'matchKind':_0x5a09f8(-0x62,0x102,0x483,0x3d1)},'kimi/kimi-k2.6':{'modelId':_0x5a09f8(-0x8a,-0x13c,-0x3c9,-0x31c),'rates':{'input':0.95,'output':0x4,'cacheRead':0.16},'pricingProviderIds':[_0x16b4a2(0xcf,-0x1f9,0x38,0xbe)],'matchKind':_0x16b4a2(0x8e,0x694,0x369,0x33e)},'kuaishou/kat-coder-pro-v2':{'modelId':_0x5a09f8(0x4ef,0x56d,0x38a,0x587),'rates':{'input':0.3,'output':1.2,'cacheRead':0.06},'pricingProviderIds':[_0x5a09f8(-0x2e5,-0x115,-0x185,0x299)],'matchKind':_0x16b4a2(0x369,0x681,0x369,0x6f7)},'kwaipilot/kat-coder-air-v2.5':{'modelId':_0x5a09f8(-0x197,0xc3,-0x294,0x349),'rates':{'input':0.15,'output':0.6,'cacheRead':0.03},'pricingProviderIds':[_0x16b4a2(-0x1d3,0x27c,0xcc,0x3b1),'vercel'],'matchKind':_0x5a09f8(0x2b,0x102,0x308,-0x27c)},'kwaipilot/kat-coder-pro':{'modelId':_0x5a09f8(0x5c4,0x25d,0x2ed,0xbf),'rates':{'input':0.3,'output':1.2,'cacheRead':0.06},'pricingProviderIds':['novita-ai'],'matchKind':_0x5a09f8(0x51b,0x30a,0x3cd,0x584)},'kwaipilot/kat-coder-pro-v1':{'modelId':_0x5a09f8(0x1f5,-0xd7,-0x260,-0x185),'rates':{'input':0.3,'output':1.2,'cacheRead':0.06},'pricingProviderIds':[_0x5a09f8(0x360,0x387,0x694,0x38f)],'matchKind':_0x5a09f8(-0x81,0x30a,0x51c,0x278)},'kwaipilot/kat-coder-pro-v2.5':{'modelId':_0x5a09f8(0x359,0x2ac,0x5b9,0x51a),'rates':{'input':0.74,'output':2.96,'cacheRead':0.15},'pricingProviderIds':[_0x5a09f8(0x414,0x6d,-0x1c0,0x20),_0x5a09f8(0x12a,0x387,0x6a1,0x33a)],'matchKind':_0x16b4a2(0x27a,-0x18b,0x161,-0x1ae)},'labs-devstral-small-2512':{'modelId':_0x5a09f8(0x54d,0x4af,0x478,0x174),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x54,0x1a5,0x2d9,0x1a9)],'matchKind':_0x5a09f8(0x223,0x30a,0x22c,-0x98)},'laguna-s-2.1-free':{'modelId':_0x5a09f8(-0x4db,-0x1c5,-0x52,-0x47d),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x5a09f8(-0x8b,0x82,0xe0,0x120)],'matchKind':'model-unique'},'learnlm-1.5-pro-experimental':{'modelId':_0x5a09f8(-0x1df,0xaf,-0x92,0x303),'rates':{'input':3.502,'output':10.506},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x60,0x30a,0xde,0x5a6)},'ling-2.6-flash-free':{'modelId':_0x16b4a2(0x534,0x8d0,0x5c7,0x806),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['opencode'],'matchKind':_0x5a09f8(0x12f,0x30a,0x328,0x2bb)},'ling-3.0-flash-free':{'modelId':_0x5a09f8(0x2f8,0x2a3,0x432,0x32a),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':['opencode'],'matchKind':_0x5a09f8(0x1d3,0x30a,0x258,0x1b3)},'liquid/lfm-2-24b-a2b':{'modelId':_0x5a09f8(0x440,0x41b,0x35b,0x141),'rates':{'input':0.03,'output':0.12},'pricingProviderIds':[_0x16b4a2(0x89c,0x249,0x592,0x729),_0x16b4a2(0x109,0x370,0x2b,-0x292)],'matchKind':'model-identical'},'llama-3-70b-instruct':{'modelId':_0x16b4a2(0x4dc,0x459,0x491,0x1be),'rates':{'input':0.51,'output':0.74},'pricingProviderIds':[_0x16b4a2(0x2e0,-0xe9,0x5e,-0x315)],'matchKind':_0x5a09f8(-0xc,0x30a,0x189,0x188)},'llama-3.1-405b-instruct':{'modelId':_0x16b4a2(0x3da,-0x19,0x2ab,0x60),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x39e,-0x37,0x229,-0x18f)],'matchKind':_0x16b4a2(0x6ce,0x6af,0x369,0x14)},'llama-3.1-70b-instruct':{'modelId':'llama-3.1-70b-instruct','rates':{'input':0.72,'output':0.72},'pricingProviderIds':[_0x5a09f8(0x25,-0x1,-0x59,-0x3ac)],'matchKind':_0x5a09f8(0xe8,0x30a,0x7,0x2ed)},'llama-3.1-8b-instruct-turbo':{'modelId':'llama-3.1-8b-instruct-turbo','rates':{'input':0.02,'output':0.03},'pricingProviderIds':[_0x5a09f8(0x3da,0x46c,0x13d,0x1a2)],'matchKind':_0x16b4a2(0x297,0x3d2,0x369,0x655)},'llama-3.1-nemotron-ultra-253b':{'modelId':'llama-3.1-nemotron-ultra-253b','rates':{'input':0.6,'output':1.8},'pricingProviderIds':[_0x5a09f8(-0x118,-0x1,0x35d,-0x22d)],'matchKind':_0x16b4a2(0x6f2,0x8d,0x369,0x63d)},'llama-3.2-11b-instruct':{'modelId':_0x5a09f8(0x921,0x57f,0x42d,0x38d),'rates':{'input':0.07,'output':0.33},'pricingProviderIds':['llmgateway'],'matchKind':'model-unique'},'llama-3.2-11b-vision-instruct':{'modelId':_0x5a09f8(0x2ac,0x2b5,0x209,0x413),'rates':{'input':0.37,'output':0.37},'pricingProviderIds':[_0x16b4a2(-0xec,-0x42b,-0xaf,0x140),_0x5a09f8(0x35,-0xe7,-0x3be,-0x2bd)],'matchKind':_0x16b4a2(-0x14,0x249,0x161,0x3bd)},'llama-3.2-3b':{'modelId':_0x5a09f8(-0x1bc,-0x164,0x63,0x122),'rates':{'input':0.15,'output':0.6},'pricingProviderIds':[_0x16b4a2(0x843,0x80e,0x5a2,0x255)],'matchKind':_0x5a09f8(0xed,0x30a,0x311,0x5f5)},'llama-3.2-3b-instruct':{'modelId':_0x5a09f8(0x405,0x357,0x49a,0x330),'rates':{'input':0.03,'output':0.05},'pricingProviderIds':['llmgateway'],'matchKind':_0x5a09f8(0x4e5,0x30a,0x261,0x4c6)},'llama-3.2-90b-vision-instruct':{'modelId':'llama-3.2-90b-vision-instruct','rates':{'input':2.04,'output':2.04},'pricingProviderIds':[_0x16b4a2(-0x229,0xef,-0xaf,-0x12e),_0x16b4a2(0x2d8,0x257,-0x88,0x1b4)],'matchKind':_0x16b4a2(-0xad,0x48d,0x161,0x131)},'llama-3.3-70b':{'modelId':_0x5a09f8(-0x238,-0x7,-0x22e,-0x3ae),'rates':{'input':0.7,'output':2.8},'pricingProviderIds':[_0x5a09f8(0x4a9,0x543,0x802,0x434)],'matchKind':_0x5a09f8(-0x7d,0x30a,0x5cd,0x5df)},'llama-3.3-8b-instruct':{'modelId':_0x5a09f8(0x3cf,0x551,0x314,0x72a),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x208,0x183,0x1f,0x3ee)],'matchKind':'model-unique'},'llama-4-maverick-17b-instruct':{'modelId':_0x16b4a2(0x2c3,0x31e,0x55b,0x231),'rates':{'input':0.27,'output':0.85},'pricingProviderIds':['llmgateway'],'matchKind':_0x16b4a2(0x153,0x305,0x369,0xb4)},'llama-4-scout':{'modelId':_0x16b4a2(0x47,0xac,0x374,0x2c1),'rates':{'input':0.08,'output':0.3},'pricingProviderIds':[_0x5a09f8(0x620,0x46c,0x516,0x5fc)],'matchKind':_0x5a09f8(0x560,0x30a,0x43d,0x2b8)},'llama-4-scout-17b-16e-instruct':{'modelId':_0x16b4a2(0xf6,0x409,0x3b9,0x40f),'rates':{'input':0.2,'output':0.78},'pricingProviderIds':[_0x5a09f8(-0x42a,-0x10e,-0x1a0,-0x41c),'azure-cognitive-services'],'matchKind':_0x16b4a2(0x435,-0xe4,0x161,0x2e1)},'llama-4-scout-17b-16e-instruct-fp8':{'modelId':'llama-4-scout-17b-16e-instruct-fp8','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x284,0x214,0x1e2,0x537)],'matchKind':_0x16b4a2(0x1a6,0x249,0x369,0x71)},'llama-4-scout-17b-instruct':{'modelId':_0x5a09f8(0x583,0x45c,0x42e,0xbb),'rates':{'input':0.18,'output':0.59},'pricingProviderIds':[_0x5a09f8(0x2c7,-0x1,-0x2b4,-0x323)],'matchKind':'model-unique'},'llama-guard-4':{'modelId':'llama-guard-4','rates':{'input':0.21,'output':0.21},'pricingProviderIds':[_0x5a09f8(0x335,0x46c,0x7c8,0x674)],'matchKind':_0x5a09f8(0x52f,0x30a,0x14,0x691)},'llama-prompt-guard-2-22m':{'modelId':_0x5a09f8(0x47c,0x4ef,0x38a,0x677),'rates':{'input':0.01,'output':0.01},'pricingProviderIds':['helicone'],'matchKind':_0x5a09f8(-0x5a,0x30a,0x4f4,0x278)},'llama-prompt-guard-2-86m':{'modelId':_0x5a09f8(0x344,0x59e,0x919,0x8af),'rates':{'input':0.01,'output':0.01},'pricingProviderIds':[_0x5a09f8(0x815,0x46c,0x64d,0x114)],'matchKind':_0x16b4a2(0x31c,0x44d,0x369,0x54a)},'llama3-3-70b':{'modelId':'llama3-3-70b','rates':{'input':1.75,'output':2.75},'pricingProviderIds':[_0x5a09f8(0x5d3,0x439,0x1ed,0x26d)],'matchKind':_0x5a09f8(0x1fc,0x30a,0xf5,0x310)},'llama3-8b-instruct':{'modelId':_0x16b4a2(0x273,-0x35a,-0xe7,0x1c6),'rates':{'input':0.198,'output':0.198},'pricingProviderIds':[_0x5a09f8(-0x164,-0x7c,-0x26,-0x63)],'matchKind':_0x16b4a2(0x415,0x6fc,0x369,0x469)},'llama3.3-70b-instruct':{'modelId':_0x5a09f8(-0x2e,0x18c,0x212,0x316),'rates':{'input':0.65,'output':0.65},'pricingProviderIds':['digitalocean'],'matchKind':_0x16b4a2(0x683,0x61e,0x369,0x541)},'lucidnova-rf1-100b':{'modelId':_0x5a09f8(0x418,0x4c1,0x508,0x842),'rates':{'input':0x2,'output':0x5},'pricingProviderIds':['lucidquery'],'matchKind':_0x5a09f8(0x227,0x30a,0x279,0x51e)},'lucidquery-agi-01-frontier':{'modelId':_0x16b4a2(0x2e0,0xb4,0x3fb,0x54a),'rates':{'input':4.5,'output':0x16},'pricingProviderIds':[_0x5a09f8(0x5a7,0x47f,0x223,0x322)],'matchKind':'model-unique'},'lucidquery-agi-01-swift':{'modelId':_0x5a09f8(-0x380,-0xd,0x157,-0x8f),'rates':{'input':2.5,'output':0xf},'pricingProviderIds':[_0x16b4a2(0x44a,0x356,0x4de,0x58a)],'matchKind':'model-unique'},'lucidquery-nexus-coder':{'modelId':_0x5a09f8(-0x445,-0x185,0x160,-0x55),'rates':{'input':0x2,'output':0x5},'pricingProviderIds':[_0x16b4a2(0x659,0x1f3,0x4de,0x384)],'matchKind':_0x16b4a2(0x5a3,0x717,0x369,0x4f8)},'lynkr-auto':{'modelId':_0x16b4a2(0x15c,-0x2b1,-0x31,-0x95),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x148,0x21f,0x2c7,0x60a)],'matchKind':_0x16b4a2(0x32c,0x61b,0x369,0x4d7)},'lyria-3-clip-preview':{'modelId':_0x5a09f8(0x41b,0xad,0x49,0x1d4),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x18b,-0xa9,0x2d3,0x2d8)],'matchKind':'model-unique'},'lyria-3-pro-preview':{'modelId':'lyria-3-pro-preview','rates':{'input':0x0,'output':0x0},'pricingProviderIds':['google'],'matchKind':_0x16b4a2(0x35,0x337,0x369,0x3ea)},'magibu-11b-v8':{'modelId':_0x5a09f8(0x1ea,0x593,0x63e,0x43d),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x4fb,0x3c4,0x518,0x477)],'matchKind':'model-unique'},'magistral-medium-latest':{'modelId':_0x16b4a2(0x40a,0x167,0x4d6,0x25f),'rates':{'input':0x2,'output':0x5},'pricingProviderIds':[_0x16b4a2(-0x32,0xc,0x204,0x3d7)],'matchKind':_0x5a09f8(0x3f3,0x30a,0x37c,0x5d3)},'magistral-small':{'modelId':_0x16b4a2(0x484,0x3b7,0xc0,-0x16b),'rates':{'input':0.5,'output':1.5},'pricingProviderIds':[_0x16b4a2(0x22e,0x4d4,0x204,0x5c1)],'matchKind':_0x5a09f8(0x5fb,0x30a,0x221,0x3d4)},'mai-code-1-flash-picker':{'modelId':'mai-code-1-flash-picker','rates':{'input':0.75,'output':4.5,'cacheRead':0.075},'pricingProviderIds':[_0x5a09f8(-0x81,0x5d,0x147,0x3c1)],'matchKind':_0x16b4a2(0x611,0x673,0x369,0x6d9)},'medgemma-4b':{'modelId':'medgemma-4b','rates':{'input':0x3,'output':0x5},'pricingProviderIds':[_0x5a09f8(0x5c1,0x4b9,0x7e4,0x4ac)],'matchKind':_0x16b4a2(0x6e1,0x55d,0x369,0x5ee)},'meganova-ai/manta-flash-1.0':{'modelId':'meganova-ai/manta-flash-1.0','rates':{'input':0.02,'output':0.16},'pricingProviderIds':[_0x5a09f8(0x1cf,-0x34,-0x297,0x368)],'matchKind':_0x5a09f8(0x145,0x30a,0x63f,0x58e)},'meganova-ai/manta-mini-1.0':{'modelId':_0x16b4a2(0x99,-0x2a2,0xcb,0xd),'rates':{'input':0.02,'output':0.16},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x4e5,0x1b,0x369,0x558)},'meganova-ai/manta-pro-1.0':{'modelId':_0x16b4a2(0x23d,0x28b,0x3cc,0x684),'rates':{'input':0.060000000000000005,'output':0.5},'pricingProviderIds':[_0x5a09f8(-0x153,-0x34,-0x131,-0x2d6)],'matchKind':'model-unique'},'meituan/longcat-2.0':{'modelId':'meituan/longcat-2.0','rates':{'input':0.3,'output':1.2,'cacheRead':0.006},'pricingProviderIds':['openrouter'],'matchKind':_0x16b4a2(0x1ca,0x415,0x369,0x56f)},'mercury-edit-2':{'modelId':_0x16b4a2(-0x35,0x2d,0x1f5,0x2b7),'rates':{'input':0.25,'output':0.75,'cacheRead':0.025},'pricingProviderIds':[_0x16b4a2(0x55d,0xb8,0x363,0x24e)],'matchKind':_0x5a09f8(0x3ec,0x30a,-0x27,0x24b)},'meta-llama-3-1-8b-instruct':{'modelId':_0x16b4a2(0x6c,0x392,0x2e1,-0x88),'rates':{'input':0.15,'output':0.45},'pricingProviderIds':['neon'],'matchKind':_0x5a09f8(0x391,0x30a,0x62c,0x162)},'meta-llama-3-3-70b-instruct':{'modelId':_0x5a09f8(0x4fe,0x3b6,0x742,0x5bd),'rates':{'input':0.5,'output':1.5},'pricingProviderIds':[_0x5a09f8(-0x3cc,-0x1a,-0x32d,-0x130)],'matchKind':_0x16b4a2(0x49d,0x337,0x369,0x5ea)},'meta-llama-3-70b-instruct':{'modelId':_0x5a09f8(0x28c,0xa2,-0x126,-0x8d),'rates':{'input':2.68,'output':3.54},'pricingProviderIds':[_0x5a09f8(0xad,-0x10e,-0x29f,0x11f),_0x16b4a2(-0x35f,0x17a,-0x88,-0x320)],'matchKind':_0x5a09f8(0x6e,0x102,0x425,-0x112)},'meta-llama-3-8b-instruct':{'modelId':_0x16b4a2(0xc6,0x5da,0x2dc,0x1ac),'rates':{'input':0.3,'output':0.61},'pricingProviderIds':['azure',_0x5a09f8(0x3d,-0xe7,-0x27b,-0x248)],'matchKind':_0x5a09f8(-0x26,0x102,0x20e,0x5)},'meta-llama-3.1-405b-instruct':{'modelId':_0x16b4a2(0x2f9,0x56c,0x26d,0x17f),'rates':{'input':5.33,'output':0x10},'pricingProviderIds':['azure',_0x16b4a2(0x101,0x13f,-0x88,-0x313)],'matchKind':'model-identical'},'meta-llama-3.1-70b-instruct':{'modelId':_0x5a09f8(0x253,0x4b0,0x1d1,0x628),'rates':{'input':2.68,'output':3.54},'pricingProviderIds':[_0x5a09f8(-0x408,-0x10e,-0x408,-0x171),'azure-cognitive-services'],'matchKind':_0x5a09f8(0x2b8,0x102,0x3f5,-0x109)},'meta-llama-3.1-8b-instruct':{'modelId':_0x5a09f8(-0x345,0x7c,-0x23c,-0x340),'rates':{'input':0.3,'output':0.61},'pricingProviderIds':[_0x5a09f8(-0x260,-0x10e,0xeb,-0x3ef),'azure-cognitive-services'],'matchKind':_0x16b4a2(-0xcb,0x113,0x161,0xb2)},'meta-llama-3_3-70b-instruct':{'modelId':_0x16b4a2(0x536,0x9c,0x3d9,0x5e0),'rates':{'input':0.74,'output':0.74},'pricingProviderIds':[_0x5a09f8(-0x3c5,-0x147,0x199,0x7d)],'matchKind':_0x16b4a2(0x169,0x239,0x369,0x53f)},'meta-llama/Llama-3.1-70B-Instruct':{'modelId':_0x5a09f8(-0xab,0x9d,-0x2a5,-0x2cf),'rates':{'input':0.8,'output':0.8,'cacheRead':0.8},'pricingProviderIds':[_0x5a09f8(0x584,0x486,0x842,0x7b3)],'matchKind':_0x16b4a2(0x630,0x1ab,0x369,0x612)},'meta-llama/Llama-3.2-1B-Instruct':{'modelId':_0x16b4a2(0x32e,-0x39a,-0x80,-0x17d),'rates':{'input':0.1,'output':0.201,'cacheRead':0.1,'cacheWrite':0.1},'pricingProviderIds':[_0x5a09f8(0x819,0x525,0x74b,0x454)],'matchKind':'model-unique'},'meta-llama/Llama-3.2-3B-Instruct':{'modelId':_0x5a09f8(0x21b,0x4b6,0x730,0x29d),'rates':{'input':0.1,'output':0.335,'cacheRead':0.1,'cacheWrite':0.1},'pricingProviderIds':['pioneer'],'matchKind':_0x16b4a2(0x3e0,-0x41,0x369,0x57c)},'meta-llama/Llama-3.2-90B-Vision-Instruct':{'modelId':_0x16b4a2(0x3b7,0x197,0x279,0x16d),'rates':{'input':0.35,'output':0.4,'cacheRead':0.175,'cacheWrite':0.7},'pricingProviderIds':[_0x16b4a2(0x3a7,0x5a2,0x3cf,0x6cd)],'matchKind':_0x16b4a2(0xde,0x14a,0x369,0x4a3)},'meta-llama/Llama-4-Scout-17B-16E-Instruct':{'modelId':'meta-llama/Llama-4-Scout-17B-16E-Instruct','rates':{'input':0.1,'output':0.3},'pricingProviderIds':['deepinfra'],'matchKind':_0x16b4a2(0x1d8,0x124,0x369,0x2c1)},'meta-llama/Meta-Llama-3-8B-Instruct-Lite':{'modelId':_0x16b4a2(0x2ba,0xb3,0x194,0x2a4),'rates':{'input':0.14,'output':0.14},'pricingProviderIds':['togetherai'],'matchKind':'model-unique'},'meta-llama/Meta-Llama-3.1-405B-Instruct-Turbo':{'modelId':_0x5a09f8(0x657,0x483,0x778,0x3da),'rates':{'input':3.5,'output':3.5},'pricingProviderIds':[_0x5a09f8(0x159,0x364,0x33e,0x4cd)],'matchKind':_0x16b4a2(0x16,0x563,0x369,0x62c)},'meta-llama/Meta-Llama-3.1-8B-Instruct':{'modelId':_0x16b4a2(0xa6,0x69a,0x3f0,0x1fb),'rates':{'input':0.02,'output':0.05},'pricingProviderIds':[_0x5a09f8(0x264,0x364,0x6fb,-0x1b)],'matchKind':_0x16b4a2(0x3b2,0x3e6,0x369,0x397)},'meta-llama/Meta-Llama-3.3-70B-Instruct':{'modelId':_0x16b4a2(0x12b,0x283,0x1ad,0x1ae),'rates':{'input':0.59,'output':0.79},'pricingProviderIds':[_0x5a09f8(0x2a2,0x364,0x215,0x2a4)],'matchKind':'model-unique'},'meta-llama/llama-3-70b-instruct':{'modelId':_0x5a09f8(0xf9,-0xa4,0x1c8,-0x264),'rates':{'input':0.51,'output':0.74},'pricingProviderIds':[_0x5a09f8(0x8b0,0x533,0x624,0x21a),_0x16b4a2(0x156,0x5c5,0x3d1,0x1d6)],'matchKind':'model-identical'},'meta-llama/llama-3.1-70b-instruct':{'modelId':'meta-llama/llama-3.1-70b-instruct','rates':{'input':0.4,'output':0.4},'pricingProviderIds':[_0x5a09f8(0x5a3,0x533,0x27f,0x786),_0x16b4a2(0x34c,0xb9,0xcc,-0x15)],'matchKind':'model-identical'},'meta-llama/llama-3.2-11b-vision-instruct':{'modelId':'meta-llama/llama-3.2-11b-vision-instruct','rates':{'input':0.049,'output':0.049},'pricingProviderIds':[_0x16b4a2(0x742,0x93a,0x592,0x374)],'matchKind':'model-unique'},'meta-llama/llama-4-maverick-17b-128e-instruct-fp8':{'modelId':_0x5a09f8(0x214,0x1ba,0x57b,0x137),'rates':{'input':0.27,'output':0.85},'pricingProviderIds':['novita-ai'],'matchKind':'model-unique'},'meta-llama/llama-guard-3-8b':{'modelId':_0x5a09f8(0x20d,0x582,0x81f,0x575),'rates':{'input':0.02,'output':0.06},'pricingProviderIds':[_0x16b4a2(0x617,0x7d7,0x592,0x7dd)],'matchKind':_0x16b4a2(0x2c8,0x535,0x369,0x3d0)},'meta-llama/llama-guard-4-12b':{'modelId':_0x5a09f8(0x1d0,0xec,0x345,-0x154),'rates':{'input':0.18,'output':0.18},'pricingProviderIds':[_0x16b4a2(0x81d,0x44c,0x592,0x888),_0x5a09f8(0x215,0x6d,-0x2a6,-0x57)],'matchKind':_0x5a09f8(-0xcc,0x102,-0x283,0x2b)},'meta-llama/llama-prompt-guard-2-22m':{'modelId':_0x16b4a2(0x313,0x7ff,0x591,0x37f),'rates':{'input':0.03,'output':0.03},'pricingProviderIds':[_0x16b4a2(0x1ea,-0x30d,-0x6d,0x16c)],'matchKind':_0x16b4a2(0x545,0x393,0x369,0x4d)},'meta-llama/llama-prompt-guard-2-86m':{'modelId':_0x16b4a2(0x5f1,0x5ab,0x582,0x656),'rates':{'input':0.04,'output':0.04},'pricingProviderIds':[_0x5a09f8(-0xc5,-0xcc,0xc4,-0x223)],'matchKind':_0x5a09f8(0x9c,0x30a,0x122,0x423)},'meta.llama3-1-70b-instruct-v1:0':{'modelId':_0x5a09f8(-0xe,0x237,0x3a8,0x37),'rates':{'input':0.72,'output':0.72},'pricingProviderIds':[_0x16b4a2(0x5d6,0x5ac,0x2aa,0x645)],'matchKind':_0x5a09f8(0x1fd,0x30a,0x181,0x3af)},'meta.llama3-1-8b-instruct-v1:0':{'modelId':'meta.llama3-1-8b-instruct-v1:0','rates':{'input':0.22,'output':0.22},'pricingProviderIds':[_0x5a09f8(0x4c4,0x24b,0x2e4,0x4f0)],'matchKind':_0x5a09f8(0xfe,0x30a,0x469,0x9a)},'meta.llama3-3-70b-instruct-v1:0':{'modelId':_0x16b4a2(0x1c4,0x4a,0x231,0x266),'rates':{'input':0.72,'output':0.72},'pricingProviderIds':[_0x16b4a2(0x44b,0x187,0x2aa,0x3)],'matchKind':'model-unique'},'meta.llama4-maverick-17b-instruct-v1:0':{'modelId':_0x16b4a2(-0x454,-0x427,-0xbc,-0x22e),'rates':{'input':0.24,'output':0.97},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x5a09f8(0x5b8,0x30a,0x420,0x2ee)},'meta.llama4-scout-17b-instruct-v1:0':{'modelId':_0x5a09f8(0x531,0x170,0x287,0x2b7),'rates':{'input':0.17,'output':0.66},'pricingProviderIds':[_0x5a09f8(0x24b,0x24b,0x4f3,0x18)],'matchKind':_0x16b4a2(0x6d8,0x556,0x369,0x65f)},'meta/esm2-650m':{'modelId':_0x16b4a2(0x4be,0x6f7,0x385,0x478),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x9,0x3b,-0x2de,-0x1bd)],'matchKind':_0x16b4a2(0x59a,0x5f,0x369,0x339)},'meta/esmfold':{'modelId':_0x16b4a2(0x7,0x3d9,0xb0,-0x11d),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x269,0x3b,0x40,-0x32b)],'matchKind':'model-unique'},'meta/llama-3.1-70b':{'modelId':'meta/llama-3.1-70b','rates':{'input':0.72,'output':0.72},'pricingProviderIds':[_0x5a09f8(0x2a8,0x387,0x22e,0x41e)],'matchKind':_0x5a09f8(0x3d0,0x30a,0x26b,0x63c)},'meta/llama-3.1-70b-instruct':{'modelId':_0x5a09f8(0x124,0x2fa,0x58d,0x5e8),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0xc1,-0x30d,0x9a,-0x25b)],'matchKind':_0x16b4a2(0x458,0x6c9,0x369,0x1dc)},'meta/llama-3.1-8b':{'modelId':_0x5a09f8(-0x39,0x57,-0x254,-0x2d),'rates':{'input':0.22,'output':0.22},'pricingProviderIds':[_0x16b4a2(0x61d,0x738,0x3e6,0x90)],'matchKind':_0x5a09f8(0x3cc,0x30a,0x4d3,0x4d6)},'meta/llama-3.2-90b-vision-instruct':{'modelId':_0x5a09f8(-0x19,0x32e,0x5b7,0x284),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x283,0x590,0x909,0x372),_0x16b4a2(-0x272,-0x2c9,0x9a,-0x1e5)],'matchKind':_0x16b4a2(-0x19c,0x220,0x161,0xfc)},'meta/llama-3.3-70b':{'modelId':_0x5a09f8(0x512,0x233,0x445,0x119),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x4fd,0x64,0x3e6,0x45b)],'matchKind':'model-unique'},'meta/llama-3.3-70b-instruct':{'modelId':_0x16b4a2(0x490,0x2ba,0x167,0x43b),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['github-models',_0x5a09f8(0x54,0x3b,0x3ee,0x27b)],'matchKind':_0x16b4a2(0xa7,0xba,0x161,-0xb)},'meta/llama-3.3-70b-instruct-maas':{'modelId':_0x16b4a2(0x595,0x4ea,0x567,0x4d1),'rates':{'input':0.72,'output':0.72},'pricingProviderIds':[_0x16b4a2(0x124,0x644,0x336,0x6d6)],'matchKind':_0x16b4a2(0x266,0x105,0x369,0x375)},'meta/llama-4-maverick':{'modelId':_0x16b4a2(0x40f,0x6c,0x368,0x18),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['vercel'],'matchKind':_0x16b4a2(0x80,0x280,0x369,0x453)},'meta/llama-4-maverick-17b-128e-instruct':{'modelId':_0x5a09f8(0x112,-0x88,-0x18f,-0x1b5),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['nvidia'],'matchKind':_0x16b4a2(0x82,0x3ff,0x369,0x2fc)},'meta/llama-4-maverick-17b-128e-instruct-fp8':{'modelId':_0x16b4a2(0x30b,0x271,0x4c9,0x865),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x6f2,0x590,0x8ed,0x5eb)],'matchKind':_0x5a09f8(0x3cd,0x30a,0x1f5,0x5de)},'meta/llama-4-maverick-17b-128e-instruct-maas':{'modelId':_0x16b4a2(0x38d,-0x260,0xeb,-0xc7),'rates':{'input':0.35,'output':1.15},'pricingProviderIds':['google-vertex'],'matchKind':_0x5a09f8(0x1dc,0x30a,0x18a,0x22d)},'meta/llama-4-scout':{'modelId':'meta/llama-4-scout','rates':{'input':0x0,'output':0x0},'pricingProviderIds':['vercel'],'matchKind':_0x5a09f8(0x15c,0x30a,0xfa,0x69d)},'meta/llama-4-scout-17b-16e-instruct':{'modelId':_0x16b4a2(-0x6f,0x1ae,0x17b,-0x1f4),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x65b,0x590,0x2fe,0x4e5)],'matchKind':'model-unique'},'meta/llama-guard-4-12b':{'modelId':'meta/llama-guard-4-12b','rates':{'input':0x0,'output':0x0},'pricingProviderIds':['nvidia'],'matchKind':'model-unique'},'meta/meta-llama-3-70b-instruct':{'modelId':_0x16b4a2(0x5b5,0x864,0x566,0x65b),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x784,0x6df,0x5ef,0x54a)],'matchKind':_0x16b4a2(0x3fc,0x5b3,0x369,0x3b8)},'meta/meta-llama-3-8b-instruct':{'modelId':'meta/meta-llama-3-8b-instruct','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x475,0x590,0x2b8,0x675)],'matchKind':_0x5a09f8(0x451,0x30a,0x316,0x646)},'meta/meta-llama-3.1-405b-instruct':{'modelId':_0x16b4a2(0xdc,0x74e,0x471,0x5d4),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['github-models'],'matchKind':_0x16b4a2(0x501,0xaf,0x369,0x4fc)},'meta/meta-llama-3.1-70b-instruct':{'modelId':'meta/meta-llama-3.1-70b-instruct','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x68f,0x7bd,0x5ef,0x85f)],'matchKind':_0x5a09f8(0x454,0x30a,0x536,0x45a)},'meta/meta-llama-3.1-8b-instruct':{'modelId':_0x16b4a2(0x27d,0x722,0x377,0x45f),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x52d,0x4be,0x5ef,0x847)],'matchKind':'model-unique'},'meta/muse-spark-1.1':{'modelId':_0x5a09f8(0x170,-0xc1,0xc9,-0x270),'rates':{'input':1.25,'output':4.25,'cacheRead':0.15},'pricingProviderIds':['openrouter',_0x5a09f8(0x513,0x387,0x355,0x1fc)],'matchKind':_0x16b4a2(-0x239,0x67,0x161,-0x191)},'microsoft/Phi-4-mini-instruct':{'modelId':_0x5a09f8(0x21c,0x4e4,0x746,0x600),'rates':{'input':0.08,'output':0.35,'cacheRead':0.08},'pricingProviderIds':[_0x5a09f8(0x718,0x486,0x381,0x3d8)],'matchKind':_0x5a09f8(0x2f6,0x30a,0x576,0x651)},'microsoft/mai-ds-r1':{'modelId':_0x16b4a2(-0x197,0x4a7,0x1ba,0x412),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x7ae,0x590,0x71a,0x33e)],'matchKind':_0x16b4a2(0x183,0xd6,0x369,0x51e)},'microsoft/phi-3-medium-128k-instruct':{'modelId':_0x5a09f8(0x288,0x157,0x7f,0x396),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x2d0,0x590,0x672,0x20f)],'matchKind':'model-unique'},'microsoft/phi-3-medium-4k-instruct':{'modelId':'microsoft/phi-3-medium-4k-instruct','rates':{'input':0x0,'output':0x0},'pricingProviderIds':['github-models'],'matchKind':_0x5a09f8(0x12,0x30a,0x56a,0x4b)},'microsoft/phi-3-mini-128k-instruct':{'modelId':_0x16b4a2(0x284,0x1c3,0x1f1,-0x1ad),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x327,0x5e1,0x5ef,0x991)],'matchKind':'model-unique'},'microsoft/phi-3-mini-4k-instruct':{'modelId':_0x5a09f8(-0x241,-0x19,0x242,0x336),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x4ea,0x361,0x5ef,0x60d)],'matchKind':_0x16b4a2(0x35a,0x232,0x369,0x4b5)},'microsoft/phi-3-small-128k-instruct':{'modelId':_0x5a09f8(0x468,0x264,0x2f2,0x5f2),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x7c1,0x575,0x5ef,0x529)],'matchKind':_0x16b4a2(0x58d,0x265,0x369,0x82)},'microsoft/phi-3-small-8k-instruct':{'modelId':'microsoft/phi-3-small-8k-instruct','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x3f1,0x590,0x24c,0x427)],'matchKind':_0x16b4a2(0x181,0x6a4,0x369,0x22d)},'microsoft/phi-3.5-mini-instruct':{'modelId':_0x5a09f8(0x384,0x64,-0x1b0,0x18e),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x1e5,0x590,0x8c5,0x5c7)],'matchKind':_0x5a09f8(0xb2,0x30a,-0xac,0x5f9)},'microsoft/phi-3.5-moe-instruct':{'modelId':_0x16b4a2(0x41,-0x19b,-0x4f,-0xf2),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x3be,0x301,0x5ef,0x592)],'matchKind':_0x16b4a2(0x253,0x6a6,0x369,0x87)},'microsoft/phi-3.5-vision-instruct':{'modelId':_0x16b4a2(-0x9f,0xf9,0x1e6,0x10d),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x24d,0x477,0x5ef,0x802)],'matchKind':'model-unique'},'microsoft/phi-4-mini-reasoning':{'modelId':_0x16b4a2(0x324,0x7e5,0x52f,0x60b),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x648,0x511,0x5ef,0x863)],'matchKind':'model-unique'},'microsoft/phi-4-multimodal-instruct':{'modelId':_0x16b4a2(0x255,-0x1a0,0xad,0x148),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x697,0x87d,0x5ef,0x306),_0x16b4a2(0x2a9,0x96,0x9a,0x2a3)],'matchKind':_0x16b4a2(0x9b,0x22b,0x161,-0xeb)},'microsoft/phi-4-reasoning':{'modelId':_0x5a09f8(0x21e,0x22c,0x4,0x3cf),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['github-models'],'matchKind':'model-unique'},'mimo-v2-5:free':{'modelId':_0x16b4a2(-0x14e,0x195,-0x2b,0x19b),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x50a,0x408,0x180,0x197)],'matchKind':_0x5a09f8(0x6a2,0x30a,0x174,0x48b)},'mimo-v2-flash-free':{'modelId':_0x16b4a2(0x3b3,0x2df,0x47d,0x1e2),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x5a09f8(0x42e,0x82,0x22c,-0x2d5)],'matchKind':_0x16b4a2(-0x3e,0x25a,0x369,0x4c2)},'mimo-v2-omni-free':{'modelId':_0x5a09f8(0xbb,0x407,0x129,0x74e),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x16b4a2(0x26,0x3e3,0xe1,-0x29c)],'matchKind':_0x16b4a2(0x328,0xfa,0x369,0x111)},'mimo-v2-pro-free':{'modelId':_0x5a09f8(-0xf,0x23a,0x72,0x9a),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x5a09f8(-0x5f,0x82,0x1ee,0x348)],'matchKind':_0x5a09f8(0x31c,0x30a,0x135,-0x5d)},'mimo-v2-tts':{'modelId':_0x16b4a2(0x21c,-0x4e,0x1bd,0x37f),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x40c,0xe9,0xd1,-0x1d5),'xiaomi-token-plan-cn','xiaomi-token-plan-sgp'],'matchKind':_0x5a09f8(0x95,0x102,-0x137,0x4a7)},'mimo-v2.5-free':{'modelId':_0x16b4a2(0x226,0x242,0x56a,0x43e),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x5a09f8(0x3a,0x82,0x3f4,0x3be)],'matchKind':'model-unique'},'mimo-v2.5-pro-ultraspeed':{'modelId':_0x5a09f8(-0x353,-0x14c,-0x352,-0x42a),'rates':{'input':1.305,'output':2.61,'cacheRead':0.0108},'pricingProviderIds':['xiaomi'],'matchKind':_0x5a09f8(0x6be,0x30a,0x10c,0x3f7)},'mimo-v2.5-tts':{'modelId':_0x5a09f8(0xa1,0x7f,-0x1cb,0x208),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['xiaomi-token-plan-ams','xiaomi-token-plan-cn',_0x16b4a2(-0x92,0x17e,0x1f4,-0xa7)],'matchKind':'model-identical'},'mimo-v2.5-tts-voiceclone':{'modelId':_0x5a09f8(0x47a,0x3b2,0x1a3,0x400),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0x75,-0x2ba,0xd1,0x254),_0x16b4a2(0x1b1,0x404,0x2fa,0x417),'xiaomi-token-plan-sgp'],'matchKind':'model-identical'},'mimo-v2.5-tts-voicedesign':{'modelId':'mimo-v2.5-tts-voicedesign','rates':{'input':0x0,'output':0x0},'pricingProviderIds':['xiaomi-token-plan-ams','xiaomi-token-plan-cn',_0x5a09f8(0x3e6,0x195,-0x18d,0x4d3)],'matchKind':_0x5a09f8(0x486,0x102,0x2b6,-0x254)},'minicpm-v-4.5':{'modelId':'minicpm-v-4.5','rates':{'input':0.658,'output':1.11},'pricingProviderIds':[_0x16b4a2(0x402,-0x303,0x5e,0x10)],'matchKind':_0x5a09f8(0x429,0x30a,0x2a6,0x480)},'minimax-m2-5':{'modelId':_0x5a09f8(0x197,0x308,0xc6,0x59c),'rates':{'input':0.3,'output':1.2,'cacheRead':0.03},'pricingProviderIds':[_0x5a09f8(0x36b,0x164,0x457,0x21c)],'matchKind':_0x5a09f8(0x328,0x30a,0x521,0x1ab)},'minimax-m2.1-free':{'modelId':'minimax-m2.1-free','rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x5a09f8(-0x339,0x82,0x2fc,0x6a)],'matchKind':_0x5a09f8(0x5fe,0x30a,0x4d8,0x678)},'minimax-m2.1-lightning':{'modelId':_0x16b4a2(0x3ac,0x412,0x4b2,0x77a),'rates':{'input':0.12,'output':0.48},'pricingProviderIds':[_0x5a09f8(0x3a1,-0x1,-0x6f,-0xa7)],'matchKind':_0x16b4a2(0x14c,0x356,0x369,0x1d2)},'minimax-m2.5-230b':{'modelId':_0x5a09f8(0x53c,0x3d5,0xa6,0x5f1),'rates':{'input':0.25,'output':1.2},'pricingProviderIds':[_0x16b4a2(0x9b,-0x2b9,0x106,-0x75)],'matchKind':'model-unique'},'minimax-m2.5-free':{'modelId':'minimax-m2.5-free','rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x16b4a2(0x2c4,-0x1fa,0xe1,-0x14f)],'matchKind':_0x5a09f8(0x230,0x30a,-0x97,0x4d5)},'minimax-m2.5-highspeed':{'modelId':_0x16b4a2(0x488,-0xee,0x275,-0x89),'rates':{'input':0.6,'output':2.4,'cacheRead':0.03,'cacheWrite':0.375},'pricingProviderIds':[_0x16b4a2(-0x45,0x27f,0x5e,0x21e)],'matchKind':_0x16b4a2(0x56e,0x174,0x369,0x68b)},'minimax-m2.7-highspeed':{'modelId':_0x5a09f8(-0x80,-0x17a,-0x37b,-0xf5),'rates':{'input':0.6,'output':2.4,'cacheRead':0.06,'cacheWrite':0.375},'pricingProviderIds':[_0x5a09f8(0x36d,-0x1,-0x9b,0x28)],'matchKind':'model-unique'},'minimax-m2.7:free':{'modelId':'minimax-m2.7:free','rates':{'input':0x0,'output':0x0},'pricingProviderIds':['unorouter'],'matchKind':'model-unique'},'minimax-m25':{'modelId':_0x16b4a2(0x5c1,0x34d,0x37a,0x49e),'rates':{'input':0.27,'output':0.95,'cacheRead':0.03},'pricingProviderIds':[_0x16b4a2(0x4f7,0x4f2,0x5a2,0x603)],'matchKind':_0x5a09f8(0x240,0x30a,0x36a,0x1fb)},'minimax-m27':{'modelId':_0x16b4a2(-0x116,-0x218,0x12f,0x275),'rates':{'input':0.375,'output':1.5,'cacheRead':0.06875},'pricingProviderIds':['venice'],'matchKind':'model-unique'},'minimax-m3-free':{'modelId':_0x5a09f8(-0x10f,0x299,0x13,0x47f),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x16b4a2(-0x13f,0x421,0xe1,-0x4d)],'matchKind':_0x16b4a2(0x5d9,0x5f7,0x369,0x5eb)},'minimax-m3-preview':{'modelId':_0x16b4a2(0x6a5,0x512,0x372,-0x34),'rates':{'input':0.3,'output':1.2,'cacheRead':0.06},'pricingProviderIds':[_0x16b4a2(0x692,0x23e,0x5a2,0x85d)],'matchKind':_0x5a09f8(0x580,0x30a,0x269,0x32a)},'minimax-text-01':{'modelId':'minimax-text-01','rates':{'input':0.2,'output':1.1},'pricingProviderIds':['llmgateway'],'matchKind':_0x5a09f8(-0x41,0x30a,0x7,0x13c)},'minimax.minimax-m2':{'modelId':_0x16b4a2(0x45b,0x42b,0x3f1,0x350),'rates':{'input':0.3,'output':1.2},'pricingProviderIds':[_0x16b4a2(0x372,0x14,0x2aa,0x27)],'matchKind':'model-unique'},'minimax.minimax-m2.1':{'modelId':_0x16b4a2(0x198,-0x35e,-0xd8,0xbd),'rates':{'input':0.3,'output':1.2},'pricingProviderIds':[_0x16b4a2(0x5b3,0x46c,0x2aa,0x9d)],'matchKind':_0x5a09f8(0x40,0x30a,0x29f,0x4a8)},'minimax.minimax-m2.5':{'modelId':'minimax.minimax-m2.5','rates':{'input':0.3,'output':1.2},'pricingProviderIds':['amazon-bedrock'],'matchKind':'model-unique'},'minimax/minimax-latest':{'modelId':_0x16b4a2(0x733,0x763,0x3c5,0x49d),'rates':{'input':0.3,'output':1.2,'cacheRead':0.06},'pricingProviderIds':[_0x16b4a2(-0x6d,-0x227,0x2b,0xb3)],'matchKind':_0x16b4a2(0x3a8,0x300,0x369,0x54e)},'minimax/minimax-m2.1-lightning':{'modelId':_0x5a09f8(0x668,0x2d9,0x21a,0x1c0),'rates':{'input':0.3,'output':2.4,'cacheRead':0.03,'cacheWrite':0.375},'pricingProviderIds':[_0x16b4a2(0x3d9,0x3ab,0x3e6,0x2ff)],'matchKind':_0x16b4a2(0x3d6,0x453,0x369,0x713)},'minimax/minimax-m2.5-lightning':{'modelId':'minimax/minimax-m2.5-lightning','rates':{'input':0.6,'output':4.8,'cacheRead':0.06,'cacheWrite':0.75},'pricingProviderIds':['zenmux'],'matchKind':'model-unique'},'minimax/minimax-m2.7-turbo':{'modelId':'minimax/minimax-m2.7-turbo','rates':{'input':0.6,'output':2.4},'pricingProviderIds':[_0x16b4a2(-0x2ad,0x270,0x2b,0x1ca)],'matchKind':'model-unique'},'minimax/minimax-m3:thinking':{'modelId':_0x5a09f8(0x38e,0xb5,0x2,0x18e),'rates':{'input':0.3,'output':1.2,'cacheRead':0.06},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'minimaxai/chat-completion/models/MiniMax-M2_5-high-throughput':{'modelId':_0x5a09f8(-0x1c8,0xdb,0x1f8,0x51),'rates':{'input':0.3,'output':1.2},'pricingProviderIds':[_0x16b4a2(0x14,0x6a,0x23a,0x4fc)],'matchKind':_0x5a09f8(0x67b,0x30a,0x115,0x467)},'minimaxai/minimax-m1-80k':{'modelId':_0x16b4a2(-0x4b8,0xcd,-0xf8,-0x9d),'rates':{'input':0.55,'output':2.2},'pricingProviderIds':[_0x16b4a2(0x5d9,0x67f,0x30f,0x4f7),_0x16b4a2(0x651,0x67b,0x3d1,0x254)],'matchKind':_0x16b4a2(0x1cc,0x2c2,0x161,0x2cd)},'minimaxai/minimax-m2.7':{'modelId':_0x5a09f8(0x242,0x3cb,0x2fd,0x37f),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x2cd,0x3b,-0x378,0x13d)],'matchKind':_0x16b4a2(0x24d,-0x4d,0x369,0x479)},'ministral-3b':{'modelId':_0x5a09f8(-0x64,0x22a,0x4e2,0x355),'rates':{'input':0.04,'output':0.04},'pricingProviderIds':['azure',_0x5a09f8(0x226,-0xe7,-0x354,-0x1de)],'matchKind':_0x5a09f8(-0x1b6,0x102,0x197,0x124)},'ministral-3b-2512':{'modelId':_0x5a09f8(-0xb6,-0xca,-0x104,0xa0),'rates':{'input':0.1,'output':0.1},'pricingProviderIds':['llmgateway'],'matchKind':_0x5a09f8(0x2da,0x30a,0x6a,0x52d)},'ministral-3b-latest':{'modelId':_0x16b4a2(-0x142,-0x1de,-0x10e,0xa5),'rates':{'input':0.04,'output':0.04},'pricingProviderIds':[_0x5a09f8(0x36c,0x1a5,0x108,0x4e6)],'matchKind':_0x16b4a2(-0x32,0x1d0,0x369,0x6f1)},'ministral-8b-2512':{'modelId':_0x16b4a2(0x117,0x3ae,0x117,0xfb),'rates':{'input':0.15,'output':0.15},'pricingProviderIds':[_0x5a09f8(0x30d,-0x1,0x33d,-0xdd)],'matchKind':_0x16b4a2(0x32e,0x2a2,0x369,0x4fd)},'ministral-8b-latest':{'modelId':_0x5a09f8(0x4d5,0x52f,0x30b,0x891),'rates':{'input':0.1,'output':0.1},'pricingProviderIds':['mistral'],'matchKind':_0x16b4a2(0x4ea,0x44f,0x369,0x2ba)},'mirothinker-1-7-deepresearch':{'modelId':'mirothinker-1-7-deepresearch','rates':{'input':0x4,'output':0x19},'pricingProviderIds':[_0x16b4a2(0x1ed,0x18,0x2b,0x284)],'matchKind':'model-unique'},'mirothinker-1-7-deepresearch-mini':{'modelId':_0x16b4a2(0x59f,0x410,0x4ce,0x608),'rates':{'input':1.25,'output':0xa},'pricingProviderIds':[_0x5a09f8(0x35e,-0x34,0x364,0xb)],'matchKind':_0x5a09f8(0x229,0x30a,0x4bb,0x2f9)},'mistral-3-14B':{'modelId':'mistral-3-14B','rates':{'input':0.2,'output':0.2},'pricingProviderIds':[_0x5a09f8(0x2f2,-0x7c,-0x40f,-0x2da)],'matchKind':_0x16b4a2(0x465,0x31a,0x369,-0x24)},'mistral-7b-instruct-v0.3':{'modelId':_0x16b4a2(0x186,0x534,0x4fe,0x191),'rates':{'input':0.11,'output':0.11},'pricingProviderIds':[_0x16b4a2(-0x1bd,-0x6c,-0xe8,-0x38a)],'matchKind':'model-unique'},'mistral-ai/codestral-2501':{'modelId':_0x5a09f8(0x592,0x291,0x454,0x4cb),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['github-models'],'matchKind':_0x16b4a2(0x3ad,0x414,0x369,0x6e2)},'mistral-ai/ministral-3b':{'modelId':_0x5a09f8(-0xda,-0x128,-0x15,-0x329),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x767,0x902,0x5ef,0x5f5)],'matchKind':_0x16b4a2(0x684,0x3f9,0x369,0x315)},'mistral-ai/mistral-large-2411':{'modelId':_0x5a09f8(0x388,0x596,0x4b9,0x5b8),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x6e5,0x590,0x74f,0x841)],'matchKind':_0x16b4a2(0x84,0x222,0x369,-0x17)},'mistral-ai/mistral-medium-2505':{'modelId':'mistral-ai/mistral-medium-2505','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x33a,0x5bb,0x5ef,0x56a)],'matchKind':_0x5a09f8(0xd1,0x30a,0x90,0x5ff)},'mistral-ai/mistral-nemo':{'modelId':'mistral-ai/mistral-nemo','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x2fe,0x67c,0x5ef,0x2fd)],'matchKind':_0x5a09f8(0x1df,0x30a,0xcb,-0x65)},'mistral-ai/mistral-small-2503':{'modelId':_0x5a09f8(0x4f3,0x2f5,0x3f7,-0xa2),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x449,0x590,0x34d,0x405)],'matchKind':_0x5a09f8(0x66,0x30a,0x65,0x16)},'mistral-code-agent-latest':{'modelId':_0x16b4a2(-0x326,-0x39a,0x2,-0xfd),'rates':{'input':0.4,'output':0x2},'pricingProviderIds':[_0x5a09f8(0xc1,-0x34,-0x65,0x148)],'matchKind':_0x16b4a2(0x1e7,0x6f,0x369,0x13d)},'mistral-code-latest':{'modelId':_0x16b4a2(-0x46,0x6ac,0x32f,0x105),'rates':{'input':0.3,'output':0.9},'pricingProviderIds':[_0x16b4a2(0x22f,0x15a,0x2b,0x178)],'matchKind':'model-unique'},'mistral-embed':{'modelId':'mistral-embed','rates':{'input':0.1,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x10b,0x1a5,0x2cb,-0x219)],'matchKind':_0x5a09f8(0x2b6,0x30a,0x16b,0x3a4)},'mistral-large-2411':{'modelId':_0x5a09f8(-0x37f,-0x42,0x6d,-0xde),'rates':{'input':0x2,'output':0x6},'pricingProviderIds':['azure','azure-cognitive-services',_0x16b4a2(0x463,0x71e,0x4cb,0x536),'mistral'],'matchKind':_0x5a09f8(0x7,0x102,0x3aa,-0x23d)},'mistral-medium-2505':{'modelId':'mistral-medium-2505','rates':{'input':0.4,'output':0x2},'pricingProviderIds':[_0x16b4a2(-0x3ae,-0x3a8,-0xaf,-0x43),_0x5a09f8(-0x24c,-0xe7,-0x323,0x231),'mistral'],'matchKind':'model-identical'},'mistral-medium-2508':{'modelId':'mistral-medium-2508','rates':{'input':0.4,'output':0x2},'pricingProviderIds':[_0x16b4a2(0xfd,-0xdf,0x204,-0x11a)],'matchKind':_0x5a09f8(-0x99,0x30a,0x3ab,0x1f5)},'mistral-medium-2604':{'modelId':_0x5a09f8(0x429,0x2cb,0x448,0x27d),'rates':{'input':1.5,'output':7.5},'pricingProviderIds':[_0x16b4a2(0x5b8,0x52d,0x204,0x58f)],'matchKind':_0x5a09f8(0x189,0x30a,0x62e,0x35c)},'mistral-medium-3':{'modelId':_0x5a09f8(-0x45,-0x156,0x16c,0x1fc),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x16c,0x2ae,0x224,0x24b)],'matchKind':_0x5a09f8(-0x14,0x30a,0x3f0,0x4cb)},'mistral-medium-3.5':{'modelId':_0x5a09f8(-0x27a,0xcf,0x276,0xea),'rates':{'input':1.5,'output':7.5,'cacheRead':1.5,'cacheWrite':1.5},'pricingProviderIds':['pioneer'],'matchKind':_0x16b4a2(0x2fd,0x134,0x369,0x301)},'mistral-medium-3.5-128b':{'modelId':_0x5a09f8(0x4,-0x1a9,-0x6c,0x117),'rates':{'input':1.5,'output':7.5},'pricingProviderIds':[_0x16b4a2(-0x42c,-0x17d,-0x13b,-0xf8)],'matchKind':_0x5a09f8(-0xa0,0x30a,0x6ce,0x275)},'mistral-medium-latest':{'modelId':_0x16b4a2(-0x75,0x606,0x2bf,0x3ca),'rates':{'input':1.5,'output':7.5},'pricingProviderIds':[_0x5a09f8(0xb,0x1a5,0x305,0x3de)],'matchKind':_0x16b4a2(0x6d0,0x3a4,0x369,0x1d0)},'mistral-small':{'modelId':'mistral-small','rates':{'input':0.075,'output':0.2},'pricingProviderIds':[_0x5a09f8(0x388,0x46c,0x610,0x79d)],'matchKind':_0x5a09f8(0x252,0x30a,0x6b7,0x21f)},'mistral-small-2503':{'modelId':_0x5a09f8(0x4b2,0x2cc,0x9,0x6d),'rates':{'input':0.1,'output':0.3},'pricingProviderIds':[_0x16b4a2(-0x1ed,0x30f,-0xaf,-0x168),'azure-cognitive-services'],'matchKind':_0x16b4a2(0x3fa,0x152,0x161,0x294)},'mistral-small-2506':{'modelId':_0x5a09f8(0x2b9,0x3dd,0x443,0x49e),'rates':{'input':0.1,'output':0.3},'pricingProviderIds':[_0x16b4a2(0x3e5,-0x35,0x5e,0x2f2),_0x16b4a2(-0x139,-0x12,0x204,0x329)],'matchKind':_0x5a09f8(-0x11f,0x102,0x2f5,-0x25d)},'mistral-small-3-2-24b-instruct':{'modelId':_0x16b4a2(0x3ce,0x30e,0x257,0x484),'rates':{'input':0.09375,'output':0.25},'pricingProviderIds':[_0x16b4a2(0x66c,0x205,0x5a2,0x4fd)],'matchKind':_0x16b4a2(0x596,0x599,0x369,-0x2a)},'mistral-small-31-24b-instruct':{'modelId':_0x16b4a2(-0x78,0xf7,0x31,0x387),'rates':{'input':0.1,'output':0.3},'pricingProviderIds':[_0x5a09f8(-0x37a,-0x34,0x220,0x1d7)],'matchKind':_0x5a09f8(-0xb6,0x30a,0x563,0x48b)},'mistral-small-4':{'modelId':'mistral-small-4','rates':{'input':0.15,'output':0.6},'pricingProviderIds':['empiriolabs'],'matchKind':_0x16b4a2(0x132,0x100,0x369,0x43e)},'mistral-small-4-119b':{'modelId':_0x16b4a2(0x25e,0x5ea,0x2b8,0x464),'rates':{'input':0.75,'output':0x3},'pricingProviderIds':[_0x16b4a2(0x7a6,0x56d,0x4c4,0x23c)],'matchKind':_0x5a09f8(0x39,0x30a,0x5b7,0xa8)},'mistral-small-latest':{'modelId':_0x5a09f8(0x280,0x564,0x798,0x457),'rates':{'input':0.15,'output':0.6},'pricingProviderIds':[_0x16b4a2(0x352,0x4ac,0x204,0x59e)],'matchKind':'model-unique'},'mistral-small3.2':{'modelId':_0x16b4a2(-0x16e,0x1ad,-0x16,0x28a),'rates':{'input':0.5,'output':2.2},'pricingProviderIds':[_0x5a09f8(0x4ab,0x465,0x1de,0x2bf)],'matchKind':_0x5a09f8(0x542,0x30a,0xb3,0x55a)},'mistral.devstral-2-123b':{'modelId':_0x16b4a2(0x2b4,-0x2cc,0xac,0x5e),'rates':{'input':0.4,'output':0x2},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x16b4a2(0x7b,0x20a,0x369,0x51a)},'mistral.magistral-small-2509':{'modelId':_0x16b4a2(0x13a,0x27e,0xe8,-0x240),'rates':{'input':0.5,'output':1.5},'pricingProviderIds':[_0x5a09f8(-0x2d,0x24b,0x27b,0x486)],'matchKind':_0x5a09f8(0x36d,0x30a,0x174,0x7f)},'mistral.ministral-3-14b-instruct':{'modelId':_0x5a09f8(0x477,0x13c,0x11d,0x335),'rates':{'input':0.2,'output':0.2},'pricingProviderIds':[_0x16b4a2(0x639,0xc9,0x2aa,0x15f)],'matchKind':_0x5a09f8(0x292,0x30a,0x577,0xcc)},'mistral.ministral-3-3b-instruct':{'modelId':_0x16b4a2(0x71,0x156,0x252,0x407),'rates':{'input':0.1,'output':0.1},'pricingProviderIds':[_0x16b4a2(-0x25,0x55e,0x2aa,0x366)],'matchKind':_0x5a09f8(0x25,0x30a,0x33f,-0x6f)},'mistral.ministral-3-8b-instruct':{'modelId':_0x16b4a2(0x6c6,0x5f5,0x41a,0x7d6),'rates':{'input':0.15,'output':0.15},'pricingProviderIds':[_0x5a09f8(0x326,0x24b,0x482,-0x157)],'matchKind':_0x5a09f8(0x4f8,0x30a,0xde,0x368)},'mistral.mistral-large-3-675b-instruct':{'modelId':_0x16b4a2(0x50a,0x27c,0x51e,0x648),'rates':{'input':0.5,'output':1.5},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x16b4a2(0x3c3,0x3ae,0x369,0x573)},'mistral.pixtral-large-2502-v1:0':{'modelId':_0x16b4a2(0x2fd,0x4cb,0x29e,0x5c0),'rates':{'input':0x2,'output':0x6},'pricingProviderIds':[_0x16b4a2(0x394,0x4f7,0x2aa,0x4e1)],'matchKind':_0x5a09f8(0xb2,0x30a,0x614,0x603)},'mistral.voxtral-mini-3b-2507':{'modelId':_0x16b4a2(-0x4,0x33b,0x1fa,0x4db),'rates':{'input':0.04,'output':0.04},'pricingProviderIds':[_0x16b4a2(0x418,0x571,0x2aa,0xdc)],'matchKind':_0x16b4a2(0x3fc,0x1a3,0x369,0x4e7)},'mistral.voxtral-small-24b-2507':{'modelId':_0x5a09f8(0x617,0x28e,0x51d,0x1d1),'rates':{'input':0.15,'output':0.35},'pricingProviderIds':[_0x5a09f8(0x277,0x24b,0x441,0x549)],'matchKind':_0x5a09f8(-0x54,0x30a,-0x34,0x136)},'mistral/codestral':{'modelId':_0x5a09f8(-0x48e,-0xf1,-0x202,-0x462),'rates':{'input':0.3,'output':0.9},'pricingProviderIds':[_0x5a09f8(0x6f8,0x387,0x6e8,0x37f)],'matchKind':_0x16b4a2(0x25f,0x4b9,0x369,0x50b)},'mistral/codestral-latest':{'modelId':_0x5a09f8(0x1e6,0x2e5,0x3ae,-0x5b),'rates':{'input':0.3,'output':0.9},'pricingProviderIds':[_0x16b4a2(0x128,0x46b,0x4b3,0x39f)],'matchKind':_0x5a09f8(0x3d,0x30a,-0x20,0xf8)},'mistral/devstral-2':{'modelId':'mistral/devstral-2','rates':{'input':0.4,'output':0x2},'pricingProviderIds':[_0x5a09f8(0x4bf,0x387,0x6d8,0x4a1)],'matchKind':_0x5a09f8(0x3e9,0x30a,0x627,-0x3a)},'mistral/devstral-2512':{'modelId':_0x16b4a2(0xa9,0xf8,-0x30,0x2d8),'rates':{'input':0.4,'output':0x2},'pricingProviderIds':[_0x16b4a2(0x500,0x22f,0x4b3,0x3a2)],'matchKind':_0x5a09f8(0x12f,0x30a,-0xa,0x258)},'mistral/devstral-medium-2507':{'modelId':_0x16b4a2(0x41b,0x1ee,0x235,0x49f),'rates':{'input':0.4,'output':0x2},'pricingProviderIds':['merge-gateway'],'matchKind':_0x16b4a2(0xa9,0x3b2,0x369,0x35a)},'mistral/devstral-medium-latest':{'modelId':_0x16b4a2(0x3a2,0x454,0x5c5,0x3d4),'rates':{'input':0.4,'output':0x2},'pricingProviderIds':[_0x5a09f8(0x692,0x454,0x7cf,0x61d)],'matchKind':_0x5a09f8(0x408,0x30a,0x3dc,0x311)},'mistral/devstral-small-2':{'modelId':_0x5a09f8(0x13f,0xea,-0x239,-0x1ca),'rates':{'input':0.1,'output':0.3},'pricingProviderIds':[_0x5a09f8(0x29d,0x387,0x6d4,0x211)],'matchKind':_0x5a09f8(0x464,0x30a,0x19e,0x250)},'mistral/devstral-small-2507':{'modelId':_0x16b4a2(0x550,0xf9,0x1ff,-0x16),'rates':{'input':0.1,'output':0.3},'pricingProviderIds':[_0x16b4a2(0x4ed,0x166,0x4b3,0x214)],'matchKind':_0x5a09f8(0x9b,0x30a,0xd6,-0x7e)},'mistral/magistral-medium':{'modelId':_0x16b4a2(0x22c,0x189,0x41b,0x251),'rates':{'input':0x2,'output':0x5},'pricingProviderIds':['vercel'],'matchKind':_0x16b4a2(0x4cb,0x202,0x369,0x4f1)},'mistral/magistral-medium-latest':{'modelId':_0x16b4a2(-0x490,-0x19d,-0xfb,-0x485),'rates':{'input':0x2,'output':0x5},'pricingProviderIds':[_0x16b4a2(0x1c8,0x709,0x4b3,0x23e)],'matchKind':_0x5a09f8(0x3ed,0x30a,0x6ae,0x567)},'mistral/magistral-small':{'modelId':'mistral/magistral-small','rates':{'input':0.5,'output':1.5},'pricingProviderIds':['vercel'],'matchKind':_0x16b4a2(0x19e,0x5cd,0x369,0x38e)},'mistral/ministral-14b':{'modelId':_0x16b4a2(-0x164,0x363,0x7d,-0x19e),'rates':{'input':0.2,'output':0.2},'pricingProviderIds':[_0x5a09f8(0x538,0x387,0x4e6,0x4e8)],'matchKind':_0x16b4a2(0x165,0x6a,0x369,0x9c)},'mistral/ministral-3b':{'modelId':_0x5a09f8(0x46d,0x3e7,0x644,0x296),'rates':{'input':0.04,'output':0.04},'pricingProviderIds':[_0x16b4a2(0xde,0x3c4,0x3e6,0x56)],'matchKind':'model-unique'},'mistral/ministral-8b':{'modelId':_0x5a09f8(-0x8b,0x8f,-0x1ac,-0x64),'rates':{'input':0.1,'output':0.1},'pricingProviderIds':[_0x16b4a2(0x45d,0x66b,0x3e6,0x657)],'matchKind':_0x5a09f8(0x4d0,0x30a,0x393,-0x6b)},'mistral/mistral-large-2411':{'modelId':'mistral/mistral-large-2411','rates':{'input':0x2,'output':0x6},'pricingProviderIds':[_0x5a09f8(0x651,0x454,0x5b2,0x4d0)],'matchKind':_0x5a09f8(0x319,0x30a,0x2a7,0x1b2)},'mistral/mistral-large-2512':{'modelId':_0x5a09f8(-0x40,-0x15c,-0x31a,-0xf1),'rates':{'input':0.5,'output':1.5},'pricingProviderIds':[_0x5a09f8(0x7c7,0x454,0x142,0x751)],'matchKind':_0x16b4a2(0x92,0xaa,0x369,0x25f)},'mistral/mistral-large-3':{'modelId':_0x5a09f8(0x1e0,0x4da,0x598,0x468),'rates':{'input':0.5,'output':1.5},'pricingProviderIds':[_0x16b4a2(0x653,0x63b,0x3e6,0x736)],'matchKind':_0x16b4a2(0x571,0x1f0,0x369,0xac)},'mistral/mistral-large-latest':{'modelId':'mistral/mistral-large-latest','rates':{'input':0.5,'output':1.5},'pricingProviderIds':[_0x5a09f8(0x200,0x454,0x407,0x662)],'matchKind':'model-unique'},'mistral/mistral-medium':{'modelId':_0x16b4a2(-0xf,0x374,0xa0,0x3cd),'rates':{'input':0.4,'output':0x2},'pricingProviderIds':[_0x5a09f8(0x2fa,0x387,0x288,0x6ca)],'matchKind':_0x16b4a2(0x3fa,0x55b,0x369,0x3cf)},'mistral/mistral-medium-2505':{'modelId':_0x5a09f8(0x394,0x110,-0x23d,0x117),'rates':{'input':0.4,'output':0x2},'pricingProviderIds':[_0x5a09f8(0xd9,0x454,0x7c5,0x488)],'matchKind':_0x16b4a2(0x4dc,-0x2,0x369,0x43)},'mistral/mistral-medium-3.5':{'modelId':'mistral/mistral-medium-3.5','rates':{'input':1.5,'output':7.5},'pricingProviderIds':[_0x5a09f8(-0x2a0,-0x34,-0x206,-0x223),_0x5a09f8(0x29a,0x387,0x27f,0x303)],'matchKind':_0x5a09f8(-0x1f3,0x102,-0x1b1,0x2e8)},'mistral/mistral-medium-3.5:thinking':{'modelId':'mistral/mistral-medium-3.5:thinking','rates':{'input':1.5,'output':7.5},'pricingProviderIds':[_0x5a09f8(0x120,-0x34,-0x26d,-0xa)],'matchKind':_0x16b4a2(0x463,0x3ac,0x369,0x169)},'mistral/mistral-medium-latest':{'modelId':_0x16b4a2(0x758,0x5ee,0x3e2,0x211),'rates':{'input':0.4,'output':0x2},'pricingProviderIds':[_0x5a09f8(0x52a,0x454,0x27b,0x6b2)],'matchKind':_0x5a09f8(0x299,0x30a,0x49c,0x68a)},'mistral/mistral-nemo':{'modelId':_0x16b4a2(0x3ce,0x2b7,0x51d,0x1a9),'rates':{'input':0.15,'output':0.15},'pricingProviderIds':[_0x5a09f8(0x617,0x387,0x3ef,0x67b)],'matchKind':'model-unique'},'mistral/mistral-nemo-12b-instruct':{'modelId':'mistral/mistral-nemo-12b-instruct','rates':{'input':0.038,'output':0.1},'pricingProviderIds':[_0x5a09f8(-0x1c,0x210,0x50f,0x179)],'matchKind':'model-unique'},'mistral/mistral-small':{'modelId':'mistral/mistral-small','rates':{'input':0.1,'output':0.3},'pricingProviderIds':['vercel'],'matchKind':_0x5a09f8(0x123,0x30a,0x3f9,0x1f3)},'mistral/mistral-small-latest':{'modelId':_0x16b4a2(-0x2e5,0x1a4,-0x32,-0x4),'rates':{'input':0.15,'output':0.6},'pricingProviderIds':[_0x16b4a2(0x71a,0x110,0x4b3,0x59b)],'matchKind':'model-unique'},'mistral/pixtral-12b':{'modelId':_0x5a09f8(-0x14f,-0x11d,-0x2ba,-0x263),'rates':{'input':0.15,'output':0.15},'pricingProviderIds':[_0x16b4a2(0x395,0x77,0x3e6,0x266)],'matchKind':_0x16b4a2(0x25a,0x153,0x369,0x4f9)},'mistral/pixtral-large-latest':{'modelId':'mistral/pixtral-large-latest','rates':{'input':0x2,'output':0x6},'pricingProviderIds':[_0x5a09f8(0x609,0x454,0x7a2,0x2fa)],'matchKind':_0x5a09f8(0x5d1,0x30a,0x6a6,-0x7d)},'mistral4-119b':{'modelId':_0x5a09f8(-0x244,-0x21,0x266,-0x2c),'rates':{'input':0.2,'output':0.6},'pricingProviderIds':[_0x5a09f8(-0x1b0,0xa7,0x379,0x272)],'matchKind':_0x5a09f8(0x499,0x30a,0x534,0x558)},'mistralai--mistral-medium-instruct':{'modelId':_0x16b4a2(0xe4,-0x13e,-0x96,-0xcd),'rates':{'input':0.36,'output':1.22},'pricingProviderIds':[_0x16b4a2(-0x200,-0x210,0x65,-0x291)],'matchKind':_0x5a09f8(0x38d,0x30a,-0x25,0x15d)},'mistralai--mistral-small':{'modelId':'mistralai--mistral-small','rates':{'input':0.07,'output':0.28},'pricingProviderIds':[_0x16b4a2(-0x11,0x1ac,0x65,0x2ed)],'matchKind':'model-unique'},'mistralai/Magistral-Small-2506':{'modelId':_0x5a09f8(0xe8,-0x15e,-0x3b2,-0xc1),'rates':{'input':0.5,'output':1.5,'cacheRead':0.25,'cacheWrite':0x1},'pricingProviderIds':[_0x16b4a2(0xd3,0x27,0x3cf,0x32a)],'matchKind':_0x5a09f8(0x12d,0x30a,0x684,0x55f)},'mistralai/Mistral-7B-Instruct-v0.3':{'modelId':_0x16b4a2(0x443,0x4ea,0x45b,0x5ab),'rates':{'input':0.2,'output':0.2,'cacheRead':0.2,'cacheWrite':0.2},'pricingProviderIds':[_0x16b4a2(0x284,0x56b,0x584,0x5a0)],'matchKind':_0x5a09f8(0x174,0x30a,0x46f,0x245)},'mistralai/Mistral-Large-Instruct-2411':{'modelId':_0x5a09f8(0x42e,0x22f,0x269,0x35),'rates':{'input':0x2,'output':0x6,'cacheRead':0x1,'cacheWrite':0x4},'pricingProviderIds':['io-net'],'matchKind':_0x5a09f8(-0x61,0x30a,0x2ac,-0x54)},'mistralai/Mistral-Small-4-119B-2603':{'modelId':_0x16b4a2(-0x28e,0x135,-0x1,0x318),'rates':{'input':0.15,'output':0.6,'cacheRead':0.015,'cacheWrite':0.15},'pricingProviderIds':[_0x5a09f8(0x18c,0x525,0x20d,0x2f5)],'matchKind':_0x16b4a2(0x631,0x71f,0x369,0x48f)},'mistralai/Voxtral-Small-24B-2507':{'modelId':_0x16b4a2(0x4d5,0x86b,0x5e2,0x318),'rates':{'input':0.0023,'output':0.0023,'outputAudio':2.3},'pricingProviderIds':['evroc'],'matchKind':'model-unique'},'mistralai/completion/models/Ministral-3-14B-Reasoning-2512':{'modelId':'mistralai/completion/models/Ministral-3-14B-Reasoning-2512','rates':{'input':2.5,'output':1.7},'pricingProviderIds':['clarifai'],'matchKind':'model-unique'},'mistralai/completion/models/Ministral-3-3B-Reasoning-2512':{'modelId':'mistralai/completion/models/Ministral-3-3B-Reasoning-2512','rates':{'input':1.039,'output':0.54825},'pricingProviderIds':[_0x5a09f8(0x2e9,0x1db,0x301,0x16b)],'matchKind':'model-unique'},'mistralai/devstral-2-123b-instruct-2512':{'modelId':_0x5a09f8(-0x1ae,-0xfc,-0x1d0,0xd7),'rates':{'input':0.4,'output':1.4},'pricingProviderIds':[_0x16b4a2(-0x1a1,-0x24f,0x2b,0x347)],'matchKind':_0x5a09f8(0x501,0x30a,0x560,0xca)},'mistralai/devstral-medium':{'modelId':_0x16b4a2(0x4e6,-0x22a,0x123,0x27f),'rates':{'input':0.4,'output':0x2},'pricingProviderIds':['kilo'],'matchKind':_0x16b4a2(0xb6,0x490,0x369,-0x44)},'mistralai/devstral-small':{'modelId':_0x16b4a2(0x564,0x4d3,0x4e8,0x4a6),'rates':{'input':0.1,'output':0.3},'pricingProviderIds':[_0x16b4a2(0x4d7,0x6c7,0x592,0x799)],'matchKind':'model-unique'},'mistralai/magistral-small-2506':{'modelId':'mistralai/magistral-small-2506','rates':{'input':0x0,'output':0x0},'pricingProviderIds':['nvidia'],'matchKind':_0x5a09f8(0x49c,0x30a,0x1b8,0x66c)},'mistralai/ministral-14b-instruct-2512':{'modelId':'mistralai/ministral-14b-instruct-2512','rates':{'input':0.1,'output':0.4},'pricingProviderIds':[_0x16b4a2(0x2d5,-0x13d,0x2b,-0x20b)],'matchKind':'model-unique'},'mistralai/mistral-7b-instruct-v0.1':{'modelId':'mistralai/mistral-7b-instruct-v0.1','rates':{'input':0.11,'output':0.19},'pricingProviderIds':[_0x16b4a2(0x452,0x2a0,0x592,0x65e)],'matchKind':_0x16b4a2(0x4c3,0x4e9,0x369,0x12f)},'mistralai/mistral-7b-instruct-v03':{'modelId':_0x16b4a2(0x4a6,0x397,0x576,0x24a),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x35d,0x3b,-0x255,0x173)],'matchKind':_0x16b4a2(0x316,0x8e,0x369,0x4fa)},'mistralai/mistral-large-2411':{'modelId':_0x16b4a2(0x1ef,0x159,-0x5c,-0x3b6),'rates':{'input':0x2,'output':0x6},'pricingProviderIds':['kilo'],'matchKind':'model-unique'},'mistralai/mistral-medium-3-5':{'modelId':_0x16b4a2(0x524,0x4b8,0x287,0x257),'rates':{'input':1.5,'output':7.5},'pricingProviderIds':[_0x5a09f8(0x5f1,0x533,0x6b2,0x1bf),_0x16b4a2(0x100,-0x152,0xcc,0x227)],'matchKind':_0x5a09f8(0x95,0x102,-0xd3,0x385)},'mistralai/mistral-medium-3-instruct':{'modelId':_0x16b4a2(0x40b,0x43,0x2f3,0xc4),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0x83,-0xb5,0x9a,0x34d)],'matchKind':_0x5a09f8(0x52f,0x30a,0x69f,0xfe)},'mistralai/mistral-nemotron':{'modelId':'mistralai/mistral-nemotron','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0xb1,0x4,0x9a,0x10a)],'matchKind':_0x16b4a2(0x518,-0x53,0x369,0x44d)},'mistralai/mistral-small-24b-instruct-2501':{'modelId':_0x16b4a2(0x25f,-0x2fd,-0x111,-0xa3),'rates':{'input':0.05,'output':0.08},'pricingProviderIds':[_0x16b4a2(0x7e0,0x82a,0x592,0x3e2),'openrouter'],'matchKind':_0x5a09f8(0x12c,0x102,-0x7e,0x386)},'mistralai/mistral-small-2603':{'modelId':_0x16b4a2(0xc5,0x115,-0x115,-0x9b),'rates':{'input':0.15,'output':0.6,'cacheRead':0.015},'pricingProviderIds':[_0x5a09f8(0x895,0x533,0x887,0x597),_0x5a09f8(0x2c3,0x6d,0x25e,-0xe8)],'matchKind':_0x16b4a2(0x77,-0x7a,0x161,0x2e0)},'mistralai/mistral-small-4-119b-2603:thinking':{'modelId':_0x16b4a2(0x39,0x2b0,0x32,0xdd),'rates':{'input':0.4,'output':1.4},'pricingProviderIds':[_0x16b4a2(-0x11,-0x5a,0x2b,-0x211)],'matchKind':'model-unique'},'mistralai/mixtral-8x22b-instruct-v0.1':{'modelId':'mistralai/mixtral-8x22b-instruct-v0.1','rates':{'input':0.8999999999999999,'output':0.8999999999999999},'pricingProviderIds':[_0x16b4a2(-0x365,-0x35a,0x2b,0x1b1)],'matchKind':_0x5a09f8(0x294,0x30a,-0x52,0x186)},'mistralai/mixtral-8x7b-instruct':{'modelId':_0x5a09f8(0x2a3,0x3be,0x516,0x72c),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x1c0,0xf,0x9a,0x176)],'matchKind':_0x5a09f8(0x1ef,0x30a,0x4b3,0x649)},'mistralai/mixtral-8x7b-instruct-v0.1':{'modelId':_0x5a09f8(-0x23d,0x75,0x39e,0x20d),'rates':{'input':0.27,'output':0.27},'pricingProviderIds':[_0x5a09f8(0x38d,-0x34,0x1b6,-0x27d)],'matchKind':_0x5a09f8(0x51c,0x30a,0x502,0x2c1)},'mistralai/pixtral-large-2411':{'modelId':_0x5a09f8(0x704,0x472,0x5a7,0x7be),'rates':{'input':0x2,'output':0x6},'pricingProviderIds':[_0x16b4a2(0x327,0x4b9,0x592,0x702)],'matchKind':_0x5a09f8(0x19c,0x30a,0x697,0x2c7)},'mixtral-8x7B-instruct-v0.1':{'modelId':'mixtral-8x7B-instruct-v0.1','rates':{'input':0.438,'output':0.68},'pricingProviderIds':[_0x5a09f8(0x1cc,0x1ca,0x554,0x7d)],'matchKind':_0x5a09f8(0x247,0x30a,0x393,0x239)},'mlabonne/NeuralDaredevil-8B-abliterated':{'modelId':_0x5a09f8(0x1ad,0xe6,0x274,-0x6f),'rates':{'input':0.44,'output':0.44},'pricingProviderIds':[_0x16b4a2(0x2b1,-0x70,0x2b,-0x26d)],'matchKind':_0x16b4a2(0x64,0x8,0x369,0x536)},'model-router':{'modelId':_0x16b4a2(0x7c8,0x7b4,0x503,0x73d),'rates':{'input':0.14,'output':0x0},'pricingProviderIds':['azure',_0x5a09f8(-0x19b,-0xe7,-0x4a6,-0x1ea)],'matchKind':_0x5a09f8(0x3e9,0x102,0x2ca,-0x4a)},'moonshot-kimi-k2-instruct':{'modelId':'moonshot-kimi-k2-instruct','rates':{'input':0.574,'output':2.294},'pricingProviderIds':[_0x5a09f8(-0x232,0x97,0xc6,0x9c)],'matchKind':_0x5a09f8(-0x6d,0x30a,0x70,0x3b9)},'moonshot.kimi-k2-thinking':{'modelId':_0x5a09f8(0x320,0x3c1,0x552,0x697),'rates':{'input':0.6,'output':2.5},'pricingProviderIds':[_0x5a09f8(0x39c,0x24b,-0x5d,0x4c6)],'matchKind':'model-unique'},'moonshot/kimi-k2.5':{'modelId':'moonshot/kimi-k2.5','rates':{'input':0.62,'output':3.3,'cacheRead':0.11,'cacheWrite':0.62},'pricingProviderIds':[_0x16b4a2(0x542,0x52a,0x52a,0x7e6)],'matchKind':_0x5a09f8(0x643,0x30a,0x24f,0x171)},'moonshot/kimi-k2.6':{'modelId':'moonshot/kimi-k2.6','rates':{'input':0x1,'output':4.16,'cacheRead':0.18,'cacheWrite':0x1},'pricingProviderIds':['crossmodel'],'matchKind':_0x5a09f8(0x352,0x30a,0x227,0xe7)},'moonshot/kimi-k2.7-code':{'modelId':_0x16b4a2(0x233,0x62a,0x4c8,0x3bb),'rates':{'input':0x1,'output':4.16,'cacheRead':0.18,'cacheWrite':0x1},'pricingProviderIds':[_0x16b4a2(0x1ad,0x6d3,0x52a,0x300)],'matchKind':_0x16b4a2(0x329,0x4e5,0x369,0x27b)},'moonshot/kimi-k3':{'modelId':_0x5a09f8(-0x156,0x18,0x148,0xda),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':0x3},'pricingProviderIds':[_0x16b4a2(0x4e4,0x671,0x52a,0x251)],'matchKind':_0x5a09f8(0x486,0x30a,0x530,0x2f0)},'moonshotai.kimi-k2.5':{'modelId':_0x5a09f8(0x305,0x3f6,0x5d2,0x5b9),'rates':{'input':0.6,'output':0x3},'pricingProviderIds':[_0x16b4a2(0x521,0x3af,0x2aa,0x210)],'matchKind':_0x5a09f8(0x623,0x30a,0x65,0x31e)},'moonshotai/Kimi-K2-Instruct':{'modelId':_0x5a09f8(0x3c7,0x4ba,0x1c0,0x5a4),'rates':{'input':0x1,'output':0x3},'pricingProviderIds':['huggingface'],'matchKind':_0x5a09f8(-0x6c,0x30a,0x170,0x344)},'moonshotai/Kimi-K2.5-TEE':{'modelId':_0x5a09f8(0x2ab,0x27c,0x2a2,0x321),'rates':{'input':0.44,'output':0x2,'cacheRead':0.22},'pricingProviderIds':[_0x16b4a2(0x199,0x403,0x3b3,0x21e)],'matchKind':_0x16b4a2(0x155,0x5df,0x369,0x4e0)},'moonshotai/Kimi-K2.5-fast':{'modelId':'moonshotai/Kimi-K2.5-fast','rates':{'input':0.5,'output':2.5,'cacheRead':0.05,'cacheWrite':0.625},'pricingProviderIds':[_0x5a09f8(0x13c,0x2b2,0x58c,0x1c)],'matchKind':'model-unique'},'moonshotai/Kimi-K2.6-Fast':{'modelId':_0x5a09f8(-0x95,0x169,0xee,0x3a),'rates':{'input':1.32,'output':0x7,'cacheRead':0.4,'cacheWrite':0x0},'pricingProviderIds':['inceptron'],'matchKind':'model-unique'},'moonshotai/Kimi-K2.6-TEE':{'modelId':_0x5a09f8(-0x35,0x1de,0x408,0x4ef),'rates':{'input':0.66,'output':3.5,'cacheRead':0.33},'pricingProviderIds':[_0x16b4a2(0x3a5,0x4d5,0x3b3,0x520)],'matchKind':_0x5a09f8(0x3e6,0x30a,0x3a3,0x551)},'moonshotai/chat-completion/models/Kimi-K2_6':{'modelId':_0x16b4a2(0x168,0x26e,-0x90,-0xb5),'rates':{'input':0.95,'output':0x4},'pricingProviderIds':['clarifai'],'matchKind':_0x5a09f8(0x253,0x30a,0x29a,0x3ad)},'moonshotai/kimi-k2-instruct-0711':{'modelId':_0x16b4a2(0x169,0x5ca,0x485,0x2e4),'rates':{'input':0.1,'output':0x2},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x707,0x363,0x369,0x3a0)},'moonshotai/kimi-k2-instruct-0905':{'modelId':_0x5a09f8(0x34c,0x20c,0x295,0x2c3),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x1a1,0x3b,0x35,-0x305)],'matchKind':_0x16b4a2(0x1ac,0x692,0x369,0xdc)},'moonshotai/kimi-k2-thinking-maas':{'modelId':_0x16b4a2(0x315,-0xb2,0x233,0x470),'rates':{'input':0.6,'output':2.5},'pricingProviderIds':[_0x16b4a2(0x2e7,0x472,0x336,0x21c)],'matchKind':_0x16b4a2(0x4b7,0xfe,0x369,0x5c)},'moonshotai/kimi-k2-thinking-original':{'modelId':'moonshotai/kimi-k2-thinking-original','rates':{'input':0.6,'output':2.5},'pricingProviderIds':[_0x5a09f8(-0x126,-0x34,0x95,-0x18)],'matchKind':_0x16b4a2(0x2ed,0x6aa,0x369,0x1ca)},'moonshotai/kimi-k2-thinking-turbo':{'modelId':'moonshotai/kimi-k2-thinking-turbo','rates':{'input':1.15,'output':0x8,'cacheRead':0.15},'pricingProviderIds':[_0x5a09f8(-0x2f5,-0x115,0x41,-0xa7)],'matchKind':_0x5a09f8(0x11a,0x30a,0x3ba,0x202)},'moonshotai/kimi-k2-thinking-turbo-original':{'modelId':_0x5a09f8(0x75f,0x46d,0x758,0x333),'rates':{'input':1.15,'output':0x8},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x69c,0x30a,0x1b0,0x348)},'moonshotai/kimi-k2.5:thinking':{'modelId':_0x16b4a2(0xda,-0x1d7,0x1a6,-0x215),'rates':{'input':0.3,'output':1.9},'pricingProviderIds':[_0x5a09f8(0x33,-0x34,0x300,0x390)],'matchKind':_0x16b4a2(0x555,0x3d5,0x369,0x6ac)},'moonshotai/kimi-k2.6:thinking':{'modelId':_0x16b4a2(-0x26a,-0x39d,-0x155,-0x46c),'rates':{'input':0.53,'output':2.73},'pricingProviderIds':[_0x5a09f8(-0x13f,-0x34,-0x200,-0x1ce)],'matchKind':_0x16b4a2(0x17b,0x4b3,0x369,0x224)},'moonshotai/kimi-k2.7-code-free':{'modelId':_0x5a09f8(-0x21,-0x131,-0x40a,-0x14d),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':['zenmux'],'matchKind':_0x5a09f8(0x326,0x30a,0x174,0x24f)},'moonshotai/kimi-k3':{'modelId':'moonshotai/kimi-k3','rates':{'input':0x3,'output':0xf,'cacheRead':0.3},'pricingProviderIds':['cloudflare-ai-gateway','novita-ai',_0x16b4a2(0x274,0x1ba,0xcc,-0x129),_0x16b4a2(0x1c6,0x622,0x3e6,0x59),_0x5a09f8(-0x8f,-0x115,-0x78,0x24)],'matchKind':'model-identical'},'moonshotai/kimi-k3-free':{'modelId':'moonshotai/kimi-k3-free','rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x5a09f8(-0xa9,-0x115,0x1e6,-0x2f1)],'matchKind':_0x16b4a2(0x3d5,0x38a,0x369,0x623)},'moonshotai/kimi-latest':{'modelId':_0x16b4a2(-0xec,-0x1c,0x1a,-0x60),'rates':{'input':0.5,'output':2.6,'cacheRead':0.125},'pricingProviderIds':[_0x16b4a2(0x1dc,0x272,0x2b,0x2aa)],'matchKind':_0x16b4a2(0x170,0x97,0x369,0x19)},'morph-v3-fast':{'modelId':_0x16b4a2(0x7bd,0x775,0x60b,0x551),'rates':{'input':0.8,'output':1.2},'pricingProviderIds':['morph'],'matchKind':_0x16b4a2(0x71a,0x57f,0x369,0x4fe)},'morph-v3-large':{'modelId':_0x5a09f8(0xd3,-0xb,-0x163,-0x2a6),'rates':{'input':0.9,'output':1.9},'pricingProviderIds':['morph'],'matchKind':'model-unique'},'morph/morph-v3-fast':{'modelId':_0x5a09f8(0x577,0x433,0x3f2,0x65f),'rates':{'input':0.8,'output':1.2},'pricingProviderIds':[_0x5a09f8(0x581,0x533,0x2e7,0x2c2),'openrouter',_0x16b4a2(0x263,0x477,0x3e6,0x1aa)],'matchKind':_0x5a09f8(0x275,0x102,-0x100,0x369)},'morph/morph-v3-large':{'modelId':_0x5a09f8(-0x10,-0x135,-0x358,-0x42f),'rates':{'input':0.9,'output':1.9},'pricingProviderIds':['kilo',_0x5a09f8(-0xa9,0x6d,0x15a,-0x147),_0x5a09f8(0x435,0x387,0x3ea,0x33f)],'matchKind':_0x5a09f8(0x43,0x102,0x33d,0x1b5)},'multi-qa-mpnet-base-dot-v1':{'modelId':_0x5a09f8(0xb5,-0x132,-0x496,-0x2f5),'rates':{'input':0.009,'output':0x0},'pricingProviderIds':[_0x5a09f8(0xd4,-0x7c,-0x45,0x7d)],'matchKind':_0x16b4a2(0x1eb,0x6c6,0x369,0x425)},'muse-spark-1-1':{'modelId':_0x16b4a2(0xb9,0x2bd,-0x8,0x158),'rates':{'input':1.25,'output':4.25,'cacheRead':0x1},'pricingProviderIds':[_0x5a09f8(0x565,0x1c5,-0x1ad,0x3ab)],'matchKind':_0x5a09f8(0x43f,0x30a,0x410,0x1fd)},'muse-spark-1.1':{'modelId':_0x5a09f8(-0x1e0,-0xbf,0x136,0x268),'rates':{'input':1.25,'output':4.25,'cacheRead':0.15},'pricingProviderIds':['abacus',_0x5a09f8(-0x313,-0x1,0x2e8,-0x34d),_0x16b4a2(0x3fb,0x4bd,0x383,0x5ee)],'matchKind':_0x16b4a2(0x4e2,0x30c,0x161,0x350)},'nanogpt/coding-router':{'modelId':_0x5a09f8(-0x1a,0x27a,0x1b3,0x34a),'rates':{'input':1.1,'output':2.2,'cacheRead':0.11},'pricingProviderIds':[_0x5a09f8(-0x346,-0x34,0x197,-0xd0)],'matchKind':_0x5a09f8(0x5ed,0x30a,0x512,-0xad)},'nanogpt/coding-router:high':{'modelId':_0x16b4a2(0x1bc,-0x266,0x2f,0x1c),'rates':{'input':1.1,'output':2.2,'cacheRead':0.11},'pricingProviderIds':[_0x16b4a2(-0x26e,-0x2e0,0x2b,-0xb4)],'matchKind':_0x16b4a2(0x5e2,0x1a5,0x369,0x14e)},'nanogpt/coding-router:low':{'modelId':'nanogpt/coding-router:low','rates':{'input':0.14,'output':0.28,'cacheRead':0.028},'pricingProviderIds':[_0x5a09f8(-0xc0,-0x34,0x1a5,0x356)],'matchKind':'model-unique'},'nanogpt/coding-router:max':{'modelId':_0x16b4a2(0x78a,0x268,0x3d0,0x686),'rates':{'input':0x5,'output':0x1e,'cacheRead':0.5},'pricingProviderIds':[_0x16b4a2(0x38,-0x361,0x2b,0x315)],'matchKind':_0x5a09f8(0x68c,0x30a,0x219,0xf9)},'nanogpt/coding-router:medium':{'modelId':_0x5a09f8(0x5bf,0x29f,0x564,0x355),'rates':{'input':0.14,'output':0.28,'cacheRead':0.028},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x108,0x30a,0x63a,0x599)},'nemotron-3-nano-30b':{'modelId':_0x5a09f8(0x113,0xa9,0x3e0,0x296),'rates':{'input':0.06,'output':0.24},'pricingProviderIds':['llmgateway'],'matchKind':_0x5a09f8(0x4ee,0x30a,0x4cb,0x58a)},'nemotron-3-nano-30b-a3b':{'modelId':_0x5a09f8(0x24c,0x1c9,0x30f,0x3ff),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x584,0x408,0x6c3,0x59b)],'matchKind':'model-unique'},'nemotron-3-super-120b':{'modelId':_0x16b4a2(0x5f8,0x7a9,0x4dd,0x426),'rates':{'input':0.3,'output':0.9},'pricingProviderIds':['llmgateway'],'matchKind':_0x16b4a2(0x263,0x305,0x369,0xad)},'nemotron-3-super-120b-a12b:free':{'modelId':_0x5a09f8(-0x262,0x2b,-0x2df,0x322),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x2f8,0x408,0x54e,0x534)],'matchKind':_0x5a09f8(0x2dd,0x30a,0x5b7,0x50d)},'nemotron-3-super-free':{'modelId':_0x5a09f8(0x1e3,-0x3d,-0x355,0x297),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':['opencode'],'matchKind':_0x5a09f8(0xd8,0x30a,-0x51,0xfe)},'nemotron-3-ultra':{'modelId':_0x16b4a2(-0xde,-0xea,0x1d9,0x251),'rates':{'input':0.1,'output':0.1},'pricingProviderIds':['routing-run'],'matchKind':_0x5a09f8(0x33,0x30a,0x683,0x4fc)},'nemotron-3-ultra-550b':{'modelId':_0x16b4a2(0x611,0x75f,0x5ba,0x3f0),'rates':{'input':0.5,'output':2.5,'cacheRead':0.15},'pricingProviderIds':['llmgateway'],'matchKind':'model-unique'},'nemotron-3-ultra-550b-a55b':{'modelId':_0x16b4a2(-0xe7,-0x177,-0x167,0x22a),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x226,0x757,0x467,0x632)],'matchKind':_0x5a09f8(0x4d5,0x30a,0x4fb,0x66)},'nemotron-3-ultra-550b-a55b:free':{'modelId':'nemotron-3-ultra-550b-a55b:free','rates':{'input':0x0,'output':0x0},'pricingProviderIds':['unorouter'],'matchKind':'model-unique'},'nemotron-3-ultra-free':{'modelId':_0x5a09f8(0x435,0x3f3,0x519,0x67),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x5a09f8(0x1dc,0x82,-0x268,0x6e)],'matchKind':_0x5a09f8(0x137,0x30a,0x34c,0x1dd)},'nemotron-nano-12b-v2-vl':{'modelId':_0x16b4a2(-0x2e7,0xe,-0x8d,0x2f),'rates':{'input':0.2,'output':0.6},'pricingProviderIds':[_0x16b4a2(0x36f,-0x11c,-0x1d,0x259)],'matchKind':_0x16b4a2(0x1bd,0x399,0x369,0x592)},'nex-agi/nex-n2-mini':{'modelId':_0x5a09f8(0x14c,0x44e,0x4ed,0x3b8),'rates':{'input':0.025,'output':0.1,'cacheRead':0.0025},'pricingProviderIds':[_0x16b4a2(0x3e2,0x383,0xcc,-0xd)],'matchKind':_0x16b4a2(0x6f9,0x311,0x369,0x2b)},'nex-agi/nex-n2-pro':{'modelId':_0x5a09f8(-0x13,-0xd2,-0x1b7,0xae),'rates':{'input':0.25,'output':0x1,'cacheRead':0.025},'pricingProviderIds':['openrouter'],'matchKind':'model-unique'},'nomic-embed-text':{'modelId':'nomic-embed-text','rates':{'input':0.05,'output':0x0},'pricingProviderIds':['tinfoil'],'matchKind':_0x5a09f8(0x3ee,0x30a,0x191,0x1e6)},'north-mini-code-1-0':{'modelId':_0x5a09f8(0x4d4,0x42c,0x498,0x69f),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x5b3,0x73a,0x496,0x60d)],'matchKind':_0x16b4a2(0x2e2,0x5ed,0x369,0x205)},'north-mini-code-free':{'modelId':_0x16b4a2(0x10f,0x3ba,0x35c,-0x37),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['opencode'],'matchKind':_0x16b4a2(0x279,0x445,0x369,0x576)},'nothingiisreal/L3.1-70B-Celeste-V0.1-BF16':{'modelId':_0x5a09f8(0x64c,0x355,0x581,0x3a0),'rates':{'input':0.49299999999999994,'output':0.49299999999999994},'pricingProviderIds':[_0x5a09f8(-0x231,-0x34,-0x2df,0x1f7)],'matchKind':_0x5a09f8(0x1e2,0x30a,0x4ed,0x13c)},'nousresearch/hermes-2-pro-llama-3-8b':{'modelId':'nousresearch/hermes-2-pro-llama-3-8b','rates':{'input':0.14,'output':0.14},'pricingProviderIds':[_0x5a09f8(0x36c,0x533,0x617,0x207),_0x16b4a2(0x443,0x684,0x3d1,0xbf)],'matchKind':_0x16b4a2(0xc5,-0x1dd,0x161,0x497)},'nousresearch/hermes-3-llama-3.1-405b':{'modelId':_0x16b4a2(0x5b4,0x101,0x294,0x271),'rates':{'input':0x1,'output':0x1},'pricingProviderIds':[_0x5a09f8(0x897,0x533,0x431,0x433),_0x16b4a2(0x389,-0x148,0xcc,-0x23c)],'matchKind':'model-identical'},'nousresearch/hermes-4-405b':{'modelId':_0x5a09f8(0x352,0x5aa,0x5ff,0x4ff),'rates':{'input':0x1,'output':0x3},'pricingProviderIds':[_0x5a09f8(0x68d,0x533,0x25e,0x595),'openrouter'],'matchKind':_0x5a09f8(0x2cc,0x102,0x3ba,-0x26b)},'nova-2-lite-v1':{'modelId':_0x5a09f8(-0xb8,0x172,-0x182,-0x7e),'rates':{'input':0x0,'output':0x0,'reasoning':0x0},'pricingProviderIds':[_0x5a09f8(0x68f,0x2ff,0x49b,0x2cf)],'matchKind':'model-unique'},'nova-2-pro-v1':{'modelId':_0x16b4a2(0x7d1,0x3aa,0x530,0x375),'rates':{'input':0x0,'output':0x0,'reasoning':0x0},'pricingProviderIds':[_0x16b4a2(0x5ad,0x6d4,0x35e,0x4ba)],'matchKind':_0x16b4a2(0x61c,0x1f,0x369,0x47d)},'nova-pro-v1':{'modelId':_0x5a09f8(0x92,0x3f9,0x2a3,0x2d8),'rates':{'input':1.016,'output':4.061},'pricingProviderIds':['cortecs'],'matchKind':_0x5a09f8(0x5bd,0x30a,0x1c0,0x258)},'novita/deepseek-v3.2':{'modelId':_0x5a09f8(0x1c6,0x350,0x3a1,0x24c),'rates':{'input':0.27,'output':0.4,'cacheRead':0.13},'pricingProviderIds':[_0x5a09f8(-0x26c,-0x1b8,0x78,-0x465)],'matchKind':_0x5a09f8(0x52a,0x30a,0x17f,0x2c6)},'novita/glm-5':{'modelId':_0x16b4a2(0x2d0,-0x293,0x109,0x49a),'rates':{'input':0x1,'output':3.2,'cacheRead':0.2},'pricingProviderIds':[_0x5a09f8(0x10b,-0x1b8,0xf9,0x5)],'matchKind':_0x5a09f8(0x10f,0x30a,0xe0,0x40c)},'novita/kimi-k2.5':{'modelId':_0x16b4a2(0x57c,0x84b,0x55c,0x31e),'rates':{'input':0.6,'output':0x3,'cacheRead':0.1},'pricingProviderIds':[_0x5a09f8(0xa9,-0x1b8,-0x4bd,-0x3e2)],'matchKind':_0x16b4a2(0x91,0x55e,0x369,0x5b7)},'novita/kimi-k2.6':{'modelId':'novita/kimi-k2.6','rates':{'input':0.96,'output':4.04,'cacheRead':0.16},'pricingProviderIds':[_0x5a09f8(-0x216,-0x1b8,-0x356,-0x10e)],'matchKind':_0x16b4a2(0x661,0x519,0x369,0x14d)},'nvidia--llama-3.2-nv-embedqa-1b':{'modelId':_0x16b4a2(0x21e,0x3d8,0x594,0x940),'rates':{'input':0.07,'output':0x0},'pricingProviderIds':['sap-ai-core'],'matchKind':_0x5a09f8(0x4f0,0x30a,0x108,0x60a)},'nvidia-nemotron-3-nano-30b-a3b':{'modelId':_0x16b4a2(0x4dc,0xfa,0x38f,0x622),'rates':{'input':0.075,'output':0.3},'pricingProviderIds':['venice'],'matchKind':_0x16b4a2(0x329,0x11a,0x369,-0x28)},'nvidia-nemotron-3-super-120b':{'modelId':_0x16b4a2(-0x295,-0x1f3,0x14,0x72),'rates':{'input':0.3,'output':0.65},'pricingProviderIds':['digitalocean'],'matchKind':_0x16b4a2(0xb7,0xa2,0x369,0x6c8)},'nvidia-nemotron-3-ultra-550b-a55b':{'modelId':_0x16b4a2(0x709,0x6cc,0x3d4,0x6a5),'rates':{'input':0.625,'output':3.125,'cacheRead':0.1875},'pricingProviderIds':['venice'],'matchKind':_0x16b4a2(0x595,0x42f,0x369,0x67b)},'nvidia-nemotron-cascade-2-30b-a3b':{'modelId':_0x5a09f8(-0x392,-0x1ba,0x14b,-0x343),'rates':{'input':0.14,'output':0.8},'pricingProviderIds':['venice'],'matchKind':_0x5a09f8(0x598,0x30a,0x690,0x197)},'nvidia.nemotron-nano-12b-v2':{'modelId':_0x5a09f8(0x39,-0xf0,0xa8,0x1c7),'rates':{'input':0.2,'output':0.6},'pricingProviderIds':[_0x16b4a2(0x4cc,0x3e3,0x2aa,0x350)],'matchKind':_0x16b4a2(0x219,0x21e,0x369,0x158)},'nvidia.nemotron-nano-3-30b':{'modelId':_0x16b4a2(0x254,-0x43f,-0x82,0x98),'rates':{'input':0.06,'output':0.24},'pricingProviderIds':[_0x16b4a2(0x4af,0x305,0x2aa,0x628)],'matchKind':_0x5a09f8(0x420,0x30a,-0x48,0x44a)},'nvidia.nemotron-nano-9b-v2':{'modelId':_0x5a09f8(0x446,0x24e,-0x6b,-0xb2),'rates':{'input':0.06,'output':0.23},'pricingProviderIds':[_0x16b4a2(0x1b3,0x195,0x2aa,-0x7f)],'matchKind':_0x16b4a2(0x5d5,0x54c,0x369,0xdc)},'nvidia.nemotron-super-3-120b':{'modelId':_0x5a09f8(0x423,0x3c9,0x3ab,0x22c),'rates':{'input':0.15,'output':0.65},'pricingProviderIds':[_0x16b4a2(0x27e,0x613,0x2aa,0x2c1)],'matchKind':_0x5a09f8(0x286,0x30a,0x406,0x4c4)},'nvidia/DeepSeek-V3.2-NVFP4':{'modelId':_0x16b4a2(-0x173,0x10a,-0xe0,-0x247),'rates':{'input':0.55,'output':1.65},'pricingProviderIds':[_0x5a09f8(0x3b8,0x396,0x199,0x573)],'matchKind':_0x5a09f8(0x545,0x30a,0x58f,0x193)},'nvidia/Llama-3.1-Nemotron-70B-Instruct-HF':{'modelId':_0x16b4a2(0x755,0x3a7,0x5e7,0x81a),'rates':{'input':0.357,'output':0.408},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x110,0x30a,0x72,0x214)},'nvidia/Llama-3.3-70B-Instruct-FP8':{'modelId':'nvidia/Llama-3.3-70B-Instruct-FP8','rates':{'input':1.15,'output':1.15},'pricingProviderIds':[_0x16b4a2(0x3d8,-0x120,0x11b,0x311)],'matchKind':_0x5a09f8(0x12e,0x30a,0x323,0x607)},'nvidia/Llama-3.3-Nemotron-Super-49B-v1':{'modelId':'nvidia/Llama-3.3-Nemotron-Super-49B-v1','rates':{'input':0.15,'output':0.15},'pricingProviderIds':[_0x5a09f8(0x2e5,-0x34,-0x45,-0x303)],'matchKind':_0x5a09f8(0x51f,0x30a,0x557,0x26f)},'nvidia/Llama-3.3-Nemotron-Super-49B-v1.5':{'modelId':'nvidia/Llama-3.3-Nemotron-Super-49B-v1.5','rates':{'input':0.4,'output':0.4},'pricingProviderIds':['deepinfra'],'matchKind':'model-unique'},'nvidia/Llama-3_1-Nemotron-Ultra-253B-v1':{'modelId':_0x5a09f8(0x1d3,0x3d1,0x368,0xc4),'rates':{'input':0.6,'output':1.8,'cacheRead':0.06,'cacheWrite':0.75},'pricingProviderIds':[_0x5a09f8(0x2e0,0x2b2,0x407,0x4bd)],'matchKind':_0x16b4a2(0x2d8,0x23a,0x369,0x23d)},'nvidia/Llama-3_3-Nemotron-Super-49B-v1_5':{'modelId':_0x5a09f8(0x3ab,0x4ab,0x2a3,0x138),'rates':{'input':0.05,'output':0.25},'pricingProviderIds':[_0x5a09f8(-0x234,-0x34,0x28a,0x6d)],'matchKind':_0x16b4a2(0x39,0x720,0x369,0x639)},'nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B':{'modelId':_0x16b4a2(0x3d7,0x5ef,0x376,0x6a7),'rates':{'input':0.06,'output':0.24,'cacheRead':0.006,'cacheWrite':0.075},'pricingProviderIds':[_0x16b4a2(0x2d6,0x3ef,0x311,0x7b)],'matchKind':'model-unique'},'nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16':{'modelId':'nvidia/NVIDIA-Nemotron-3-Nano-30B-A3B-BF16','rates':{'input':0.05,'output':0.2,'cacheRead':0.05,'cacheWrite':0.05},'pricingProviderIds':['pioneer'],'matchKind':_0x16b4a2(0x531,0x294,0x369,0x500)},'nvidia/NVIDIA-Nemotron-3-Ultra-550B-A55B-BF16':{'modelId':_0x16b4a2(0x606,0x747,0x3d3,0x123),'rates':{'input':0.5,'output':2.5,'cacheRead':0.15,'cacheWrite':0.5},'pricingProviderIds':[_0x16b4a2(0x606,0x2c5,0x584,0x279)],'matchKind':_0x5a09f8(0x1fe,0x30a,0x67e,0x39c)},'nvidia/Nemotron-120B-A12B':{'modelId':_0x16b4a2(-0x2be,0x1eb,-0x139,0x182),'rates':{'input':0.3,'output':0.75,'cacheRead':0.06},'pricingProviderIds':[_0x16b4a2(0x619,0x384,0x43f,0x2d3)],'matchKind':'model-unique'},'nvidia/Nemotron-3-Nano-30B-A3B':{'modelId':_0x5a09f8(0xf5,0xfb,-0x7d,0x3e3),'rates':{'input':0.05,'output':0.2},'pricingProviderIds':['deepinfra'],'matchKind':'model-unique'},'nvidia/Nemotron-3-Nano-Omni':{'modelId':_0x5a09f8(0x5d5,0x316,-0x9,0x3),'rates':{'input':0.06,'output':0.24,'cacheRead':0.006,'cacheWrite':0.075},'pricingProviderIds':[_0x5a09f8(0x2cf,0x2b2,0x3b3,0x369)],'matchKind':_0x16b4a2(0x2d3,0x24a,0x369,0xe4)},'nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning':{'modelId':'nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning','rates':{'input':0.2,'output':0.8},'pricingProviderIds':[_0x5a09f8(-0x274,0xb1,-0x238,-0x31)],'matchKind':_0x5a09f8(0x3e5,0x30a,0x161,0x8a)},'nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-BF16':{'modelId':'nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-BF16','rates':{'input':0.13,'output':0.38},'pricingProviderIds':[_0x16b4a2(0x7a5,0x120,0x3f5,0x168)],'matchKind':_0x5a09f8(0x57d,0x30a,0x5ca,0x1d7)},'nvidia/Nemotron-Cascade-2-30B-A3B':{'modelId':_0x5a09f8(-0x124,0xf5,0x2b2,0x239),'rates':{'input':0.15,'output':0.6},'pricingProviderIds':['vultr'],'matchKind':'model-unique'},'nvidia/active-speaker-detection':{'modelId':_0x5a09f8(-0x180,-0x162,-0x2c9,0x10),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0xc6,0x3b,-0x1c1,0x247)],'matchKind':_0x16b4a2(0x4e9,0x184,0x369,0x400)},'nvidia/bevformer':{'modelId':_0x16b4a2(0x585,0x2c6,0x318,0x43a),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['nvidia'],'matchKind':_0x16b4a2(0x48c,0x41,0x369,0x66e)},'nvidia/cosmos-predict1-5b':{'modelId':_0x5a09f8(0x492,0x3de,0xf6,0x51e),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x3c4,0x3b,0x37b,0x12a)],'matchKind':_0x5a09f8(0x60c,0x30a,0x117,0x647)},'nvidia/cosmos-transfer1-7b':{'modelId':'nvidia/cosmos-transfer1-7b','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x2b7,0x3b,0xa8,0x27f)],'matchKind':_0x16b4a2(0x58a,0xfd,0x369,0x608)},'nvidia/cosmos-transfer2_5-2b':{'modelId':'nvidia/cosmos-transfer2_5-2b','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0xce,-0x1f9,0x9a,-0x2de)],'matchKind':_0x5a09f8(0x4eb,0x30a,0x3ee,-0x6a)},'nvidia/gliner-pii':{'modelId':_0x5a09f8(0x185,0x512,0x3ec,0x584),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0x165,0x196,0x9a,0xd9)],'matchKind':_0x5a09f8(0x33f,0x30a,0x219,0x39f)},'nvidia/llama-3.3-nemotron-super-49b-v1.5':{'modelId':_0x16b4a2(0x138,0x2e0,0x487,0x6da),'rates':{'input':0.1,'output':0.4},'pricingProviderIds':[_0x16b4a2(0x67a,0x68b,0x592,0x5a5)],'matchKind':'model-unique'},'nvidia/llama-3_1-nemotron-safety-guard-8b-v3':{'modelId':_0x5a09f8(-0xa9,-0x44,0xa9,0x2e4),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['nvidia'],'matchKind':'model-unique'},'nvidia/llama-3_2-nemoretriever-300m-embed-v1':{'modelId':_0x5a09f8(0x1fa,-0xc6,-0x5e,0x28),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x41,0x3b,-0x2d8,-0x92)],'matchKind':_0x16b4a2(0x2d4,0x6aa,0x369,0x665)},'nvidia/llama-nemotron-embed-vl-1b-v2':{'modelId':_0x5a09f8(-0x278,0x13d,0x52,0x405),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x90,-0x26b,0x9a,-0x13c)],'matchKind':_0x16b4a2(0x708,0x2ba,0x369,0x516)},'nvidia/llama-nemotron-rerank-vl-1b-v2':{'modelId':_0x5a09f8(-0x27,0x35b,0x39c,0x48c),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0xaa,0x3b,0x254,0x26b)],'matchKind':_0x16b4a2(0x1f,-0x45,0x369,0x5d9)},'nvidia/magpie-tts-zeroshot':{'modelId':_0x5a09f8(0x3d9,0x4aa,0x320,0x7e1),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0xaa,0x3b,0x25c,0x14c)],'matchKind':_0x16b4a2(0x21e,0x21e,0x369,0x2e5)},'nvidia/nemotron-3-content-safety':{'modelId':_0x16b4a2(0x1a6,0x65,0x1c0,0x1dc),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x1e1,0x3b,0x1b7,0x2f3)],'matchKind':_0x16b4a2(0x559,-0x17,0x369,0x4e6)},'nvidia/nemotron-3-nano-30b-a3b:free':{'modelId':_0x5a09f8(0x67,0x14,-0x204,0x12c),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['openrouter'],'matchKind':_0x16b4a2(0x331,0x491,0x369,0x3a1)},'nvidia/nemotron-3-nano-omni-30b-a3b-reasoning:free':{'modelId':_0x5a09f8(-0x2f,-0x159,0xe1,-0x140),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['kilo',_0x5a09f8(0x29d,0x6d,0x5a,-0x29)],'matchKind':'model-identical'},'nvidia/nemotron-3-super-120b-a12b:free':{'modelId':_0x5a09f8(0x155,0x2ce,0x3ff,0x463),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x776,0x533,0x597,0x8d4),'openrouter'],'matchKind':_0x5a09f8(0x3e1,0x102,0x136,0x32f)},'nvidia/nemotron-3-super-120b-a12b:thinking':{'modelId':_0x16b4a2(0x139,0x70,0x395,0x138),'rates':{'input':0.05,'output':0.25},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x647,0x30a,0x573,0x3de)},'nvidia/nemotron-3-ultra-550b-a55b:free':{'modelId':_0x16b4a2(-0x26,0x269,-0xaa,0x157),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x268,0x6d,-0x207,0x85)],'matchKind':_0x5a09f8(-0x11,0x30a,0x159,0x21d)},'nvidia/nemotron-3.5-content-safety:free':{'modelId':_0x16b4a2(0x620,0x27d,0x268,0x371),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x325,0x6d,-0x66,0x33)],'matchKind':'model-unique'},'nvidia/nemotron-content-safety-reasoning-4b':{'modelId':'nvidia/nemotron-content-safety-reasoning-4b','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x2cd,0x3c4,0x9a,-0x2c)],'matchKind':'model-unique'},'nvidia/nemotron-mini-4b-instruct':{'modelId':_0x5a09f8(-0x1c5,0x1a1,0x2e0,-0x59),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0xe2,0x3b,0xb1,-0x185)],'matchKind':_0x5a09f8(0x2c6,0x30a,-0x81,0x63b)},'nvidia/nemotron-nano-12b-v2-vl':{'modelId':_0x5a09f8(0x150,0x3fd,0x335,0x7ab),'rates':{'input':0.2,'output':0.6},'pricingProviderIds':['vercel'],'matchKind':'model-unique'},'nvidia/nemotron-nano-12b-v2-vl:free':{'modelId':_0x16b4a2(0x23c,0xd4,0xcf,0x2ae),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x1cb,0x6d,0x9b,0x3ab)],'matchKind':_0x5a09f8(0x58,0x30a,0x487,0x608)},'nvidia/nemotron-nano-9b-v2:free':{'modelId':'nvidia/nemotron-nano-9b-v2:free','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x96,0x6d,0x10c,-0x2a3)],'matchKind':_0x5a09f8(0x266,0x30a,0x283,0x46c)},'nvidia/nemotron-voicechat':{'modelId':_0x5a09f8(0x542,0x279,0x4b,0x8),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x30c,0x3b,-0x171,0x254)],'matchKind':'model-unique'},'nvidia/nv-embed-v1':{'modelId':_0x16b4a2(0x295,-0x19a,-0xb0,-0x56),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x373,0x230,0x9a,0x32c)],'matchKind':_0x16b4a2(0x34f,0x5af,0x369,0x60a)},'nvidia/nv-embedcode-7b-v1':{'modelId':_0x16b4a2(0x375,0x299,0x1e1,0x1d6),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x142,0x3b,-0x144,0x2ab)],'matchKind':_0x5a09f8(-0x40,0x30a,0x67a,0x4b4)},'nvidia/rerank-qa-mistral-4b':{'modelId':_0x5a09f8(0x47f,0xd4,-0xef,0x35c),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0x2ac,-0x65,0x9a,0x97)],'matchKind':_0x5a09f8(0x290,0x30a,0x372,0x77)},'nvidia/riva-translate-4b-instruct-v1_1':{'modelId':_0x5a09f8(0x36e,0x77,0x417,-0x1d8),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x110,0x3b,-0x27e,-0x342)],'matchKind':'model-unique'},'nvidia/sparsedrive':{'modelId':'nvidia/sparsedrive','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x65,0x3b,0x2da,-0x72)],'matchKind':_0x5a09f8(0x41e,0x30a,-0x97,0x1fb)},'nvidia/streampetr':{'modelId':_0x16b4a2(0x214,0xf7,0x417,0x627),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x15b,0x3b,-0x28b,-0x238)],'matchKind':'model-unique'},'nvidia/studiovoice':{'modelId':'nvidia/studiovoice','rates':{'input':0x0,'output':0x0},'pricingProviderIds':['nvidia'],'matchKind':_0x5a09f8(-0x31,0x30a,-0x6a,0x5a3)},'nvidia/synthetic-video-detector':{'modelId':'nvidia/synthetic-video-detector','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x258,0x3b,-0x205,0x2b1)],'matchKind':'model-unique'},'nvidia/usdcode':{'modelId':_0x5a09f8(0x251,0x2c4,0x426,0x374),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0x6b,-0x15d,0x9a,-0x126)],'matchKind':_0x16b4a2(0x500,0x10d,0x369,0x7a)},'nvidia/usdvalidate':{'modelId':_0x16b4a2(0x41f,0x3c9,0x3db,0x2b9),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x42,0x3b,0x3f,-0x128)],'matchKind':_0x5a09f8(0x4e9,0x30a,0x31d,-0x77)},'o1':{'modelId':'o1','rates':{'input':0xf,'output':0x3c,'cacheRead':7.5},'pricingProviderIds':['azure','azure-cognitive-services',_0x16b4a2(0x259,0x202,0x4cb,0x497),_0x16b4a2(-0x30,0xb5,0x5e,0x3cf),_0x5a09f8(0x194,0x10f,0x294,0x4ba)],'matchKind':_0x16b4a2(0x331,0x168,0x161,0x58)},'o1-mini':{'modelId':'o1-mini','rates':{'input':1.1,'output':4.4,'cacheRead':0.55},'pricingProviderIds':[_0x5a09f8(-0x11f,-0x10e,0xbf,0x7d),'azure-cognitive-services',_0x16b4a2(0x520,0x4a6,0x4cb,0x58c)],'matchKind':'model-identical'},'o1-pro':{'modelId':_0x5a09f8(0x188,-0x46,0x194,-0x2f6),'rates':{'input':0x96,'output':0x258},'pricingProviderIds':[_0x16b4a2(-0x1d4,0x48b,0x16e,0x3f3)],'matchKind':_0x16b4a2(0x225,0x4c8,0x369,-0x1d)},'olafangensan-glm-4.7-flash-heretic':{'modelId':_0x5a09f8(0x1f0,0x4e0,0x749,0x1bc),'rates':{'input':0.07,'output':0.4,'cacheRead':0.035},'pricingProviderIds':['venice'],'matchKind':'model-unique'},'open-mistral-7b':{'modelId':_0x16b4a2(0x675,0x1fc,0x441,0x33e),'rates':{'input':0.25,'output':0.25},'pricingProviderIds':[_0x5a09f8(0x50b,0x1a5,0x443,0x443)],'matchKind':'model-unique'},'open-mistral-nemo':{'modelId':_0x16b4a2(0x7f5,0x6ca,0x4fb,0x49d),'rates':{'input':0.15,'output':0.15},'pricingProviderIds':['mistral'],'matchKind':'model-unique'},'open-mixtral-8x22b':{'modelId':'open-mixtral-8x22b','rates':{'input':0x2,'output':0x6},'pricingProviderIds':[_0x5a09f8(-0x1ad,0x1a5,0x103,0x2b5)],'matchKind':_0x5a09f8(0x237,0x30a,0x92,0x48d)},'open-mixtral-8x7b':{'modelId':_0x5a09f8(0x29a,0x4df,0x28d,0x5ba),'rates':{'input':0.7,'output':0.7},'pricingProviderIds':[_0x16b4a2(0x380,-0xde,0x204,0xc1)],'matchKind':_0x5a09f8(0x63d,0x30a,0x22d,0x2a1)},'openai-gpt-4.1':{'modelId':_0x5a09f8(0x20e,-0x8b,-0x3a0,0xba),'rates':{'input':0x2,'output':0x8,'cacheRead':0.5},'pricingProviderIds':[_0x16b4a2(-0x2f9,0xa,-0x1d,-0x34c)],'matchKind':'model-unique'},'openai-gpt-4o':{'modelId':_0x5a09f8(0x3fa,0x252,0x414,0x1bd),'rates':{'input':2.5,'output':0xa,'cacheRead':1.25},'pricingProviderIds':[_0x16b4a2(0x1d3,0xe1,-0x1d,-0x68)],'matchKind':_0x16b4a2(0x2bf,0x5dc,0x369,0x252)},'openai-gpt-4o-2024-11-20':{'modelId':'openai-gpt-4o-2024-11-20','rates':{'input':3.125,'output':12.5},'pricingProviderIds':['venice'],'matchKind':'model-unique'},'openai-gpt-4o-mini':{'modelId':'openai-gpt-4o-mini','rates':{'input':0.15,'output':0.6,'cacheRead':0.075},'pricingProviderIds':[_0x16b4a2(0x15e,0x353,-0x1d,-0x220)],'matchKind':_0x5a09f8(0x166,0x30a,0x486,0x254)},'openai-gpt-4o-mini-2024-07-18':{'modelId':_0x5a09f8(0x330,0x28c,0x15c,0x2b1),'rates':{'input':0.1875,'output':0.75,'cacheRead':0.09375},'pricingProviderIds':[_0x16b4a2(0x6fd,0x3ef,0x5a2,0x812)],'matchKind':_0x5a09f8(0xd,0x30a,0x6a6,0x453)},'openai-gpt-5':{'modelId':_0x16b4a2(-0x64,-0x197,0x4,0x326),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125},'pricingProviderIds':[_0x16b4a2(0x1e4,0x1f1,-0x1d,0x395)],'matchKind':'model-unique'},'openai-gpt-5-mini':{'modelId':'openai-gpt-5-mini','rates':{'input':0.25,'output':0x2,'cacheRead':0.025},'pricingProviderIds':[_0x5a09f8(-0x398,-0x7c,-0x387,0x26f)],'matchKind':_0x5a09f8(0x46f,0x30a,0x663,0xa0)},'openai-gpt-5-nano':{'modelId':_0x16b4a2(0x7c,-0x2aa,-0x42,0x1c9),'rates':{'input':0.05,'output':0.4,'cacheRead':0.005},'pricingProviderIds':[_0x5a09f8(-0x48,-0x7c,0x331,-0x3ec)],'matchKind':_0x5a09f8(-0x60,0x30a,0x1f5,0x5ae)},'openai-gpt-5.1-codex-max':{'modelId':_0x16b4a2(0x383,0x6f,0x42f,0x24d),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125},'pricingProviderIds':[_0x16b4a2(-0x283,-0x262,-0x1d,0x1b5)],'matchKind':_0x16b4a2(0x3b2,0x4a0,0x369,0x3f8)},'openai-gpt-5.2':{'modelId':_0x5a09f8(0x1e3,0x11e,0x376,0x2a8),'rates':{'input':1.75,'output':0xe,'cacheRead':0.175},'pricingProviderIds':[_0x16b4a2(0xe7,-0x374,-0x1d,-0x27b)],'matchKind':'model-unique'},'openai-gpt-5.2-pro':{'modelId':'openai-gpt-5.2-pro','rates':{'input':0x15,'output':0xa8},'pricingProviderIds':[_0x5a09f8(-0x316,-0x7c,0x22f,-0x16c)],'matchKind':_0x5a09f8(-0x4,0x30a,0x24f,0x209)},'openai-gpt-5.3-codex':{'modelId':_0x16b4a2(0x48b,0x23c,0x4a6,0x3e4),'rates':{'input':1.75,'output':0xe,'cacheRead':0.175},'pricingProviderIds':['digitalocean'],'matchKind':_0x16b4a2(0x469,0x24b,0x369,0x2ce)},'openai-gpt-5.4':{'modelId':_0x16b4a2(0x4e1,0x1fa,0x56e,0x40b),'rates':{'input':2.5,'output':0xf,'cacheRead':0.25},'pricingProviderIds':[_0x16b4a2(-0x37,0xf8,-0x1d,-0x350)],'matchKind':_0x16b4a2(0x5d8,0x3c5,0x369,0xe2)},'openai-gpt-5.4-mini':{'modelId':'openai-gpt-5.4-mini','rates':{'input':0.75,'output':4.5,'cacheRead':0.075},'pricingProviderIds':[_0x16b4a2(0x30c,0xae,-0x1d,0x35a)],'matchKind':'model-unique'},'openai-gpt-5.4-nano':{'modelId':_0x16b4a2(0x338,0x1c4,0xf8,0x4bc),'rates':{'input':0.2,'output':1.25,'cacheRead':0.02},'pricingProviderIds':[_0x5a09f8(-0x19a,-0x7c,-0x3a1,-0x295)],'matchKind':_0x16b4a2(0x4c6,0x53c,0x369,0x206)},'openai-gpt-5.4-pro':{'modelId':_0x5a09f8(0x25a,0x1b1,-0x14a,0x327),'rates':{'input':0x1e,'output':0xb4},'pricingProviderIds':[_0x16b4a2(-0x1c3,0x11e,-0x1d,0x59)],'matchKind':'model-unique'},'openai-gpt-5.5':{'modelId':'openai-gpt-5.5','rates':{'input':0x5,'output':0x1e,'cacheRead':0.5},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0xa,'output':0x2d,'cacheRead':0x1}],'pricingProviderIds':['digitalocean'],'matchKind':_0x5a09f8(0x50c,0x30a,0x472,0x2ef)},'openai-gpt-52':{'modelId':_0x5a09f8(0x264,0x327,0x1ca,0x153),'rates':{'input':2.19,'output':17.5,'cacheRead':0.219},'pricingProviderIds':[_0x16b4a2(0x922,0x547,0x5a2,0x343)],'matchKind':_0x16b4a2(0x131,0x21b,0x369,0x510)},'openai-gpt-52-codex':{'modelId':_0x16b4a2(-0x1d,0x2b4,0x140,-0x13d),'rates':{'input':2.19,'output':17.5,'cacheRead':0.219},'pricingProviderIds':[_0x16b4a2(0x6b7,0x5a8,0x5a2,0x271)],'matchKind':'model-unique'},'openai-gpt-53-codex':{'modelId':_0x5a09f8(0x256,0x1c7,-0x16c,0x17d),'rates':{'input':2.19,'output':17.5,'cacheRead':0.219},'pricingProviderIds':[_0x5a09f8(0x77e,0x543,0x6c5,0x283)],'matchKind':'model-unique'},'openai-gpt-54':{'modelId':_0x5a09f8(0x1da,0x353,0xb7,0x3cf),'rates':{'input':3.13,'output':18.8,'cacheRead':0.313},'pricingProviderIds':[_0x16b4a2(0x6f1,0x768,0x5a2,0x754)],'matchKind':_0x16b4a2(0x477,0x2ae,0x369,0x181)},'openai-gpt-54-mini':{'modelId':'openai-gpt-54-mini','rates':{'input':0.9375,'output':5.625,'cacheRead':0.09375},'pricingProviderIds':['venice'],'matchKind':_0x16b4a2(0x6e1,0x72,0x369,0x2de)},'openai-gpt-54-pro':{'modelId':'openai-gpt-54-pro','rates':{'input':37.5,'output':0xe1},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x4b,'output':337.5}],'pricingProviderIds':['venice'],'matchKind':_0x5a09f8(0x360,0x30a,0x249,0x6ac)},'openai-gpt-55':{'modelId':_0x5a09f8(0xab,0x2b8,0x4a4,-0xfd),'rates':{'input':6.25,'output':37.5,'cacheRead':0.625},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':12.5,'output':56.25,'cacheRead':1.25}],'pricingProviderIds':[_0x16b4a2(0x591,0x2e6,0x5a2,0x578)],'matchKind':'model-unique'},'openai-gpt-55-pro':{'modelId':_0x16b4a2(-0x394,0x4f,-0xcd,-0x387),'rates':{'input':37.5,'output':0xe1},'pricingProviderIds':[_0x16b4a2(0x65e,0x88f,0x5a2,0x7a1)],'matchKind':_0x16b4a2(0x58f,0x269,0x369,0x3bc)},'openai-gpt-56-luna':{'modelId':_0x5a09f8(-0x47b,-0x196,-0x223,0x201),'rates':{'input':1.25,'output':7.5,'cacheRead':0.125,'cacheWrite':1.5625},'pricingProviderIds':[_0x16b4a2(0x794,0x943,0x5a2,0x68b)],'matchKind':'model-unique'},'openai-gpt-56-luna-pro':{'modelId':_0x5a09f8(0x4fd,0x3cc,0x6e8,0x336),'rates':{'input':1.25,'output':7.5,'cacheRead':0.125,'cacheWrite':1.5625},'pricingProviderIds':[_0x5a09f8(0x771,0x543,0x25f,0x661)],'matchKind':'model-unique'},'openai-gpt-56-sol':{'modelId':'openai-gpt-56-sol','rates':{'input':6.25,'output':37.5,'cacheRead':0.625,'cacheWrite':7.8125},'pricingProviderIds':[_0x16b4a2(0x6fd,0x48c,0x5a2,0x95f)],'matchKind':_0x16b4a2(0x499,0x37b,0x369,0x572)},'openai-gpt-56-sol-pro':{'modelId':_0x16b4a2(-0x319,0x156,0x8d,0xea),'rates':{'input':6.25,'output':37.5,'cacheRead':0.625,'cacheWrite':7.8125},'pricingProviderIds':[_0x16b4a2(0x689,0x6ea,0x5a2,0x61e)],'matchKind':_0x5a09f8(0x143,0x30a,-0x2e,0x3cd)},'openai-gpt-56-terra':{'modelId':_0x16b4a2(0x2c1,0x5cb,0x460,0x150),'rates':{'input':3.125,'output':18.75,'cacheRead':0.3125,'cacheWrite':3.90625},'pricingProviderIds':['venice'],'matchKind':_0x5a09f8(0x487,0x30a,0x134,0x1d7)},'openai-gpt-56-terra-pro':{'modelId':_0x5a09f8(0x314,0x3d3,0x120,0x27e),'rates':{'input':3.125,'output':18.75,'cacheRead':0.3125,'cacheWrite':3.90625},'pricingProviderIds':[_0x5a09f8(0x3ad,0x543,0x1f6,0x4cb)],'matchKind':_0x5a09f8(0x393,0x30a,0x685,0x46e)},'openai-gpt-image-1':{'modelId':_0x16b4a2(0x53,0x39a,0x125,0x13b),'rates':{'input':0x5,'output':0x28,'cacheRead':1.25},'pricingProviderIds':[_0x5a09f8(0x260,-0x7c,-0x102,0x1e4)],'matchKind':_0x16b4a2(0x3f8,0x193,0x369,0x1c4)},'openai-gpt-image-1.5':{'modelId':_0x16b4a2(0x466,0x68d,0x5bd,0x262),'rates':{'input':0x5,'output':0xa,'cacheRead':0x1},'pricingProviderIds':[_0x16b4a2(0x35b,0x2f8,-0x1d,-0x2a5)],'matchKind':_0x16b4a2(0x6e,0x239,0x369,0x414)},'openai-gpt-oss-20b':{'modelId':_0x16b4a2(0x268,0x898,0x5ea,0x666),'rates':{'input':0.05,'output':0.45},'pricingProviderIds':[_0x16b4a2(0x277,-0x2cc,-0x1d,-0x61)],'matchKind':_0x5a09f8(-0x55,0x30a,0x3ad,0x2e3)},'openai-o1':{'modelId':_0x16b4a2(0x211,0xd6,0x131,0x4bd),'rates':{'input':0xf,'output':0x3c,'cacheRead':7.5},'pricingProviderIds':['digitalocean'],'matchKind':_0x5a09f8(0x1be,0x30a,0x557,0x481)},'openai-o3':{'modelId':_0x5a09f8(0x3e4,0x53,0x3e2,0x230),'rates':{'input':0x2,'output':0x8,'cacheRead':0.5},'pricingProviderIds':[_0x5a09f8(-0x42d,-0x7c,0x213,-0xac)],'matchKind':_0x5a09f8(-0x95,0x30a,0x625,0x4cc)},'openai-o3-mini':{'modelId':_0x5a09f8(0xe,0xb3,0x16d,-0x156),'rates':{'input':1.1,'output':4.4,'cacheRead':0.55},'pricingProviderIds':[_0x16b4a2(-0x103,0x1c0,-0x1d,-0x360)],'matchKind':_0x16b4a2(0x1c4,0x6f1,0x369,0x677)},'openai.gpt-5.4':{'modelId':'openai.gpt-5.4','rates':{'input':2.75,'output':16.5,'cacheRead':0.275},'pricingProviderIds':[_0x5a09f8(0x4e8,0x24b,0x19c,0x44f)],'matchKind':_0x16b4a2(0x10e,0x2a9,0x369,0x4be)},'openai.gpt-5.5':{'modelId':_0x16b4a2(0x3ed,0x63,0x1a7,-0x2b),'rates':{'input':5.5,'output':0x21,'cacheRead':0.55},'pricingProviderIds':[_0x16b4a2(0x126,0x4c0,0x2aa,0x21e)],'matchKind':'model-unique'},'openai.gpt-5.6-luna':{'modelId':_0x5a09f8(0x8ec,0x5a6,0x2d3,0x3c4),'rates':{'input':0x1,'output':0x6,'cacheRead':0.1,'cacheWrite':1.25},'pricingProviderIds':[_0x16b4a2(-0x13,0x262,0x2aa,0xd9)],'matchKind':_0x16b4a2(0x24b,0x29a,0x369,0x649)},'openai.gpt-5.6-sol':{'modelId':_0x16b4a2(0x410,0x2bd,0x1b3,0x1fb),'rates':{'input':0x5,'output':0x1e,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x5a09f8(0xad,0x24b,-0xbb,0x50f)],'matchKind':_0x16b4a2(0x343,0x141,0x369,0x1c5)},'openai.gpt-5.6-terra':{'modelId':_0x5a09f8(0x3e0,0xae,0x36c,0x3fc),'rates':{'input':2.5,'output':0xf,'cacheRead':0.25,'cacheWrite':3.125},'pricingProviderIds':[_0x5a09f8(0x5fc,0x24b,-0x142,0x217)],'matchKind':_0x16b4a2(0x515,0x53c,0x369,0x725)},'openai.gpt-oss-120b':{'modelId':_0x5a09f8(-0x538,-0x18f,-0x122,-0x1c0),'rates':{'input':0.15,'output':0.6},'pricingProviderIds':[_0x16b4a2(0x5ac,0x445,0x2aa,0x2c5)],'matchKind':_0x16b4a2(0x29,0x430,0x369,0x334)},'openai.gpt-oss-120b-1:0':{'modelId':_0x5a09f8(0x451,0x52c,0x64e,0x3ff),'rates':{'input':0.15,'output':0.6},'pricingProviderIds':[_0x5a09f8(0x4dc,0x24b,0x3fb,0x392)],'matchKind':_0x5a09f8(0x79,0x30a,0x3d6,-0x3c)},'openai.gpt-oss-20b':{'modelId':_0x5a09f8(0x1ab,0x1e6,0x10c,0xfa),'rates':{'input':0.07,'output':0.3},'pricingProviderIds':['amazon-bedrock'],'matchKind':'model-unique'},'openai.gpt-oss-20b-1:0':{'modelId':_0x5a09f8(-0x1bc,-0x61,-0x3cc,0x350),'rates':{'input':0.07,'output':0.3},'pricingProviderIds':[_0x5a09f8(0x38b,0x24b,-0xe5,0x517)],'matchKind':_0x16b4a2(0x35b,0x5ce,0x369,0x5d3)},'openai.gpt-oss-safeguard-120b':{'modelId':_0x5a09f8(-0x89,-0x134,-0x48b,-0x1cd),'rates':{'input':0.15,'output':0.6},'pricingProviderIds':[_0x5a09f8(0x10f,0x24b,0x4a8,0x41)],'matchKind':_0x16b4a2(0x3da,0x702,0x369,0x52c)},'openai.gpt-oss-safeguard-20b':{'modelId':_0x16b4a2(0x2df,0x529,0x366,0x42b),'rates':{'input':0.07,'output':0.2},'pricingProviderIds':[_0x16b4a2(0x32,0x35,0x2aa,0x49b)],'matchKind':'model-unique'},'openai/chat-completion/models/gpt-oss-120b-high-throughput':{'modelId':_0x16b4a2(0x6c,0x37c,0x1bb,0x26f),'rates':{'input':0.09,'output':0.36},'pricingProviderIds':['clarifai'],'matchKind':_0x5a09f8(0x1f1,0x30a,0x43b,0x25f)},'openai/chat-completion/models/gpt-oss-20b':{'modelId':_0x16b4a2(0x6f2,0x369,0x553,0x6b8),'rates':{'input':0.045,'output':0.18},'pricingProviderIds':[_0x5a09f8(0x16f,0x1db,0x1f0,0x574)],'matchKind':_0x5a09f8(0x613,0x30a,0x1ef,0x616)},'openai/chatgpt-4o-latest':{'modelId':'openai/chatgpt-4o-latest','rates':{'input':4.5,'output':0xe},'pricingProviderIds':['poe'],'matchKind':_0x5a09f8(0xe3,0x30a,0x4c8,0x2e2)},'openai/gpt-3.5-turbo-0613':{'modelId':_0x16b4a2(0x344,0x2a6,0x55d,0x263),'rates':{'input':0x1,'output':0x2},'pricingProviderIds':[_0x5a09f8(0x533,0x533,0x3fc,0x18e),'openrouter'],'matchKind':_0x16b4a2(-0x201,-0x165,0x161,-0x220)},'openai/gpt-3.5-turbo-16k':{'modelId':_0x16b4a2(0x163,-0x15e,0x191,0x2fa),'rates':{'input':0x3,'output':0x4},'pricingProviderIds':[_0x16b4a2(0x4c1,0x74d,0x592,0x734),_0x16b4a2(-0x27d,-0x25b,0xcc,0x439)],'matchKind':_0x5a09f8(-0x21e,0x102,0x3b3,0x409)},'openai/gpt-3.5-turbo-raw':{'modelId':_0x16b4a2(0x3fc,0x542,0x4a7,0x7bf),'rates':{'input':0.45,'output':1.4},'pricingProviderIds':[_0x5a09f8(0x197,-0x1b8,0x65,-0xca)],'matchKind':_0x16b4a2(0x20d,0xbe,0x369,0x57e)},'openai/gpt-4':{'modelId':_0x16b4a2(-0xb3,0x2ab,-0x5,-0x104),'rates':{'input':0x1e,'output':0x3c},'pricingProviderIds':[_0x5a09f8(0x34f,0x126,-0x27d,0x414),_0x16b4a2(0x3d4,0x937,0x592,0x2eb),_0x16b4a2(0x3a1,0x145,0xcc,0xae),_0x16b4a2(-0x30a,0x3a0,0x38,-0x2be)],'matchKind':'model-identical'},'openai/gpt-4-0314':{'modelId':_0x16b4a2(-0x31e,0x3c0,0x6a,0x381),'rates':{'input':0x1e,'output':0x3c},'pricingProviderIds':[_0x5a09f8(0x699,0x533,0x735,0x349)],'matchKind':'model-unique'},'openai/gpt-4-1106-preview':{'modelId':_0x16b4a2(0x230,0xa0,0x27f,0x312),'rates':{'input':0xa,'output':0x1e},'pricingProviderIds':[_0x5a09f8(0x2a4,0x533,0x81b,0x3d2)],'matchKind':'model-unique'},'openai/gpt-4-classic':{'modelId':'openai/gpt-4-classic','rates':{'input':0x1b,'output':0x36},'pricingProviderIds':[_0x16b4a2(-0x469,-0x429,-0x159,-0x1c5)],'matchKind':_0x5a09f8(0x136,0x30a,0x5c4,-0x8b)},'openai/gpt-4-classic-0314':{'modelId':_0x5a09f8(0x357,0x3ce,0x315,0x42b),'rates':{'input':0x1b,'output':0x36},'pricingProviderIds':['poe'],'matchKind':_0x16b4a2(0x332,0x2f8,0x369,0xc7)},'openai/gpt-4o-2024-05-13':{'modelId':_0x5a09f8(0x86d,0x50a,0x5ce,0x5a4),'rates':{'input':0x5,'output':0xf},'pricingProviderIds':[_0x5a09f8(0x5fe,0x533,0x8d8,0x5f1),_0x5a09f8(0x582,0x454,0x304,0x138),'openrouter','orcarouter'],'matchKind':'model-identical'},'openai/gpt-4o-audio-preview':{'modelId':_0x5a09f8(-0x2a7,-0x1d3,-0x317,0x10a),'rates':{'input':2.5,'output':0xa},'pricingProviderIds':[_0x16b4a2(0x48c,0x2a5,0x592,0x5d1)],'matchKind':_0x16b4a2(0x520,0x4cb,0x369,0x6e5)},'openai/gpt-4o-aug':{'modelId':_0x5a09f8(0x15b,0x9c,-0x25a,-0x3b),'rates':{'input':2.2,'output':0x9,'cacheRead':1.1},'pricingProviderIds':[_0x16b4a2(-0x2d2,0x6b,-0x159,-0x2f5)],'matchKind':_0x5a09f8(0x14c,0x30a,-0x61,0x334)},'openai/gpt-4o-mini-search':{'modelId':_0x5a09f8(-0x120,0x121,0x4ac,0x436),'rates':{'input':0.14,'output':0.54},'pricingProviderIds':[_0x16b4a2(-0x2d3,-0x1e6,-0x159,-0x288)],'matchKind':_0x5a09f8(0x279,0x30a,0x61b,0x569)},'openai/gpt-4o-mini-transcribe':{'modelId':'openai/gpt-4o-mini-transcribe','rates':{'input':1.25,'output':0x5},'pricingProviderIds':[_0x5a09f8(0x82,0x387,0x6eb,0x288)],'matchKind':_0x5a09f8(0x33c,0x30a,0x35d,-0x78)},'openai/gpt-4o-search':{'modelId':_0x5a09f8(-0x65,-0x13b,-0x3a8,-0x3b9),'rates':{'input':2.2,'output':0x9},'pricingProviderIds':[_0x16b4a2(-0x1f8,-0x4b4,-0x159,-0x3c1)],'matchKind':_0x16b4a2(0x15c,0x54,0x369,0x344)},'openai/gpt-4o-transcribe':{'modelId':_0x5a09f8(0xca,0x3c5,0x114,0x501),'rates':{'input':2.5,'output':0xa},'pricingProviderIds':['vercel'],'matchKind':_0x5a09f8(0x4e4,0x30a,0x5a2,-0x1d)},'openai/gpt-5-chat-latest':{'modelId':_0x16b4a2(-0x139,-0x1f2,-0x6c,0x187),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125},'pricingProviderIds':[_0x16b4a2(0x2ed,0x32f,0x4b3,0x4be),_0x5a09f8(0x17a,-0x27,0x2e0,-0x33b)],'matchKind':_0x5a09f8(-0xe4,0x102,0x3ce,0x103)},'openai/gpt-5.1-2025-11-13':{'modelId':_0x16b4a2(0x1d4,-0x14b,0xe0,0x3a8),'rates':{'input':1.25,'output':0xa},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x55e,0x30a,0x3ef,0x338)},'openai/gpt-5.1-chat-latest':{'modelId':_0x16b4a2(-0x398,-0x55,-0x10c,-0x388),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125},'pricingProviderIds':['merge-gateway',_0x5a09f8(0x94,-0x27,0x2b5,0x87)],'matchKind':_0x5a09f8(0x5c,0x102,-0xde,-0x87)},'openai/gpt-5.1-thinking':{'modelId':_0x16b4a2(0x575,0x439,0x394,0x4ad),'rates':{'input':1.25,'output':0xa,'cacheRead':0.125},'pricingProviderIds':[_0x5a09f8(0x157,0x387,0x212,0x283)],'matchKind':'model-unique'},'openai/gpt-5.2-chat':{'modelId':_0x5a09f8(0x8f,-0x1a8,-0x44e,-0x339),'rates':{'input':1.75,'output':0xe,'cacheRead':0.175},'pricingProviderIds':[_0x16b4a2(0x5d5,0x52f,0x592,0x7ba),_0x5a09f8(0x57,0x6d,0x188,0x340),'requesty',_0x16b4a2(0x67,0x3f,0x3e6,0x4a2)],'matchKind':'model-identical'},'openai/gpt-5.2-chat-latest':{'modelId':_0x16b4a2(-0x243,-0x4af,-0x100,0x161),'rates':{'input':1.75,'output':0xe,'cacheRead':0.175},'pricingProviderIds':['merge-gateway',_0x16b4a2(0xbd,0x1b2,0x38,0x391)],'matchKind':'model-identical'},'openai/gpt-5.2-instant':{'modelId':_0x5a09f8(0x1b2,0x3ae,0x274,0x5e7),'rates':{'input':1.6,'output':0xd,'cacheRead':0.16},'pricingProviderIds':['poe'],'matchKind':_0x5a09f8(0x4a4,0x30a,-0x6b,0x20e)},'openai/gpt-5.3-chat-latest':{'modelId':_0x5a09f8(0x85d,0x578,0x6e5,0x3c9),'rates':{'input':1.75,'output':0xe,'cacheRead':0.175},'pricingProviderIds':[_0x16b4a2(0x2c7,0x467,0x4b3,0x19a),_0x5a09f8(-0xa9,-0x27,-0x1ef,-0x30e)],'matchKind':'model-identical'},'openai/gpt-5.3-codex-spark':{'modelId':_0x16b4a2(0x6a9,0x81,0x3e3,0x311),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x1b9,-0x1b8,-0x1c3,-0x39d)],'matchKind':'model-unique'},'openai/gpt-5.3-instant':{'modelId':_0x16b4a2(0x125,0x146,0xe3,0x221),'rates':{'input':1.6,'output':0xd,'cacheRead':0.16},'pricingProviderIds':[_0x5a09f8(0x1e,-0x1b8,0x58,-0x229)],'matchKind':_0x16b4a2(0xa1,-0x5a,0x369,0x471)},'openai/gpt-5.4-image-2':{'modelId':_0x5a09f8(0x15e,0x2dc,0x293,0xe7),'rates':{'input':0x8,'output':0xf,'cacheRead':0x2},'pricingProviderIds':[_0x16b4a2(0x805,0x560,0x592,0x7ba),_0x16b4a2(-0x17d,0x201,0xcc,0x1da)],'matchKind':_0x16b4a2(0xd,0xeb,0x161,0x159)},'openai/gpt-5.5-instant':{'modelId':_0x5a09f8(0x431,0x178,0x41b,0x280),'rates':{'input':0x5,'output':0x1e,'cacheRead':0.5},'pricingProviderIds':[_0x5a09f8(-0x3a0,-0x115,-0x1b2,0x17e)],'matchKind':'model-unique'},'openai/gpt-5.6-luna-pro':{'modelId':'openai/gpt-5.6-luna-pro','rates':{'input':0x1,'output':0x6,'cacheRead':0.1,'cacheWrite':1.25},'pricingProviderIds':[_0x16b4a2(-0xf8,0x412,0xcc,0x48b)],'matchKind':_0x5a09f8(0x162,0x30a,0x2cd,-0x2a)},'openai/gpt-5.6-sol-pro':{'modelId':_0x16b4a2(-0xd2,0x584,0x2e0,0x682),'rates':{'input':0x5,'output':0x1e,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':['openrouter'],'matchKind':_0x16b4a2(0x4fa,0x34c,0x369,0x201)},'openai/gpt-5.6-terra-pro':{'modelId':_0x16b4a2(-0x43,-0x46,-0x26,-0x148),'rates':{'input':2.5,'output':0xf,'cacheRead':0.25,'cacheWrite':3.125},'pricingProviderIds':[_0x16b4a2(0x162,-0x1f9,0xcc,-0x14a)],'matchKind':'model-unique'},'openai/gpt-audio':{'modelId':_0x16b4a2(0x4d7,0x788,0x423,0x587),'rates':{'input':2.5,'output':0xa},'pricingProviderIds':['kilo',_0x16b4a2(0x3f8,0xbc,0xcc,0x23d)],'matchKind':_0x16b4a2(0x1b6,0x398,0x161,-0xa2)},'openai/gpt-audio-mini':{'modelId':_0x5a09f8(-0x101,0xcd,-0x1ce,0x1a5),'rates':{'input':0.6,'output':2.4},'pricingProviderIds':['kilo',_0x5a09f8(-0xb8,0x6d,0x3df,0x30)],'matchKind':_0x5a09f8(0x311,0x102,-0x26d,0x43e)},'openai/gpt-chat-latest':{'modelId':_0x5a09f8(0x61b,0x373,0xfc,0xfa),'rates':{'input':0x5,'output':0x1e,'cacheRead':0.5},'pricingProviderIds':[_0x16b4a2(0x777,0x50c,0x592,0x29a),'nano-gpt',_0x16b4a2(0x3d4,0x148,0xcc,0x18)],'matchKind':_0x16b4a2(-0x21b,0x21a,0x161,-0xab)},'openai/gpt-image-1':{'modelId':_0x5a09f8(0x5c,-0xed,0x114,-0x2cd),'rates':{'input':0x5,'output':0x28,'cacheRead':1.25},'pricingProviderIds':[_0x5a09f8(0x328,0x387,0x565,0x654)],'matchKind':_0x16b4a2(0x229,0x665,0x369,0x49)},'openai/gpt-image-1-mini':{'modelId':_0x5a09f8(0x294,0x1dc,0x13f,0x455),'rates':{'input':0x2,'output':0x8,'cacheRead':0.2},'pricingProviderIds':[_0x5a09f8(0x167,0x387,0xe6,0x438)],'matchKind':'model-unique'},'openai/gpt-image-1.5':{'modelId':_0x16b4a2(0x582,0x770,0x522,0x3fc),'rates':{'input':0x5,'output':0x20,'cacheRead':1.25},'pricingProviderIds':[_0x16b4a2(0x6e1,0x11f,0x3e6,0x51d)],'matchKind':_0x5a09f8(0x4c5,0x30a,0x4e3,-0x7)},'openai/gpt-latest':{'modelId':'openai/gpt-latest','rates':{'input':0x5,'output':0x1e,'cacheRead':0.5},'pricingProviderIds':[_0x16b4a2(-0x222,0x37a,0x2b,0x19c)],'matchKind':_0x5a09f8(0x59b,0x30a,0x295,0x45)},'openai/gpt-oss-120b-fast':{'modelId':_0x5a09f8(0x85d,0x548,0x27f,0x3cf),'rates':{'input':0.1,'output':0.5,'cacheRead':0.01,'cacheWrite':0.125},'pricingProviderIds':[_0x5a09f8(0x3ae,0x2b2,0x40f,0x355)],'matchKind':_0x5a09f8(0x5f2,0x30a,0x44f,0x38f)},'openai/gpt-oss-120b-maas':{'modelId':'openai/gpt-oss-120b-maas','rates':{'input':0.09,'output':0.36},'pricingProviderIds':['google-vertex'],'matchKind':_0x5a09f8(-0x93,0x30a,0x2c0,0x2b6)},'openai/gpt-oss-20b-maas':{'modelId':_0x5a09f8(0x7f,-0xe2,0xd5,-0xcb),'rates':{'input':0.07,'output':0.25},'pricingProviderIds':[_0x5a09f8(0x3f9,0x2d7,0x68d,-0x10)],'matchKind':'model-unique'},'openai/gpt-oss-20b:free':{'modelId':_0x16b4a2(0x3f,0x439,0x2a0,0x44e),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x325,0x6d,0x12a,0x3aa)],'matchKind':_0x16b4a2(0x705,0x639,0x369,0xd)},'openai/gpt-realtime-2':{'modelId':'openai/gpt-realtime-2','rates':{'input':0x4,'output':0x18,'cacheRead':0.4},'pricingProviderIds':['vercel'],'matchKind':_0x16b4a2(0x20b,0x189,0x369,0xb5)},'openai/gpt-realtime-2.1':{'modelId':_0x16b4a2(0x38b,-0x16b,0x17e,0x37b),'rates':{'input':0x4,'output':0x18,'cacheRead':0.4},'pricingProviderIds':[_0x16b4a2(0x342,0x67a,0x3e6,0x44b)],'matchKind':_0x16b4a2(0x517,0x37a,0x369,0x443)},'openai/gpt-realtime-mini':{'modelId':'openai/gpt-realtime-mini','rates':{'input':0.6,'output':2.4,'cacheRead':0.06},'pricingProviderIds':[_0x5a09f8(0x95,0x387,0x144,0x4f8)],'matchKind':_0x16b4a2(0x435,0x2ea,0x369,0x62f)},'openai/o1-mini':{'modelId':_0x16b4a2(-0x5d,0x5c1,0x325,0x580),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x638,0x78d,0x5ef,0x447)],'matchKind':'model-unique'},'openai/o3-mini-low':{'modelId':'openai/o3-mini-low','rates':{'input':9.996,'output':19.992},'pricingProviderIds':[_0x5a09f8(-0x3a3,-0x34,0x36c,0x312)],'matchKind':_0x5a09f8(0x1ed,0x30a,0x2bf,0x1c6)},'openai/o3-pro-2025-06-10':{'modelId':'openai/o3-pro-2025-06-10','rates':{'input':9.996,'output':19.992},'pricingProviderIds':[_0x5a09f8(0x29d,-0x34,0xe9,-0x2be)],'matchKind':_0x16b4a2(0x277,0x4da,0x369,0x440)},'openai/whisper-large-v3-turbo':{'modelId':'openai/whisper-large-v3-turbo','rates':{'input':0.0023,'output':0.0023,'outputAudio':2.3},'pricingProviderIds':['evroc'],'matchKind':_0x16b4a2(0x646,0x439,0x369,0x66b)},'openrouter/auto':{'modelId':_0x5a09f8(-0x14f,-0xb7,0x135,-0x358),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x491,0x533,0x2f6,0x34a)],'matchKind':_0x5a09f8(0x45b,0x30a,0x44e,0x69)},'openrouter/bodybuilder':{'modelId':_0x5a09f8(0x5e2,0x4b8,0x238,0x772),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x401,0x533,0x8ed,0x692)],'matchKind':_0x16b4a2(0x1f5,0x485,0x369,0x1cf)},'openrouter/free':{'modelId':_0x16b4a2(0x24b,0x5a3,0x297,0x354),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x7f6,0x533,0x542,0x5ac),_0x16b4a2(-0x276,-0x278,0xcc,-0x2ce)],'matchKind':_0x5a09f8(0x2d6,0x102,0x390,-0x93)},'openrouter/owl-alpha':{'modelId':'openrouter/owl-alpha','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x6fb,0x828,0x592,0x34d)],'matchKind':_0x16b4a2(0x451,0x5c6,0x369,0x108)},'openrouter/pareto-code':{'modelId':_0x16b4a2(-0x96,-0x16d,0x164,0x334),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x27b,0x8c4,0x592,0x936)],'matchKind':_0x16b4a2(0x5a1,0x32f,0x369,0x42f)},'orcarouter/auto':{'modelId':_0x16b4a2(0x4d1,0x37d,0x34a,0x450),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x25b,0x34a,0x38,0x393)],'matchKind':_0x5a09f8(0x1cd,0x30a,0x3e0,0x52c)},'osmosis/osmosis-structure-0.6b':{'modelId':_0x16b4a2(-0x4c,-0xd5,0x128,0x2db),'rates':{'input':0.1,'output':0.5},'pricingProviderIds':['inference'],'matchKind':_0x5a09f8(0x1e1,0x30a,0x34c,0x563)},'owl':{'modelId':_0x16b4a2(0x939,0x8fc,0x5bb,0x7d9),'rates':{'input':0.1,'output':0.3},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x3de,0x30a,0x5a0,0x5c2)},'paddlepaddle/paddleocr-vl':{'modelId':_0x16b4a2(0x67,0x489,0x1ce,0x489),'rates':{'input':0.02,'output':0.02},'pricingProviderIds':[_0x16b4a2(0x1c1,0x2a5,0x3d1,0x78)],'matchKind':_0x16b4a2(0x398,0x2b9,0x369,0x3aa)},'pamanseau/OpenReasoning-Nemotron-32B':{'modelId':_0x5a09f8(0x37a,-0x39,0xa1,0x2e3),'rates':{'input':0.1,'output':0.4},'pricingProviderIds':[_0x16b4a2(-0xcd,-0x1c5,0x2b,0x2a6)],'matchKind':'model-unique'},'pearl-ai/gemma-4-31b-it':{'modelId':_0x5a09f8(0x1c2,0x438,0x10d,0x6f1),'rates':{'input':0.28,'output':0.86},'pricingProviderIds':['togetherai'],'matchKind':_0x16b4a2(0x676,0x33f,0x369,0x23b)},'perceptron/perceptron-mk1':{'modelId':_0x5a09f8(0x173,0x298,0x3d2,0x423),'rates':{'input':0.15,'output':1.5},'pricingProviderIds':[_0x16b4a2(0x489,0x226,0x592,0x934),_0x5a09f8(-0xee,-0x34,0x241,0x11d),_0x16b4a2(0x13,0x1b8,0xcc,-0x208)],'matchKind':_0x5a09f8(0x2e0,0x102,-0x48,-0x23e)},'perplexity/sonar-pro':{'modelId':_0x16b4a2(0x507,0x5f8,0x58d,0x251),'rates':{'input':0x3,'output':0xf},'pricingProviderIds':[_0x5a09f8(0x6fa,0x533,0x5e2,0x5b2),_0x16b4a2(-0x24d,0x2fa,0xcc,0x154)],'matchKind':'model-identical'},'perplexity/sonar-pro-search':{'modelId':_0x5a09f8(0x20c,0x4e2,0x8a0,0x299),'rates':{'input':0x3,'output':0xf},'pricingProviderIds':['kilo',_0x5a09f8(0xfb,0x6d,-0x2bf,0x256)],'matchKind':_0x5a09f8(-0x241,0x102,0x337,0x16f)},'perplexity/sonar-reasoning-pro':{'modelId':_0x5a09f8(0x204,0x2a7,-0x10,0x1f8),'rates':{'input':0x2,'output':0x8},'pricingProviderIds':[_0x5a09f8(0x774,0x533,0x84a,0x1ba),_0x5a09f8(0x128,0x6d,-0x1ac,0x3e)],'matchKind':'model-identical'},'phi-3-medium-128k-instruct':{'modelId':_0x5a09f8(0x595,0x545,0x504,0x8a7),'rates':{'input':0.17,'output':0.68},'pricingProviderIds':[_0x16b4a2(0x28,-0x25a,-0xaf,0x224),'azure-cognitive-services'],'matchKind':_0x16b4a2(-0x6f,-0x1c7,0x161,0x32d)},'phi-3-medium-4k-instruct':{'modelId':'phi-3-medium-4k-instruct','rates':{'input':0.17,'output':0.68},'pricingProviderIds':[_0x5a09f8(-0x3d1,-0x10e,0x58,-0x453),_0x16b4a2(0x188,-0x3cf,-0x88,-0x374)],'matchKind':_0x5a09f8(-0x2a8,0x102,-0x1fd,0x243)},'phi-3-mini-128k-instruct':{'modelId':_0x5a09f8(-0xb9,0x1e5,0xb3,0x5e),'rates':{'input':0.13,'output':0.52},'pricingProviderIds':[_0x16b4a2(0x261,0x7c,-0xaf,-0x33d),_0x16b4a2(0xc4,-0x356,-0x88,0x167)],'matchKind':_0x5a09f8(-0xc,0x102,-0x1b7,0xbc)},'phi-3-mini-4k-instruct':{'modelId':'phi-3-mini-4k-instruct','rates':{'input':0.13,'output':0.52},'pricingProviderIds':[_0x16b4a2(0x1b5,0x249,-0xaf,-0x21a),'azure-cognitive-services'],'matchKind':'model-identical'},'phi-3-small-128k-instruct':{'modelId':'phi-3-small-128k-instruct','rates':{'input':0.15,'output':0.6},'pricingProviderIds':['azure',_0x5a09f8(-0x256,-0xe7,-0x20e,0x29d)],'matchKind':_0x16b4a2(0x2a7,0x19c,0x161,0x118)},'phi-3-small-8k-instruct':{'modelId':'phi-3-small-8k-instruct','rates':{'input':0.15,'output':0.6},'pricingProviderIds':[_0x5a09f8(0x27,-0x10e,0x2a5,-0x340),'azure-cognitive-services'],'matchKind':_0x5a09f8(0x229,0x102,0x489,0x31e)},'phi-3.5-mini-instruct':{'modelId':'phi-3.5-mini-instruct','rates':{'input':0.13,'output':0.52},'pricingProviderIds':[_0x5a09f8(-0x3b5,-0x10e,-0x1d7,-0x27d),_0x16b4a2(-0x3e0,-0x28d,-0x88,0xcd)],'matchKind':_0x16b4a2(-0x140,-0x221,0x161,0x143)},'phi-3.5-moe-instruct':{'modelId':_0x16b4a2(-0x2ca,-0x2bc,-0x177,-0x4e3),'rates':{'input':0.16,'output':0.64},'pricingProviderIds':['azure','azure-cognitive-services'],'matchKind':'model-identical'},'phi-4':{'modelId':_0x16b4a2(0xcc,0x267,0x69,-0x2f1),'rates':{'input':0.125,'output':0.5},'pricingProviderIds':[_0x5a09f8(-0x3a,-0x10e,-0x2cd,0x20b),_0x16b4a2(0x1a9,0x1e4,-0x88,0x83)],'matchKind':_0x16b4a2(0x3af,-0x91,0x161,-0x23d)},'phi-4-mini':{'modelId':'phi-4-mini','rates':{'input':0.075,'output':0.3},'pricingProviderIds':['azure',_0x16b4a2(-0x31b,-0x289,-0x88,-0x1e4)],'matchKind':_0x5a09f8(0x126,0x102,0x38a,-0x100)},'phi-4-mini-instruct':{'modelId':_0x5a09f8(0x1cc,0x150,-0x171,-0x86),'rates':{'input':0.17,'output':0.68},'pricingProviderIds':[_0x5a09f8(0x378,-0x34,-0x10a,-0x318)],'matchKind':_0x5a09f8(0x3da,0x30a,0x2a6,0x45b)},'phi-4-mini-reasoning':{'modelId':'phi-4-mini-reasoning','rates':{'input':0.075,'output':0.3},'pricingProviderIds':[_0x5a09f8(0x2a2,-0x10e,-0x366,0x1c1),'azure-cognitive-services'],'matchKind':_0x16b4a2(-0x25f,0x6e,0x161,0x2ad)},'phi-4-multimodal':{'modelId':_0x16b4a2(0x1,-0x33e,0x72,-0x185),'rates':{'input':0.08,'output':0.32,'inputAudio':0x4},'pricingProviderIds':[_0x16b4a2(-0x1c1,-0x372,-0xaf,-0x86),_0x16b4a2(-0x188,-0x40c,-0x88,0x2da)],'matchKind':_0x16b4a2(-0x40,0x41d,0x161,0x59)},'phi-4-multimodal-instruct':{'modelId':'phi-4-multimodal-instruct','rates':{'input':0.07,'output':0.11},'pricingProviderIds':[_0x16b4a2(-0x1a1,0x170,0x2b,-0x25d)],'matchKind':_0x16b4a2(0xf5,0x571,0x369,0x147)},'phi-4-reasoning':{'modelId':_0x16b4a2(0x1cf,0x268,0x25,0x1a9),'rates':{'input':0.125,'output':0.5},'pricingProviderIds':[_0x5a09f8(0x13d,-0x10e,0x240,0x242),_0x5a09f8(-0x183,-0xe7,-0x47,0x27)],'matchKind':_0x5a09f8(-0x78,0x102,0x298,0x27a)},'phi-4-reasoning-plus':{'modelId':'phi-4-reasoning-plus','rates':{'input':0.125,'output':0.5},'pricingProviderIds':[_0x16b4a2(0x18d,0x10d,-0xaf,0x208),_0x5a09f8(-0x149,-0xe7,-0x1a2,-0x75)],'matchKind':_0x5a09f8(0x268,0x102,0x191,0x441)},'pixtral-12b':{'modelId':'pixtral-12b','rates':{'input':0.15,'output':0.15},'pricingProviderIds':[_0x16b4a2(0xc5,0x3c2,0x204,0x1d2)],'matchKind':_0x16b4a2(0x2e5,0x19f,0x369,0x29d)},'pixtral-12b-2409':{'modelId':_0x16b4a2(-0x7d,-0x1d7,0x132,-0x56),'rates':{'input':0.2,'output':0.2},'pricingProviderIds':[_0x16b4a2(0x23a,-0x437,-0x13b,-0xa2)],'matchKind':_0x5a09f8(0x10a,0x30a,0x23b,0x3c1)},'pixtral-large-latest':{'modelId':_0x5a09f8(-0x48,-0x3c,0x168,-0x21c),'rates':{'input':0x2,'output':0x6},'pricingProviderIds':[_0x16b4a2(0x2c1,0x11c,0x204,0x221)],'matchKind':_0x5a09f8(0x1e3,0x30a,0x39b,0x421)},'poolside/laguna-m.1:free':{'modelId':_0x16b4a2(0x2e1,0x424,0x2ac,-0x13),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x7f1,0x533,0x5d4,0x3d5),_0x5a09f8(0xe8,0x6d,-0x29a,-0x10e)],'matchKind':_0x5a09f8(0x2c3,0x102,0x1bd,-0x218)},'poolside/laguna-s-2.1-free':{'modelId':_0x5a09f8(0x4fa,0x31e,0x163,0x2d3),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x297,0x387,0x287,0x600)],'matchKind':_0x5a09f8(0x1f7,0x30a,0x42f,0x467)},'poolside/laguna-s-2.1:free':{'modelId':_0x16b4a2(0x161,-0x130,-0x141,-0x10),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['openrouter'],'matchKind':_0x16b4a2(0x377,0x298,0x369,0x27)},'poolside/laguna-xs-2.1:free':{'modelId':'poolside/laguna-xs-2.1:free','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x1dc,0x2b,0xcc,0xe9)],'matchKind':_0x16b4a2(0x6a8,0x6f4,0x369,0x568)},'poolside/laguna-xs.2':{'modelId':_0x16b4a2(0x21b,0x283,0x119,0x218),'rates':{'input':0.2,'output':0.4},'pricingProviderIds':[_0x5a09f8(0x1fb,-0x34,-0x3d5,-0x3ef)],'matchKind':_0x16b4a2(0x377,0x45,0x369,0x65c)},'poolside/laguna-xs.2:free':{'modelId':_0x5a09f8(0x848,0x557,0x437,0x5fb),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x8a2,0x533,0x89a,0x53b)],'matchKind':'model-unique'},'prime-intellect/intellect-3':{'modelId':_0x16b4a2(-0x175,0x28c,-0xe4,0x1fe),'rates':{'input':0.2,'output':1.1},'pricingProviderIds':[_0x5a09f8(0x693,0x533,0x384,0x75e)],'matchKind':_0x16b4a2(0x3,0x69f,0x369,0x2bf)},'public/deepseek-r1':{'modelId':_0x5a09f8(0x186,0x292,0x216,0xb9),'rates':{'input':0.55,'output':2.2},'pricingProviderIds':[_0x16b4a2(0x2ba,-0x4f,0x27,-0x18f)],'matchKind':_0x16b4a2(0x25a,0x6b2,0x369,0x1ad)},'public/deepseek-v3':{'modelId':_0x5a09f8(0xbc,0x214,0x289,0x1df),'rates':{'input':0.28,'output':1.1},'pricingProviderIds':[_0x5a09f8(0xd7,-0x38,-0x332,-0x2fe)],'matchKind':_0x5a09f8(0x5f4,0x30a,0x5f1,0x408)},'public/minimax-m25':{'modelId':_0x5a09f8(0x127,0x382,0x5ed,0xc7),'rates':{'input':0.29,'output':1.16},'pricingProviderIds':['drun'],'matchKind':'model-unique'},'qwen-2.5-72b-instruct':{'modelId':_0x5a09f8(0x27,0x26f,0x293,0x23c),'rates':{'input':0.062,'output':0.231},'pricingProviderIds':[_0x5a09f8(-0xc5,0x1ca,0x4e9,-0x15)],'matchKind':_0x5a09f8(0x615,0x30a,0x1a2,0xd7)},'qwen-2.5-coder-32b':{'modelId':'qwen-2.5-coder-32b','rates':{'input':0.79,'output':0.79},'pricingProviderIds':[_0x16b4a2(0x20b,0x685,0x3c3,0x49e)],'matchKind':_0x5a09f8(0x6bd,0x30a,-0x6b,0x1ad)},'qwen-3-7-max':{'modelId':_0x16b4a2(0x5f1,-0xc8,0x283,0x34b),'rates':{'input':2.7,'output':8.05,'cacheRead':0.27,'cacheWrite':3.35},'pricingProviderIds':[_0x5a09f8(0x1fb,0x543,0x367,0x6af)],'matchKind':_0x5a09f8(-0x3c,0x30a,0xa5,0x8a)},'qwen-3-7-plus':{'modelId':_0x16b4a2(0x580,0xdf,0x44e,0x48a),'rates':{'input':0.5,'output':0x2,'cacheRead':0.05,'cacheWrite':0.625},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':1.5,'output':0x6,'cacheRead':0.15,'cacheWrite':1.875}],'pricingProviderIds':[_0x16b4a2(0x291,0x531,0x5a2,0x319)],'matchKind':_0x16b4a2(0x2a7,0x475,0x369,0x5a7)},'qwen-coder-plus':{'modelId':_0x5a09f8(0x192,0x2a6,0x10f,-0x94),'rates':{'input':0.502,'output':1.004},'pricingProviderIds':['llmgateway'],'matchKind':_0x5a09f8(0x55a,0x30a,0x289,0x108)},'qwen-deep-research':{'modelId':_0x16b4a2(-0x1bf,-0x19a,0x1c4,0x278),'rates':{'input':7.742,'output':23.367},'pricingProviderIds':['alibaba-cn'],'matchKind':_0x16b4a2(0x32b,0x4e8,0x369,0x161)},'qwen-doc-turbo':{'modelId':_0x5a09f8(-0x25a,-0x1ac,-0x4c1,-0x4ea),'rates':{'input':0.087,'output':0.144},'pricingProviderIds':[_0x16b4a2(-0xf,-0x1bd,0xf6,0xaa)],'matchKind':'model-unique'},'qwen-image':{'modelId':_0x5a09f8(-0x2f6,0xbd,0x17f,-0x1a5),'rates':{'input':0.5,'output':0x2},'pricingProviderIds':[_0x5a09f8(0x272,0x465,0x1c9,0x3d3)],'matchKind':_0x16b4a2(0x505,0x99,0x369,0x24b)},'qwen-image-2.0':{'modelId':_0x16b4a2(0x1b9,-0x3,0x250,0x100),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x849,0x319,0x5ec,0x64a),'alibaba-token-plan-cn'],'matchKind':_0x16b4a2(0x520,0x30d,0x161,0x155)},'qwen-image-2.0-pro':{'modelId':'qwen-image-2.0-pro','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x42d,0x740,0x5ec,0x35d),_0x5a09f8(0x1c3,-0x7b,0x63,0x1df)],'matchKind':_0x16b4a2(0x23b,-0x115,0x161,0x319)},'qwen-math-plus':{'modelId':_0x5a09f8(-0x7d,0x1,0x242,-0x210),'rates':{'input':0.574,'output':1.721},'pricingProviderIds':[_0x16b4a2(-0x199,0x45c,0xf6,0x375)],'matchKind':_0x16b4a2(0x4ff,0x27e,0x369,0x29c)},'qwen-math-turbo':{'modelId':_0x5a09f8(0x244,0x177,0x421,0x2d9),'rates':{'input':0.287,'output':0.861},'pricingProviderIds':[_0x16b4a2(0x248,0x204,0xf6,0x1f1)],'matchKind':_0x5a09f8(0xaa,0x30a,0x645,0x294)},'qwen-plus-character':{'modelId':'qwen-plus-character','rates':{'input':0.115,'output':0.287},'pricingProviderIds':[_0x16b4a2(-0x17a,-0x21a,0xf6,0x34a)],'matchKind':_0x16b4a2(0x606,0x4e3,0x369,0x6e8)},'qwen-plus-character-ja':{'modelId':_0x16b4a2(0x1fb,0x29e,0x135,0x42),'rates':{'input':0.5,'output':1.4},'pricingProviderIds':[_0x16b4a2(0x118,0x47c,0x1f6,0x25)],'matchKind':_0x16b4a2(0x42d,0x19b,0x369,0x17c)},'qwen-plus-latest':{'modelId':_0x16b4a2(0x1ef,0x41d,0x3d6,0x508),'rates':{'input':0.4,'output':1.2,'cacheRead':0.08,'cacheWrite':0.5},'pricingProviderIds':[_0x5a09f8(0x2c7,-0x1,0x337,0x62)],'matchKind':'model-unique'},'qwen.qwen3-235b-a22b-2507-v1:0':{'modelId':_0x16b4a2(0xd1,-0xf5,0x236,0x175),'rates':{'input':0.22,'output':0.88},'pricingProviderIds':[_0x16b4a2(0x298,0x40f,0x2aa,0x16f)],'matchKind':_0x5a09f8(0x3db,0x30a,0x244,0x3b)},'qwen.qwen3-32b-v1:0':{'modelId':_0x16b4a2(-0x208,0x343,-0x37,0x142),'rates':{'input':0.15,'output':0.6},'pricingProviderIds':[_0x5a09f8(0x2f3,0x24b,0x135,0x47f)],'matchKind':_0x5a09f8(0x12a,0x30a,0x507,-0x11)},'qwen.qwen3-coder-30b-a3b-v1:0':{'modelId':'qwen.qwen3-coder-30b-a3b-v1:0','rates':{'input':0.15,'output':0.6},'pricingProviderIds':[_0x5a09f8(0x57b,0x24b,0x585,0x45)],'matchKind':_0x16b4a2(0x1c2,0x3dc,0x369,0x4ff)},'qwen.qwen3-coder-480b-a35b-v1:0':{'modelId':'qwen.qwen3-coder-480b-a35b-v1:0','rates':{'input':0.22,'output':1.8},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x5a09f8(0x1da,0x30a,0x5d9,0x65f)},'qwen.qwen3-coder-next':{'modelId':_0x16b4a2(0x35a,0x1e5,0x443,0x639),'rates':{'input':0.22,'output':1.8},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x5a09f8(0x5c2,0x30a,-0x69,0x1c8)},'qwen.qwen3-next-80b-a3b':{'modelId':_0x16b4a2(0x5f0,0x47b,0x23f,-0x74),'rates':{'input':0.14,'output':1.4},'pricingProviderIds':[_0x16b4a2(0x7b,0x22e,0x2aa,0x4cb)],'matchKind':'model-unique'},'qwen.qwen3-vl-235b-a22b':{'modelId':_0x16b4a2(0x8c,0x556,0x30a,0x73),'rates':{'input':0.3,'output':1.5},'pricingProviderIds':[_0x16b4a2(0x1b3,0x1ab,0x2aa,0x155)],'matchKind':'model-unique'},'qwen/Qwen2.5-Coder-32B-Instruct':{'modelId':_0x5a09f8(0x242,-0x43,-0x2ab,0x2ca),'rates':{'input':0.2006,'output':0.2006},'pricingProviderIds':[_0x5a09f8(0x371,-0x34,-0x23c,-0x24)],'matchKind':_0x5a09f8(0x198,0x30a,0x361,0xeb)},'qwen/Qwen3-235B-A22B-Instruct-2507':{'modelId':_0x5a09f8(0x129,0x429,0x95,0x278),'rates':{'input':0.13,'output':0.5},'pricingProviderIds':[_0x5a09f8(-0xff,-0x34,-0x265,-0x27a)],'matchKind':_0x16b4a2(0x49b,0x19d,0x369,0x630)},'qwen/Qwen3-235B-A22B-Instruct-2507-TEE':{'modelId':_0x5a09f8(-0x1e,0xb2,0x153,-0x2aa),'rates':{'input':0.13,'output':0.5},'pricingProviderIds':[_0x5a09f8(-0x31c,-0x34,0x8f,0x323)],'matchKind':'model-unique'},'qwen/Qwen3-235B-A22B-Thinking-2507':{'modelId':'qwen/Qwen3-235B-A22B-Thinking-2507','rates':{'input':0.3,'output':0.5},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x29e,0x30a,0xa,0x5e6)},'qwen/Qwen3-8B':{'modelId':'qwen/Qwen3-8B','rates':{'input':0.47,'output':0.47},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'qwen/Qwen3-Next-80B-A3B-Instruct':{'modelId':'qwen/Qwen3-Next-80B-A3B-Instruct','rates':{'input':0.15,'output':0.65},'pricingProviderIds':[_0x16b4a2(0x86,0x147,0x2b,0x50)],'matchKind':_0x16b4a2(0x52c,0x400,0x369,0x29c)},'qwen/Qwen3-VL-235B-A22B-Instruct':{'modelId':_0x16b4a2(0x4b,0x176,-0xcf,-0x43b),'rates':{'input':0.3,'output':1.2},'pricingProviderIds':[_0x16b4a2(0x9b,0x1d2,0x2b,-0x1eb)],'matchKind':'model-unique'},'qwen/Qwen3.6-35B-A3B':{'modelId':_0x5a09f8(0x881,0x54e,0x8bb,0x7dc),'rates':{'input':0.112,'output':0.8},'pricingProviderIds':[_0x5a09f8(0x84,-0x34,0x55,0x2a4)],'matchKind':'model-unique'},'qwen/Qwen3.6-35B-A3B:thinking':{'modelId':'qwen/Qwen3.6-35B-A3B:thinking','rates':{'input':0.112,'output':0.8},'pricingProviderIds':[_0x5a09f8(-0x219,-0x34,0x24a,0x38)],'matchKind':_0x16b4a2(0x353,0x5e7,0x369,0x5d)},'qwen/qwen-2.5-7b-instruct':{'modelId':_0x5a09f8(-0xd3,0x149,-0x18,0x4ca),'rates':{'input':0.04,'output':0.1},'pricingProviderIds':['kilo',_0x16b4a2(0x283,0x28f,0xcc,-0xee)],'matchKind':_0x16b4a2(0xe6,0x47f,0x161,0x3e0)},'qwen/qwen-2.5-7b-vision-instruct':{'modelId':'qwen/qwen-2.5-7b-vision-instruct','rates':{'input':0.2,'output':0.2},'pricingProviderIds':[_0x5a09f8(0x19f,0x210,0x4a2,0x2d1)],'matchKind':'model-unique'},'qwen/qwen-image':{'modelId':_0x16b4a2(0x71e,0x629,0x3c7,0x759),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x195,0x3b,0x1a3,-0x28c)],'matchKind':_0x16b4a2(0x1a3,0x284,0x369,0x21b)},'qwen/qwen-image-edit':{'modelId':_0x5a09f8(-0x4fb,-0x144,0x266,0x12e),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x1e5,0x3b,-0x290,-0x69)],'matchKind':_0x16b4a2(0x597,0x439,0x369,0x18d)},'qwen/qwen-mt-plus':{'modelId':_0x16b4a2(0x804,0x812,0x4a2,0x709),'rates':{'input':0.25,'output':0.75},'pricingProviderIds':[_0x5a09f8(0x379,0x372,0x1b3,0x5de)],'matchKind':'model-unique'},'qwen/qwen-plus-2025-07-28':{'modelId':_0x16b4a2(0x1b8,-0x288,-0x10b,0x17e),'rates':{'input':0.26,'output':0.78},'pricingProviderIds':[_0x16b4a2(0x473,0x40e,0x592,0x949),_0x16b4a2(-0xd7,-0x165,0xcc,-0xdb)],'matchKind':_0x16b4a2(0x10b,0x41,0x161,-0xda)},'qwen/qwen2.5-7b-instruct':{'modelId':_0x16b4a2(0x2e4,-0x19d,-0xc,0x364),'rates':{'input':0.07,'output':0.07},'pricingProviderIds':[_0x16b4a2(0x496,0x6a2,0x3d1,0x308)],'matchKind':_0x16b4a2(0x4e4,0x2c5,0x369,0x20c)},'qwen/qwen2.5-coder-32b-instruct':{'modelId':_0x16b4a2(-0xd7,0x231,0x5f,-0x2d),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0xc6,-0x153,0x9a,-0x2ae)],'matchKind':'model-unique'},'qwen/qwen3-235b-a22b-fp8':{'modelId':_0x16b4a2(0x3d3,0x28a,0x4ef,0x7bb),'rates':{'input':0.2,'output':0.8},'pricingProviderIds':[_0x16b4a2(0x211,0x488,0x30f,0x6b6),_0x16b4a2(0x267,0x5fb,0x3d1,0x1a9)],'matchKind':_0x5a09f8(0x2,0x102,-0x88,-0xc5)},'qwen/qwen3-235b-a22b-instruct-2507-maas':{'modelId':'qwen/qwen3-235b-a22b-instruct-2507-maas','rates':{'input':0.22,'output':0.88},'pricingProviderIds':['google-vertex'],'matchKind':_0x5a09f8(0x46e,0x30a,-0x11,-0x21)},'qwen/qwen3-30b-a3b-2507':{'modelId':_0x5a09f8(0x50b,0x2bf,0x1ac,0x5a5),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x527,0x4ea,0x1f7,0x88c)],'matchKind':'model-unique'},'qwen/qwen3-30b-a3b-fp8':{'modelId':_0x16b4a2(0x3d6,0xf6,0x79,-0x19d),'rates':{'input':0.09,'output':0.45},'pricingProviderIds':[_0x5a09f8(0x16c,0x2b0,0x3c4,0x5e7),_0x5a09f8(0x6f7,0x372,0x45c,0x320)],'matchKind':_0x5a09f8(-0x1ca,0x102,0x4b6,0x101)},'qwen/qwen3-32b-fp8':{'modelId':_0x5a09f8(0x68a,0x3fa,0x5bf,0x7a4),'rates':{'input':0.1,'output':0.45},'pricingProviderIds':[_0x16b4a2(0x624,0x5b3,0x30f,0x325),_0x5a09f8(0x2b9,0x372,0x698,0x22b)],'matchKind':_0x5a09f8(0x2d6,0x102,0x22c,0x431)},'qwen/qwen3-4b-fp8':{'modelId':'qwen/qwen3-4b-fp8','rates':{'input':0.03,'output':0.03},'pricingProviderIds':[_0x5a09f8(0x6ca,0x372,0x331,0x22f)],'matchKind':_0x5a09f8(0xb8,0x30a,-0x65,0x49e)},'qwen/qwen3-8b-fp8':{'modelId':_0x5a09f8(0x642,0x43e,0x1a1,0x37d),'rates':{'input':0.035,'output':0.138},'pricingProviderIds':[_0x16b4a2(0x450,0x72,0x3d1,0x6e4)],'matchKind':_0x16b4a2(0x231,0x84,0x369,0xcb)},'qwen/qwen3-coder-30b':{'modelId':_0x5a09f8(-0x26,0x15f,0x0,-0x15e),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['lmstudio'],'matchKind':_0x5a09f8(0x48b,0x30a,0x101,0x2bc)},'qwen/qwen3-coder-30b-a3b-instruct':{'modelId':'qwen/qwen3-coder-30b-a3b-instruct','rates':{'input':0.07,'output':0.27},'pricingProviderIds':[_0x16b4a2(0x6f1,0x28a,0x592,0x5ac),_0x16b4a2(0x664,0x604,0x3d1,0x55b),_0x16b4a2(-0x2de,0x42e,0xcc,0x47)],'matchKind':'model-identical'},'qwen/qwen3-embedding-4b':{'modelId':'qwen/qwen3-embedding-4b','rates':{'input':0.01,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x1b2,0x210,0x253,0x37c)],'matchKind':_0x16b4a2(0xe3,-0x5a,0x369,-0x3e)},'qwen/qwen3-max-thinking':{'modelId':_0x5a09f8(0x72,-0x11c,0x10f,0x245),'rates':{'input':0.78,'output':3.9},'pricingProviderIds':['kilo',_0x5a09f8(-0x85,0x6d,-0x340,-0x26c)],'matchKind':_0x5a09f8(0x112,0x102,-0x34,0x20f)},'qwen/qwen3-omni-30b-a3b-instruct':{'modelId':_0x5a09f8(0x3f8,0x42f,0x4f1,0x5bf),'rates':{'input':0.25,'output':0.97,'inputAudio':2.2,'outputAudio':1.788},'pricingProviderIds':['novita-ai'],'matchKind':_0x5a09f8(0x413,0x30a,0x6c,0x354)},'qwen/qwen3-omni-30b-a3b-thinking':{'modelId':'qwen/qwen3-omni-30b-a3b-thinking','rates':{'input':0.25,'output':0.97,'inputAudio':2.2,'outputAudio':1.788},'pricingProviderIds':[_0x5a09f8(0x3b1,0x372,0x47b,0x499)],'matchKind':_0x16b4a2(0x405,0x3e,0x369,0x4be)},'qwen/qwen3-vl-32b-instruct':{'modelId':_0x5a09f8(-0x171,0xa6,0x6a,0x43c),'rates':{'input':0.104,'output':0.416},'pricingProviderIds':['kilo',_0x5a09f8(-0x29d,0x6d,0x22d,0x252)],'matchKind':_0x16b4a2(0x346,0x391,0x161,-0x12)},'qwen/qwen3-vl-8b-thinking':{'modelId':'qwen/qwen3-vl-8b-thinking','rates':{'input':0.117,'output':1.365},'pricingProviderIds':[_0x5a09f8(0x5d3,0x533,0x795,0x459),_0x5a09f8(-0xd7,0x6d,0xa7,0x1cd)],'matchKind':_0x16b4a2(0x420,-0x23c,0x161,0x13)},'qwen/qwen3.5-122b-a10b-nvfp4':{'modelId':'qwen/qwen3.5-122b-a10b-nvfp4','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x245,0x18f,0x218,0x416)],'matchKind':_0x16b4a2(0x30a,0xf9,0x369,0x382)},'qwen/qwen3.5-397b-a17b-thinking':{'modelId':'qwen/qwen3.5-397b-a17b-thinking','rates':{'input':0.6,'output':3.6},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x63,0x3fd,0x369,0x201)},'qwen/qwen3.5-flash':{'modelId':_0x5a09f8(0x4d1,0x1fe,-0x22,0x29c),'rates':{'input':0.1,'output':0.4},'pricingProviderIds':[_0x5a09f8(-0x26a,-0x115,-0x29,-0x32d)],'matchKind':_0x5a09f8(0x40,0x30a,0x3bb,0x378)},'qwen/qwen3.5-plus-02-15':{'modelId':'qwen/qwen3.5-plus-02-15','rates':{'input':0.26,'output':1.56},'pricingProviderIds':[_0x16b4a2(0x615,0x3f7,0x592,0x890),_0x16b4a2(-0x29f,-0x3a,0xcc,0x1cd)],'matchKind':'model-identical'},'qwen/qwen3.5-plus-thinking':{'modelId':'qwen/qwen3.5-plus-thinking','rates':{'input':0.4,'output':2.4,'cacheRead':0.04},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'qwen/qwen3.6-27b-fp8':{'modelId':'qwen/qwen3.6-27b-fp8','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x170,0x1b9,-0x1ac,0x1e5)],'matchKind':'model-unique'},'qwen/qwen3.6-35b-a3b-fp8':{'modelId':_0x16b4a2(0x355,0x79f,0x3ff,0x4a7),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x1c3,0x1b9,0x1a0,-0x97)],'matchKind':'model-unique'},'qwen/qwen3.6-max-preview':{'modelId':_0x5a09f8(0x4e8,0x516,0x311,0x1a3),'rates':{'input':1.04,'output':6.24,'cacheWrite':1.3},'pricingProviderIds':[_0x5a09f8(0x423,0x533,0x4e0,0x384),'openrouter'],'matchKind':_0x16b4a2(0x2f3,-0xef,0x161,-0xd7)},'qwen/qwenCoder/models/Qwen3-Coder-30B-A3B-Instruct':{'modelId':_0x16b4a2(-0x195,0x34,-0x9,0x356),'rates':{'input':0.11458,'output':0.74812},'pricingProviderIds':[_0x16b4a2(0x370,0x25b,0x23a,0x3c3)],'matchKind':'model-unique'},'qwen/qwenLM/models/Qwen3-30B-A3B-Instruct-2507':{'modelId':_0x5a09f8(0x576,0x1dd,0x204,-0xf8),'rates':{'input':0.3,'output':0.5},'pricingProviderIds':[_0x5a09f8(-0x194,0x1db,0x1f3,0x3d9)],'matchKind':_0x5a09f8(0x75,0x30a,0x63e,0x1e9)},'qwen/qwenLM/models/Qwen3-30B-A3B-Thinking-2507':{'modelId':_0x5a09f8(0x473,0x526,0x5a1,0x864),'rates':{'input':0.36,'output':1.3},'pricingProviderIds':[_0x16b4a2(0x223,-0x12e,0x23a,-0x4d)],'matchKind':_0x5a09f8(0x2a0,0x30a,0x198,0x31b)},'qwen/qwq-32b-preview':{'modelId':_0x5a09f8(-0x49,-0x7f,-0x25a,-0x37e),'rates':{'input':0.2,'output':0.2},'pricingProviderIds':[_0x16b4a2(-0x63,0x201,0x2b,-0x18d)],'matchKind':_0x5a09f8(0x611,0x30a,0x167,0x38f)},'qwen2-5-coder-32b-instruct':{'modelId':_0x16b4a2(0x1b7,0x199,-0x116,0x1fc),'rates':{'input':0.287,'output':0.861},'pricingProviderIds':[_0x16b4a2(-0xa4,-0x17d,0xf6,-0x140)],'matchKind':_0x5a09f8(0x62c,0x30a,0x178,0x5c8)},'qwen2-5-coder-7b-instruct':{'modelId':_0x5a09f8(0xa7,0x41c,0x6a6,0x53e),'rates':{'input':0.144,'output':0.287},'pricingProviderIds':['alibaba-cn'],'matchKind':'model-unique'},'qwen2-5-math-72b-instruct':{'modelId':_0x16b4a2(-0x1c,-0x41,0x2a1,0x49e),'rates':{'input':0.574,'output':1.721},'pricingProviderIds':[_0x16b4a2(0x299,0x482,0xf6,0x3db)],'matchKind':_0x16b4a2(0x24c,0x30,0x369,0x5ff)},'qwen2-5-math-7b-instruct':{'modelId':'qwen2-5-math-7b-instruct','rates':{'input':0.144,'output':0.287},'pricingProviderIds':[_0x16b4a2(0x331,0x25e,0xf6,0x139)],'matchKind':_0x5a09f8(0x269,0x30a,0x2b4,0x4d6)},'qwen2-5-vl-32b-instruct':{'modelId':_0x16b4a2(0x40,0xa3,0x12b,0x355),'rates':{'input':1.4,'output':4.2},'pricingProviderIds':['llmgateway'],'matchKind':_0x5a09f8(0x26,0x30a,0x174,0x10f)},'qwen2.5-coder-7b-fast':{'modelId':_0x5a09f8(0x22a,-0x9,0x3b6,0x321),'rates':{'input':0.03,'output':0.09},'pricingProviderIds':[_0x16b4a2(0x651,0x27f,0x4cb,0x121)],'matchKind':_0x16b4a2(0x562,-0x3a,0x369,0x3cf)},'qwen2.5-vl-72b-instruct':{'modelId':_0x5a09f8(0x34e,0x87,-0x2ea,0x11c),'rates':{'input':1.01,'output':1.01},'pricingProviderIds':[_0x16b4a2(0x1f8,0xe8,-0xe8,-0x181)],'matchKind':_0x5a09f8(0x509,0x30a,0x6af,0x5a7)},'qwen25-vl-72b-instruct':{'modelId':_0x5a09f8(0x518,0x4ed,0x678,0x811),'rates':{'input':0.69989,'output':0.69989},'pricingProviderIds':[_0x16b4a2(-0x241,0x6,0x2b,0x2f5)],'matchKind':_0x16b4a2(0x192,0x49,0x369,0x131)},'qwen3-235b':{'modelId':_0x5a09f8(0x1cd,-0x1aa,0xa9,-0x2cb),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x5ee,0x521,0x2dd,0x36d)],'matchKind':_0x16b4a2(0x285,0x5f6,0x369,0x28b)},'qwen3-235b-a22b-fp8':{'modelId':_0x5a09f8(0x4d3,0x444,0x14f,0x30b),'rates':{'input':0.2,'output':0.8},'pricingProviderIds':[_0x5a09f8(0x30a,-0x1,-0x381,0x32c)],'matchKind':'model-unique'},'qwen3-235b-a22b-instruct':{'modelId':'qwen3-235b-a22b-instruct','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x5d5,0x521,0x1e4,0x6b1)],'matchKind':_0x5a09f8(0x2ff,0x30a,0x215,0x2fa)},'qwen3-235b-a22b-thinking':{'modelId':'qwen3-235b-a22b-thinking','rates':{'input':0.3,'output':2.9000000000000004},'pricingProviderIds':[_0x16b4a2(0x315,0x19d,0x4cb,0x51e)],'matchKind':_0x5a09f8(-0xa9,0x30a,0x292,0x519)},'qwen3-5-122b-a10b':{'modelId':_0x16b4a2(0x5fe,0x705,0x3b0,0x40a),'rates':{'input':0.115,'output':0.917},'pricingProviderIds':[_0x16b4a2(0x583,-0x101,0x224,0x59c)],'matchKind':_0x16b4a2(0x562,0x435,0x369,0x3ee)},'qwen3-5-27b':{'modelId':_0x16b4a2(0x267,-0x381,-0x51,-0x3bc),'rates':{'input':0.086,'output':0.688},'pricingProviderIds':[_0x5a09f8(0x38c,0x1c5,0xcb,0x8d)],'matchKind':_0x16b4a2(0x529,0x1e3,0x369,0x675)},'qwen3-5-4b':{'modelId':_0x5a09f8(0x48a,0x230,0x394,-0x112),'rates':{'input':0.04,'output':0.07,'cacheRead':0.02},'pricingProviderIds':[_0x5a09f8(0x16,0x1c5,0x4ba,0x45b)],'matchKind':'model-unique'},'qwen3-5-plus':{'modelId':_0x16b4a2(-0x284,0x30d,0x62,0x2b),'rates':{'input':0.36,'output':2.21},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':1.08,'output':6.62}],'pricingProviderIds':[_0x16b4a2(0x45d,0x6f,0x224,0x3fd)],'matchKind':_0x5a09f8(0x404,0x30a,0x44d,0x4a1)},'qwen3-6-35b':{'modelId':'qwen3-6-35b','rates':{'input':0x5,'output':0xa},'pricingProviderIds':[_0x5a09f8(0x841,0x4b9,0x6cc,0x2e0)],'matchKind':'model-unique'},'qwen3-6-35b-a3b':{'modelId':_0x5a09f8(0x1ba,-0x62,-0x3d1,-0x368),'rates':{'input':0.15,'output':0x1,'cacheRead':0.05},'pricingProviderIds':[_0x16b4a2(0x8ee,0x86c,0x5a2,0x63c)],'matchKind':_0x16b4a2(0x24b,0x587,0x369,0x6a1)},'qwen3-6-flash':{'modelId':_0x16b4a2(0x3ca,0x2af,0x5ff,0x6dc),'rates':{'input':0.25,'output':1.5},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x1,'output':0x4}],'pricingProviderIds':[_0x5a09f8(0x38e,0x1c5,0x256,0x23c)],'matchKind':_0x16b4a2(-0x1d,0x1df,0x369,0x695)},'qwen3-6-max-preview':{'modelId':'qwen3-6-max-preview','rates':{'input':1.31,'output':7.88},'pricingProviderIds':['empiriolabs'],'matchKind':_0x5a09f8(0x302,0x30a,0x38a,0x3e8)},'qwen3-6-plus':{'modelId':_0x5a09f8(0x298,0x5c,0x186,0x140),'rates':{'input':0.5,'output':0x3},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x2,'output':0x6}],'pricingProviderIds':[_0x16b4a2(0x57f,0x204,0x224,0x370)],'matchKind':_0x5a09f8(0x269,0x30a,0x31d,0xae)},'qwen3-7-max':{'modelId':_0x5a09f8(0x548,0x2be,0x33c,0x372),'rates':{'input':2.5,'output':7.5},'pricingProviderIds':['empiriolabs'],'matchKind':_0x5a09f8(0x545,0x30a,0x279,0x16a)},'qwen3-coder-480b-a35b-instruct-turbo':{'modelId':_0x5a09f8(-0x475,-0x18e,-0x305,-0xf5),'rates':{'input':0.35,'output':1.5,'cacheRead':0.04},'pricingProviderIds':[_0x5a09f8(0x5ea,0x543,0x4c0,0x581)],'matchKind':_0x16b4a2(0x28b,-0x7,0x369,0x5bc)},'qwen3-coder-next-fp8':{'modelId':_0x16b4a2(0x12a,-0x38a,-0xd0,0x64),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['inferx'],'matchKind':'model-unique'},'qwen3-coder-next-fp8-1m':{'modelId':_0x16b4a2(-0x2bd,-0x11,-0xf9,-0x203),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['inferx'],'matchKind':_0x16b4a2(0x57c,0x400,0x369,0x235)},'qwen3-embedding-0.6b':{'modelId':'qwen3-embedding-0.6b','rates':{'input':0.04,'output':0x0},'pricingProviderIds':['digitalocean'],'matchKind':_0x5a09f8(0x29,0x30a,-0x78,0x2c5)},'qwen3-embedding-4b':{'modelId':_0x16b4a2(0x628,0x5cb,0x4e3,0x700),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x3c4,0x40d,0x4d6,0x223)],'matchKind':_0x5a09f8(0x656,0x30a,-0x11,0x3df)},'qwen3-livetranslate-flash-realtime':{'modelId':_0x16b4a2(0x7e8,0x34c,0x58f,0x69d),'rates':{'input':0xa,'output':0xa,'inputAudio':0xa,'outputAudio':0x26},'pricingProviderIds':['alibaba'],'matchKind':_0x16b4a2(0x64a,0x6b1,0x369,0x5c2)},'qwen3-max-2025-09-23':{'modelId':'qwen3-max-2025-09-23','rates':{'input':0.86,'output':3.43},'pricingProviderIds':[_0x5a09f8(0x1bb,0x344,0x32f,0x9c)],'matchKind':_0x5a09f8(0x1d7,0x30a,0x7a,-0x8c)},'qwen3-max-preview':{'modelId':_0x5a09f8(0x221,0x31d,0x2e5,0x533),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x8b4,0x7f9,0x580,0x37d)],'matchKind':_0x5a09f8(0x49f,0x30a,0x160,0x4c)},'qwen3-next-80b':{'modelId':_0x5a09f8(0x218,0x460,0x101,0x13b),'rates':{'input':0.35,'output':1.9},'pricingProviderIds':[_0x16b4a2(0x3a6,0x8cc,0x5a2,0x802)],'matchKind':_0x5a09f8(0x13a,0x30a,0x54b,0xf4)},'qwen3-reranker-4b':{'modelId':_0x16b4a2(0x5ba,0x7e9,0x450,0x26a),'rates':{'input':0.12,'output':0.12},'pricingProviderIds':['regolo-ai'],'matchKind':_0x16b4a2(0x4d0,0x4f2,0x369,0x57b)},'qwen3-vl-235b-a22b-instruct':{'modelId':_0x5a09f8(-0xb9,-0x152,0x20f,0x181),'rates':{'input':0.3,'output':1.5},'pricingProviderIds':[_0x5a09f8(0x1c5,0x46c,0x3bc,0x64c),_0x5a09f8(-0x90,-0x1,0x307,0xa2)],'matchKind':_0x5a09f8(-0x42,0x102,0x197,0xf3)},'qwen3-vl-235b-a22b-instruct-original':{'modelId':_0x16b4a2(0x5c,-0x11,0x240,0x4f0),'rates':{'input':0.5,'output':1.2},'pricingProviderIds':[_0x16b4a2(0x3c0,0x163,0x2b,-0x240)],'matchKind':_0x5a09f8(0x49e,0x30a,0xb,0x2bd)},'qwen3-vl-30b-a3b-instruct':{'modelId':_0x5a09f8(-0x1c1,0x35,-0x184,-0x16d),'rates':{'input':0.2,'output':0.7},'pricingProviderIds':[_0x5a09f8(0x3b3,-0x1,0x6,0x2ca)],'matchKind':'model-unique'},'qwen3-vl-flash':{'modelId':'qwen3-vl-flash','rates':{'input':0.05,'output':0.4,'cacheRead':0.01},'pricingProviderIds':[_0x16b4a2(0x228,-0x2d1,0x5e,0xc5)],'matchKind':_0x16b4a2(0x197,0x3c9,0x369,0x40c)},'qwen3.5-122b':{'modelId':_0x16b4a2(0x2f8,-0x40b,-0x71,-0x390),'rates':{'input':0.9,'output':3.6},'pricingProviderIds':['regolo-ai'],'matchKind':_0x16b4a2(-0x2a,0x33a,0x369,0x78)},'qwen3.5-122b-a10b:thinking':{'modelId':_0x16b4a2(-0x161,-0x44,0x9e,-0x2e1),'rates':{'input':0.36,'output':2.88},'pricingProviderIds':[_0x16b4a2(0xd9,-0x205,0x2b,-0xd4)],'matchKind':_0x5a09f8(0x694,0x30a,0x664,0x41e)},'qwen3.5-27b:thinking':{'modelId':_0x16b4a2(0x961,0x885,0x603,0x6a9),'rates':{'input':0.27,'output':2.16},'pricingProviderIds':[_0x16b4a2(0xed,0x2ee,0x2b,0x1ac)],'matchKind':_0x16b4a2(0x149,0x41f,0x369,0x585)},'qwen3.5-35b-a3b:thinking':{'modelId':_0x16b4a2(-0x3b2,-0x2e9,-0x4a,-0x15c),'rates':{'input':0.225,'output':1.8},'pricingProviderIds':[_0x5a09f8(0x1f0,-0x34,-0x136,-0x199)],'matchKind':_0x16b4a2(0x32c,0x1ab,0x369,0x5a0)},'qwen3.5-397b-a17b:free':{'modelId':'qwen3.5-397b-a17b:free','rates':{'input':0x0,'output':0x0},'pricingProviderIds':['unorouter'],'matchKind':_0x16b4a2(-0x4f,0x1af,0x369,0x65d)},'qwen3.5-397b-fast':{'modelId':_0x5a09f8(0x934,0x57d,0x884,0x78c),'rates':{'input':0.69,'output':4.14,'cacheRead':0.1725},'pricingProviderIds':[_0x16b4a2(-0x2bf,0x1d4,0x6c,-0x3b)],'matchKind':_0x5a09f8(0x1e8,0x30a,0x105,0x40c)},'qwen3.5-flash:thinking':{'modelId':_0x16b4a2(0x3d0,0x3ad,0x407,0x3a9),'rates':{'input':0.09,'output':0.36},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x118,0x30a,0x56,0x328)},'qwen3.5-omni-flash':{'modelId':_0x16b4a2(0x426,0x758,0x5a1,0x25f),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0x1d3,0x284,0x2b,0xf4)],'matchKind':_0x16b4a2(0x1cd,0x296,0x369,0x598)},'qwen3.5-omni-plus':{'modelId':_0x5a09f8(0x98,0x424,0x1ad,0x3af),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x2c0,-0x34,-0x3b6,-0x13a)],'matchKind':'model-unique'},'qwen3.6-35b':{'modelId':_0x16b4a2(0x23a,0x46,0x332,0x381),'rates':{'input':0.15,'output':0.5},'pricingProviderIds':['aki-io'],'matchKind':'model-unique'},'qwen3.6-35b-fast':{'modelId':_0x5a09f8(0x26d,0x33c,0x4d0,0x262),'rates':{'input':0.29,'output':1.15,'cacheRead':0.0725},'pricingProviderIds':[_0x5a09f8(-0x3e,0xd,-0x18c,-0x2e8)],'matchKind':_0x16b4a2(0x23d,0x149,0x369,-0x47)},'qwen3.6-plus-free':{'modelId':'qwen3.6-plus-free','rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x16b4a2(-0x1ac,-0x17b,0xe1,0x1a2)],'matchKind':_0x5a09f8(0x1b1,0x30a,0xc3,0x10f)},'qwen3.7-max:thinking':{'modelId':_0x16b4a2(0x2f9,0x3a2,0x557,0x303),'rates':{'input':2.5,'output':7.5,'cacheRead':0.25},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x616,0x30a,0x5d7,0x64)},'qwen3.7-plus:thinking':{'modelId':'qwen3.7-plus:thinking','rates':{'input':0.4,'output':1.6,'cacheRead':0.04},'pricingProviderIds':[_0x5a09f8(-0x1d0,-0x34,-0x84,-0x79)],'matchKind':'model-unique'},'qwen3.8-max-preview':{'modelId':_0x5a09f8(-0xe0,0x208,0x135,0x162),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':['alibaba-token-plan','alibaba-token-plan-cn'],'matchKind':_0x16b4a2(-0x1d5,0x29a,0x161,-0xb1)},'qwen35-122b-a10b':{'modelId':_0x5a09f8(0x153,0x414,0x60b,0x1d7),'rates':{'input':0.22,'output':2.2},'pricingProviderIds':[_0x5a09f8(-0xf9,-0x1a,-0x85,0x26e)],'matchKind':_0x16b4a2(-0x11,-0x1f,0x369,0x450)},'qwen35-397b-a17b':{'modelId':_0x5a09f8(0xf1,-0xac,-0x36b,-0x90),'rates':{'input':0.6,'output':3.6},'pricingProviderIds':[_0x16b4a2(-0x262,0x26c,0x5e,-0x20c)],'matchKind':_0x16b4a2(0x509,0xdc,0x369,0x3d6)},'rekaai/reka-edge':{'modelId':_0x16b4a2(0x3e2,0x1f1,0x506,0x222),'rates':{'input':0.1,'output':0.1},'pricingProviderIds':[_0x16b4a2(0x4ba,0x37a,0x592,0x1fb),_0x16b4a2(0x62,0x16f,0xcc,0x362)],'matchKind':_0x16b4a2(0x42e,0x2ed,0x161,-0x7d)},'rekaai/reka-flash-3':{'modelId':_0x16b4a2(-0x5f,-0x32a,-0xb8,-0x2b),'rates':{'input':0.1,'output':0.2},'pricingProviderIds':['kilo','openrouter'],'matchKind':_0x16b4a2(0x177,0x2e9,0x161,-0x17)},'relace/relace-apply-3':{'modelId':_0x16b4a2(-0x3df,0x37c,-0x23,0xe8),'rates':{'input':0.85,'output':1.25},'pricingProviderIds':['kilo',_0x5a09f8(-0x228,0x6d,-0x2c,0x135)],'matchKind':_0x16b4a2(0x1bd,-0x1c0,0x161,0x50d)},'relace/relace-search':{'modelId':'relace/relace-search','rates':{'input':0x1,'output':0x3},'pricingProviderIds':[_0x5a09f8(0x20e,0x533,0x494,0x811),_0x5a09f8(0x286,0x6d,-0xe7,0xfb)],'matchKind':_0x16b4a2(-0x1ce,-0x38,0x161,0xa3)},'ring-2.6-1t-free':{'modelId':_0x16b4a2(0xa4,0x41b,0x11a,0x222),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0x217,0xc4,0xe1,0x14)],'matchKind':_0x5a09f8(0x32a,0x30a,0x2da,0x18d)},'route-llm':{'modelId':_0x16b4a2(-0x3d,-0x21b,0x8,-0xa6),'rates':{'input':0x3,'output':0xf},'pricingProviderIds':['abacus'],'matchKind':_0x5a09f8(0x547,0x30a,0x10c,0x6c)},'sao10K/L3-8B-stheno-v3.2':{'modelId':'sao10K/L3-8B-stheno-v3.2','rates':{'input':0.05,'output':0.05},'pricingProviderIds':['novita-ai'],'matchKind':_0x5a09f8(0x397,0x30a,0x6a7,0x2a4)},'sao10K/l3-70b-euryale-v2.1':{'modelId':_0x16b4a2(-0x19b,-0x14b,0x163,0x76),'rates':{'input':1.48,'output':1.48},'pricingProviderIds':[_0x5a09f8(0xbd,0x372,0x3c,0x139)],'matchKind':_0x16b4a2(0x3b6,0x50a,0x369,0x543)},'sao10K/l3-8b-lunaris':{'modelId':_0x16b4a2(0x682,0x230,0x4c0,0x14e),'rates':{'input':0.05,'output':0.05},'pricingProviderIds':[_0x5a09f8(0x72a,0x372,0x6e8,0x47)],'matchKind':_0x5a09f8(0x532,0x30a,0x1df,0x614)},'sao10K/l31-70b-euryale-v2.2':{'modelId':_0x16b4a2(-0xef,0x14a,0x216,0x16),'rates':{'input':1.48,'output':1.48},'pricingProviderIds':[_0x5a09f8(0x70,0x372,0x70d,-0x2c)],'matchKind':_0x5a09f8(-0x87,0x30a,-0x6,0x3b5)},'sao10k/l3-euryale-70b':{'modelId':_0x16b4a2(0x203,0x7b3,0x406,0x73),'rates':{'input':1.48,'output':1.48},'pricingProviderIds':[_0x16b4a2(0x3d5,0x2b4,0x592,0x74c)],'matchKind':'model-unique'},'sao10k/l3-lunaris-8b':{'modelId':'sao10k/l3-lunaris-8b','rates':{'input':0.04,'output':0.05},'pricingProviderIds':[_0x5a09f8(0x4cb,0x533,0x51c,0x8f6),_0x16b4a2(-0x240,0x202,0xcc,-0x29c)],'matchKind':_0x5a09f8(-0x195,0x102,0x1f0,0x311)},'sao10k/l3.1-70b-hanami-x1':{'modelId':_0x5a09f8(0x36c,0x32f,0x61f,0xd3),'rates':{'input':0x3,'output':0x3},'pricingProviderIds':[_0x5a09f8(0x6c1,0x533,0x65c,0x17f)],'matchKind':_0x5a09f8(0x43e,0x30a,0x601,0x4e1)},'sao10k/l3.1-euryale-70b':{'modelId':'sao10k/l3.1-euryale-70b','rates':{'input':0.85,'output':0.85},'pricingProviderIds':[_0x16b4a2(0x4c6,0x5a3,0x592,0x6b7),_0x5a09f8(-0x303,0x6d,-0x236,-0x51)],'matchKind':'model-identical'},'sao10k/l3.3-euryale-70b':{'modelId':'sao10k/l3.3-euryale-70b','rates':{'input':0.65,'output':0.75},'pricingProviderIds':['kilo',_0x5a09f8(-0x203,0x6d,-0x1fa,-0x2b3)],'matchKind':_0x5a09f8(-0x269,0x102,0x1f6,0x4d)},'sap-abap-1':{'modelId':_0x5a09f8(0x26f,0x29d,0xf5,0x248),'rates':{'input':0.48,'output':1.7},'pricingProviderIds':[_0x5a09f8(0x2d2,0x6,-0x1d6,0x50)],'matchKind':_0x5a09f8(-0x14,0x30a,0x19,0x29c)},'sapiens-ai/agnes-1.5-lite':{'modelId':_0x5a09f8(-0x98,0x1fb,0x27c,0x4a1),'rates':{'input':0.12,'output':0.6},'pricingProviderIds':[_0x16b4a2(-0x2b1,0xd6,-0xb6,-0xe7)],'matchKind':_0x5a09f8(0x55c,0x30a,0x51a,0xc8)},'sapiens-ai/agnes-1.5-pro':{'modelId':'sapiens-ai/agnes-1.5-pro','rates':{'input':0.16,'output':0.8},'pricingProviderIds':['zenmux'],'matchKind':_0x5a09f8(0x654,0x30a,0x41d,0xe5)},'sarvam-105b':{'modelId':_0x16b4a2(0x5ac,0x2ea,0x2ea,0x37c),'rates':{'input':0.045,'output':0.177,'cacheRead':0.028},'pricingProviderIds':[_0x5a09f8(0x19c,-0x34,0x284,-0x32d)],'matchKind':_0x16b4a2(0x184,0xbc,0x369,0x637)},'sarvam-30b':{'modelId':_0x5a09f8(0x502,0x14d,-0x9,-0xf4),'rates':{'input':0.028,'output':0.111,'cacheRead':0.017},'pricingProviderIds':[_0x5a09f8(-0x388,-0x34,-0x3f3,-0x25f)],'matchKind':'model-unique'},'sarvam/sarvam-105b':{'modelId':_0x5a09f8(0x67a,0x311,-0x65,0xe3),'rates':{'input':0.04,'output':0.16},'pricingProviderIds':[_0x5a09f8(0x1f2,0xc2,0x68,-0x1b5)],'matchKind':_0x5a09f8(0x3c7,0x30a,-0x95,-0x72)},'sarvam/sarvam-30b':{'modelId':'sarvam/sarvam-30b','rates':{'input':0.02,'output':0.1},'pricingProviderIds':[_0x16b4a2(0x148,0x328,0x121,0x149)],'matchKind':_0x5a09f8(0x511,0x30a,0x25d,0x5e8)},'sarvamai/sarvam-m':{'modelId':'sarvamai/sarvam-m','rates':{'input':0x0,'output':0x0},'pricingProviderIds':['nvidia'],'matchKind':'model-unique'},'seed-1-6-250615':{'modelId':_0x5a09f8(0x44f,0x52a,0x1d8,0x5fe),'rates':{'input':0.25,'output':0x2,'cacheRead':0.05},'pricingProviderIds':[_0x5a09f8(-0xc2,-0x1,0x2aa,0x19a)],'matchKind':_0x16b4a2(0x3ef,0x290,0x369,0x14a)},'seed-1-6-250915':{'modelId':_0x16b4a2(0x30f,0x26f,0x335,0x5d4),'rates':{'input':0.25,'output':0x2,'cacheRead':0.05},'pricingProviderIds':[_0x5a09f8(-0x351,-0x1,-0x323,-0x1f4)],'matchKind':_0x5a09f8(0x29a,0x30a,0x369,-0x1e)},'seed-1-6-flash-250715':{'modelId':_0x16b4a2(0x1ed,0x660,0x564,0x521),'rates':{'input':0.07,'output':0.3,'cacheRead':0.015},'pricingProviderIds':[_0x16b4a2(0x2ed,0x14d,0x5e,-0x121)],'matchKind':_0x16b4a2(0x68d,0x35e,0x369,0x4e0)},'seed-1-8-251228':{'modelId':_0x5a09f8(0x1c,0x146,-0x89,-0x85),'rates':{'input':0.25,'output':0x2,'cacheRead':0.05},'pricingProviderIds':['llmgateway'],'matchKind':'model-unique'},'seed-2-1-turbo':{'modelId':_0x16b4a2(0x12c,0x23b,0x263,0x3db),'rates':{'input':0.625,'output':3.125,'cacheRead':0.125},'pricingProviderIds':['venice'],'matchKind':_0x5a09f8(0xd9,0x30a,0x3b4,0x3f4)},'shisa-ai/shisa-v2-llama3.3-70b':{'modelId':_0x16b4a2(0xd9,-0x19b,0x16c,0x420),'rates':{'input':0.5,'output':0.5},'pricingProviderIds':[_0x16b4a2(-0x9e,0x1fa,0x2b,0x9d)],'matchKind':_0x16b4a2(0x12b,0x487,0x369,0xc0)},'shisa-ai/shisa-v2.1-llama3.3-70b':{'modelId':_0x5a09f8(0x87,-0x168,0x1a,-0x167),'rates':{'input':0.5,'output':0.5},'pricingProviderIds':[_0x5a09f8(-0x1e9,-0x34,0x1b6,-0x144)],'matchKind':'model-unique'},'siliconflow/deepseek-r1-0528':{'modelId':_0x5a09f8(0xa6,0x1a4,-0x61,0x2c6),'rates':{'input':0.5,'output':2.18},'pricingProviderIds':[_0x5a09f8(-0x23a,0x97,-0x1c6,-0x2c9)],'matchKind':'model-unique'},'siliconflow/deepseek-v3-0324':{'modelId':_0x5a09f8(0x1e1,0x20,-0x29a,0x10),'rates':{'input':0.25,'output':0x1},'pricingProviderIds':['alibaba-cn'],'matchKind':_0x5a09f8(0x49c,0x30a,0xec,0xf6)},'siliconflow/deepseek-v3.1-terminus':{'modelId':'siliconflow/deepseek-v3.1-terminus','rates':{'input':0.27,'output':0x1},'pricingProviderIds':[_0x16b4a2(0x379,0x315,0xf6,-0x98)],'matchKind':_0x5a09f8(0x48b,0x30a,-0x4c,0x357)},'siliconflow/deepseek-v3.2':{'modelId':_0x5a09f8(-0x205,0x10e,0xf6,0x16a),'rates':{'input':0.27,'output':0.42},'pricingProviderIds':[_0x16b4a2(0x3bd,0xfb,0xf6,0x43d)],'matchKind':'model-unique'},'sincap':{'modelId':'sincap','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x4d8,0x1bf,0x518,0x42e)],'matchKind':_0x16b4a2(0x1b7,0xd,0x369,0x49a)},'solar-mini':{'modelId':'solar-mini','rates':{'input':0.15,'output':0.15},'pricingProviderIds':['upstage'],'matchKind':_0x16b4a2(0x268,0x261,0x369,0x336)},'solar-pro2':{'modelId':_0x16b4a2(0x3ba,0x62e,0x4b7,0x121),'rates':{'input':0.25,'output':0.25},'pricingProviderIds':[_0x5a09f8(-0x19a,0xf0,0x1ce,-0xc1)],'matchKind':_0x16b4a2(-0x4d,0x28d,0x369,0x48c)},'solar-pro3':{'modelId':_0x16b4a2(0x14,0x4fe,0x160,-0xd9),'rates':{'input':0.25,'output':0.25},'pricingProviderIds':[_0x16b4a2(0x333,0x15b,0x14f,0x1ed)],'matchKind':_0x5a09f8(0x17b,0x30a,0x523,0x660)},'sonar-reasoning':{'modelId':_0x5a09f8(-0x2c7,-0x78,0x125,-0x3d4),'rates':{'input':0x1,'output':0x5},'pricingProviderIds':[_0x5a09f8(0x812,0x46c,0x49a,0x549)],'matchKind':_0x16b4a2(0x112,0x695,0x369,0x2e3)},'soob3123/GrayLine-Qwen3-8B':{'modelId':_0x5a09f8(0x89,0x1f9,0x252,-0x16a),'rates':{'input':0.3,'output':0.3},'pricingProviderIds':[_0x5a09f8(0x20,-0x34,-0x3e2,0x1e)],'matchKind':_0x5a09f8(-0xa3,0x30a,0x668,-0x17)},'soob3123/Veiled-Calla-12B':{'modelId':_0x16b4a2(0x159,-0xf0,0x1bf,-0xbd),'rates':{'input':0.3,'output':0.3},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'soob3123/amoral-gemma3-27B-v2':{'modelId':_0x5a09f8(-0x18f,0x1d3,0x2e5,0x4f4),'rates':{'input':0.3,'output':0.3},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x6ad,0x30a,0x12f,0x1dd)},'speakleash/Bielik-11B-v2.6-Instruct':{'modelId':_0x5a09f8(0x40a,0x419,0x9e,0x555),'rates':{'input':0.67,'output':0.67},'pricingProviderIds':[_0x5a09f8(0x48c,0x4ff,0x47a,0x394)],'matchKind':_0x16b4a2(0x635,0x4f0,0x369,0x5ae)},'speakleash/Bielik-11B-v3.0-Instruct':{'modelId':_0x5a09f8(-0xde,-0xf3,-0x2ad,0x252),'rates':{'input':0.67,'output':0.67},'pricingProviderIds':[_0x16b4a2(0x842,0x2d6,0x55e,0x43c)],'matchKind':_0x16b4a2(0x130,-0x40,0x369,0x2d1)},'stable-diffusion-3.5-large':{'modelId':'stable-diffusion-3.5-large','rates':{'input':0.08,'output':0x0},'pricingProviderIds':['digitalocean'],'matchKind':'model-unique'},'stealth/claude-opus-4.6':{'modelId':'stealth/claude-opus-4.6','rates':{'input':0x4,'output':0x14,'cacheRead':0.4,'cacheWrite':0x5},'pricingProviderIds':[_0x5a09f8(0x3b2,0x533,0x3fa,0x4c6)],'matchKind':_0x16b4a2(0x26c,0x6c3,0x369,-0x22)},'stealth/claude-opus-4.7':{'modelId':_0x5a09f8(0x66c,0x3ec,0xf1,0x7a0),'rates':{'input':0x4,'output':0x14,'cacheRead':0.4,'cacheWrite':0x5},'pricingProviderIds':['kilo'],'matchKind':_0x5a09f8(0x40c,0x30a,0x9e,0xd2)},'stealth/claude-sonnet-4.6':{'modelId':_0x16b4a2(0x3fd,0x178,0x38c,0xdb),'rates':{'input':2.4,'output':0xc,'cacheRead':0.24,'cacheWrite':0x3},'pricingProviderIds':[_0x5a09f8(0x5a7,0x533,0x863,0x179)],'matchKind':_0x16b4a2(0x17e,0xa6,0x369,-0x24)},'step-1-32k':{'modelId':_0x16b4a2(0x331,0x648,0x390,0x3e7),'rates':{'input':2.05,'output':9.59,'cacheRead':0.41},'pricingProviderIds':['stepfun',_0x5a09f8(-0x1e1,-0x1ae,-0x4f2,-0x182)],'matchKind':_0x16b4a2(0x35c,0x322,0x161,0x81)},'step-2-16k':{'modelId':_0x5a09f8(0x5bf,0x480,0x5ea,0x79e),'rates':{'input':5.21,'output':16.44,'cacheRead':1.04},'pricingProviderIds':[_0x16b4a2(0x55e,0x435,0x21e,0x35a),_0x16b4a2(-0x452,-0x221,-0x14f,-0x405)],'matchKind':_0x16b4a2(0x3aa,0x2d1,0x161,0x442)},'step-2-16k-exp':{'modelId':_0x16b4a2(0xfc,-0x1df,-0xbf,-0x453),'rates':{'input':7.004,'output':19.992},'pricingProviderIds':[_0x16b4a2(-0x1cf,-0x212,0x2b,0x26b)],'matchKind':'model-unique'},'step-2-mini':{'modelId':_0x16b4a2(0x1e4,-0x81,0x9c,-0x26c),'rates':{'input':0.2006,'output':0.408},'pricingProviderIds':[_0x16b4a2(-0x1d,-0x168,0x2b,0x1af)],'matchKind':_0x5a09f8(0x499,0x30a,0x610,0x35)},'step-3':{'modelId':_0x5a09f8(-0xfb,0x1cd,0x272,0x460),'rates':{'input':0.2499,'output':0.6494},'pricingProviderIds':[_0x5a09f8(-0x1a4,-0x34,-0x1f7,0x307)],'matchKind':'model-unique'},'step-3-5-flash':{'modelId':_0x16b4a2(0x8d1,0x26b,0x59e,0x8a9),'rates':{'input':0.1,'output':0.3,'cacheRead':0.02},'pricingProviderIds':[_0x5a09f8(0x3a,0x1c5,-0x1c0,0x431)],'matchKind':_0x5a09f8(0x16c,0x30a,0x571,0x5db)},'step-3-5-flash-2603':{'modelId':_0x16b4a2(-0x2cf,-0x14d,-0xab,-0x289),'rates':{'input':0.1,'output':0.3,'cacheRead':0.02},'pricingProviderIds':[_0x5a09f8(0x3a6,0x1c5,0x34e,0x32)],'matchKind':'model-unique'},'step-3-7-flash':{'modelId':_0x5a09f8(-0x3e,0x222,-0x193,0x1a8),'rates':{'input':0.2,'output':1.15,'cacheRead':0.04},'pricingProviderIds':[_0x16b4a2(0xf5,-0x5d,0x224,0x5c4)],'matchKind':_0x5a09f8(0x685,0x30a,0x24f,0x393)},'step-3.5-flash':{'modelId':_0x5a09f8(0x14a,0x23d,0xfd,0x64),'rates':{'input':0.1,'output':0.3,'cacheRead':0.02},'pricingProviderIds':[_0x16b4a2(0x1d7,0x53e,0x21e,0x30e),'stepfun-ai'],'matchKind':_0x5a09f8(-0x13a,0x102,0x17f,0x219)},'step-3.5-flash-2603':{'modelId':_0x5a09f8(0x49b,0x1b3,0x368,0x355),'rates':{'input':0.1,'output':0.3,'cacheRead':0.02},'pricingProviderIds':['stepfun',_0x5a09f8(-0x4da,-0x1ae,-0x29c,-0x13c)],'matchKind':_0x5a09f8(-0xa3,0x102,-0x160,-0x20f)},'step-3.7-flash':{'modelId':_0x16b4a2(0x45,0x21,0x3cd,0x6ec),'rates':{'input':0.185,'output':1.11,'cacheRead':0.037},'pricingProviderIds':[_0x16b4a2(0x387,-0xe3,0x21e,0x2de),'stepfun-ai'],'matchKind':_0x5a09f8(-0x15c,0x102,0x2f8,0x418)},'step-3.7-flash:free':{'modelId':'step-3.7-flash:free','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0x336,-0x1fc,-0x127,0xbb)],'matchKind':'model-unique'},'step-r1-v-mini':{'modelId':_0x5a09f8(0xcf,-0x98,-0x333,-0x44e),'rates':{'input':2.5,'output':0xb},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x30d,0x5d5,0x369,0x1c4)},'stepfun-ai/Step-3.5-Flash':{'modelId':_0x16b4a2(0x506,0x2dd,0x18c,0x39c),'rates':{'input':0.1,'output':0.3},'pricingProviderIds':[_0x16b4a2(0x325,0x21a,-0x52,-0x3cd),_0x16b4a2(0x132,0x62c,0x4eb,0x4ef),_0x5a09f8(0x5f0,0x45e,0x6b5,0x760)],'matchKind':'model-identical'},'stepfun-ai/Step-3.7-Flash':{'modelId':_0x16b4a2(0x201,0x4fb,0x528,0x7ce),'rates':{'input':0.2,'output':1.15},'pricingProviderIds':[_0x16b4a2(-0x6a,-0x1c,-0x52,0xfe)],'matchKind':'model-unique'},'stepfun-ai/step-3.5-flash-2603':{'modelId':_0x5a09f8(-0x4a,-0x4,-0x8f,0x14d),'rates':{'input':0.1,'output':0.3},'pricingProviderIds':[_0x16b4a2(-0x2ee,0xeb,0x2b,-0x331)],'matchKind':_0x5a09f8(0x53a,0x30a,0x9f,0x1c6)},'stepfun-ai/step-3.7-flash':{'modelId':_0x5a09f8(0x425,0x62,-0x1b0,0x2ee),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x14b,0x43c,0x9a,0x2e0)],'matchKind':_0x16b4a2(0x70,0x22d,0x369,0x5ed)},'stepfun/step-3':{'modelId':_0x16b4a2(-0x1b0,-0x129,-0xa,-0x29a),'rates':{'input':0.21,'output':0.57},'pricingProviderIds':[_0x5a09f8(-0xb5,-0x115,-0x301,-0x397)],'matchKind':'model-unique'},'stepfun/step-3.7-flash-free':{'modelId':'stepfun/step-3.7-flash-free','rates':{'input':0x0,'output':0x0},'pricingProviderIds':['zenmux'],'matchKind':_0x16b4a2(-0x49,0x496,0x369,0x55c)},'stepfun/step-3.7-flash:thinking':{'modelId':_0x16b4a2(0x38a,-0x1df,0xd7,-0x1c8),'rates':{'input':0.2,'output':1.15,'cacheRead':0.04},'pricingProviderIds':[_0x16b4a2(0x2d9,-0x16f,0x2b,0x4a)],'matchKind':'model-unique'},'subconscious/glm-5.2':{'modelId':_0x5a09f8(0x1ad,-0xd3,0x2e4,-0x50),'rates':{'input':1.4,'output':4.4,'cacheRead':0.26},'pricingProviderIds':[_0x5a09f8(0x218,-0x100,0x4d,0x90)],'matchKind':_0x5a09f8(0x63e,0x30a,0x5db,0x386)},'subconscious/tim-qwen3.6-27b':{'modelId':_0x16b4a2(0x205,0x79b,0x4b8,0x472),'rates':{'input':0.3,'output':0x3,'cacheRead':0.15},'pricingProviderIds':[_0x5a09f8(-0x406,-0x100,-0x3cc,-0x237)],'matchKind':_0x5a09f8(0x46c,0x30a,0x78,-0x3a)},'switchpoint/router':{'modelId':_0x16b4a2(0x207,0x438,0x221,0x372),'rates':{'input':0.85,'output':3.4},'pricingProviderIds':['kilo'],'matchKind':'model-unique'},'tc-code-latest':{'modelId':_0x16b4a2(-0x209,0x1a1,0x33,-0x230),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':['tencent-coding-plan'],'matchKind':_0x5a09f8(0x268,0x30a,0x475,0x3f9)},'tencent/Hunyuan-A13B-Instruct':{'modelId':_0x16b4a2(0x4c5,0x18f,0x298,0x577),'rates':{'input':0.14,'output':0.57},'pricingProviderIds':[_0x5a09f8(0x58f,0x48c,0x7e1,0x2a5),_0x16b4a2(0x73c,0x6d9,0x4bd,0x3fb)],'matchKind':_0x16b4a2(0x33c,-0x212,0x161,0x68)},'tencent/Hunyuan-MT-7B':{'modelId':_0x5a09f8(-0x3f,-0xd4,-0x1d5,-0x3d6),'rates':{'input':0xa,'output':0x14},'pricingProviderIds':[_0x5a09f8(-0x22d,-0x34,0x101,-0x286)],'matchKind':_0x5a09f8(0x6a0,0x30a,0x170,0x479)},'tencent/Hy3-preview':{'modelId':'tencent/Hy3-preview','rates':{'input':0.066,'output':0.26,'cacheRead':0.029},'pricingProviderIds':['siliconflow'],'matchKind':'model-unique'},'tencent/hunyuan-a13b-instruct':{'modelId':_0x5a09f8(0x181,0x113,-0x1fc,0x44c),'rates':{'input':0.14,'output':0.57},'pricingProviderIds':['kilo',_0x5a09f8(0x370,0x6d,0x192,-0x1c5)],'matchKind':'model-identical'},'text-embedding-3-small':{'modelId':_0x16b4a2(-0x141,-0x198,-0xf2,0x283),'rates':{'input':0.02,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x1bf,-0x10e,0x21b,-0x42e),_0x5a09f8(-0x96,-0xe7,-0x27b,-0x329),_0x5a09f8(0x2b0,0x10f,-0xa5,-0x118),_0x5a09f8(0x31,0x6,-0xf4,-0x2f8)],'matchKind':_0x5a09f8(0x349,0x102,-0x169,0xe8)},'text-embedding-ada-002':{'modelId':_0x16b4a2(0x176,-0x15e,-0x15a,-0x443),'rates':{'input':0.1,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x2ef,0x154,-0xaf,-0x38e),_0x5a09f8(-0x3f3,-0xe7,-0x404,0xba),_0x5a09f8(-0x254,0x10f,0x396,0x1b8)],'matchKind':_0x16b4a2(0x1ff,-0x13f,0x161,-0x1f)},'thedrummer/unslopnemo-12b':{'modelId':'thedrummer/unslopnemo-12b','rates':{'input':0.4,'output':0.4},'pricingProviderIds':[_0x16b4a2(0x770,0x298,0x592,0x7f0),_0x5a09f8(-0x13f,0x6d,-0x181,-0x183)],'matchKind':_0x5a09f8(0x111,0x102,0x31b,0x34c)},'thinkingmachines/Inkling:peft:262144':{'modelId':_0x16b4a2(0xb6,0x174,0x3e5,0x199),'rates':{'input':3.74,'output':9.36,'cacheRead':0.748},'pricingProviderIds':[_0x16b4a2(0x384,-0x21b,0xc8,-0x97)],'matchKind':'model-unique'},'tongyi-intent-detect-v3':{'modelId':_0x16b4a2(0x748,0x6cf,0x3a0,0x2c5),'rates':{'input':0.058,'output':0.144},'pricingProviderIds':[_0x5a09f8(0x2bc,0x97,0x3b6,-0xf0)],'matchKind':'model-unique'},'trendyol-7b':{'modelId':'trendyol-7b','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x21e,0x395,0x518,0x4fe)],'matchKind':'model-unique'},'trinity-large-preview-free':{'modelId':_0x5a09f8(0x205,0x194,-0xda,-0x130),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0x2a3,0x2b8,0xe1,0x451)],'matchKind':_0x16b4a2(0x189,0x28d,0x369,0x246)},'umans-qwen3.6-35b-a3b':{'modelId':_0x16b4a2(0x3c1,-0xa7,0x2b9,0x62a),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0,'cacheWrite':0x0},'pricingProviderIds':[_0x5a09f8(-0x1c5,-0x16c,-0x45,-0x2e2)],'matchKind':_0x16b4a2(0x407,0x65,0x369,0x6b6)},'universal-summarizer':{'modelId':'universal-summarizer','rates':{'input':0x1e,'output':0x1e},'pricingProviderIds':[_0x5a09f8(-0x2eb,-0x34,-0x2a8,-0xad)],'matchKind':_0x5a09f8(0x297,0x30a,0xb1,0x391)},'unsloth/Mistral-Nemo-Instruct-2407-TEE':{'modelId':'unsloth/Mistral-Nemo-Instruct-2407-TEE','rates':{'input':0.0245,'output':0.0978,'cacheRead':0.01225},'pricingProviderIds':[_0x5a09f8(0x57a,0x354,0x6ee,0x79)],'matchKind':_0x16b4a2(0x21,0x13e,0x369,0x701)},'unsloth/gemma-3-12b-it':{'modelId':'unsloth/gemma-3-12b-it','rates':{'input':0.272,'output':0.272},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0xe9,0x30a,0x35b,0x5ee)},'unsloth/gemma-3-27b-it':{'modelId':_0x5a09f8(0x4d6,0x286,-0x123,0x2fe),'rates':{'input':0.2992,'output':0.2992},'pricingProviderIds':[_0x5a09f8(-0x32a,-0x34,0x35,0x31b)],'matchKind':_0x5a09f8(0x4b4,0x30a,0x3d9,0x15d)},'unsloth/gemma-3-4b-it':{'modelId':'unsloth/gemma-3-4b-it','rates':{'input':0.2006,'output':0.2006},'pricingProviderIds':[_0x5a09f8(0x4e,-0x34,0x1b4,0x33f)],'matchKind':_0x16b4a2(0x604,0x4fb,0x369,0x66d)},'upstage/solar-10_7b-instruct':{'modelId':_0x16b4a2(-0x137,0x16c,-0x150,0x40),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x2c3,-0xa,0x9a,-0x1b5)],'matchKind':_0x5a09f8(0x128,0x30a,0x3a8,0x3be)},'us.anthropic.claude-fable-5':{'modelId':_0x5a09f8(0x7e5,0x45b,0x7ca,0x108),'rates':{'input':0xa,'output':0x32,'cacheRead':0x1,'cacheWrite':12.5},'pricingProviderIds':[_0x5a09f8(0x365,0x24b,0x3f8,-0xce)],'matchKind':_0x16b4a2(0x3b0,0x21f,0x369,0x707)},'us.anthropic.claude-haiku-4-5-20251001-v1:0':{'modelId':'us.anthropic.claude-haiku-4-5-20251001-v1:0','rates':{'input':0x1,'output':0x5,'cacheRead':0.1,'cacheWrite':1.25},'pricingProviderIds':[_0x16b4a2(0x2c6,-0x25,0x2aa,0x30c)],'matchKind':'model-unique'},'us.anthropic.claude-opus-4-1-20250805-v1:0':{'modelId':_0x16b4a2(0x265,-0x35f,-0x12,0x265),'rates':{'input':0xf,'output':0x4b,'cacheRead':1.5,'cacheWrite':18.75},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x5a09f8(0x312,0x30a,0x1,0x1e5)},'us.anthropic.claude-opus-4-5-20251101-v1:0':{'modelId':'us.anthropic.claude-opus-4-5-20251101-v1:0','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x5a09f8(-0x15c,0x24b,-0x68,0x2bd)],'matchKind':'model-unique'},'us.anthropic.claude-opus-4-6-v1':{'modelId':_0x16b4a2(-0xae,-0x2fd,-0xe1,0x1b8),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x16b4a2(0x3ac,0x2b0,0x369,0x69d)},'us.anthropic.claude-opus-4-7':{'modelId':_0x5a09f8(-0x105,0x226,-0x183,-0xe9),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x16b4a2(0x30c,-0x7c,0x2aa,0x529)],'matchKind':_0x5a09f8(0x6a8,0x30a,0x69a,0x79)},'us.anthropic.claude-opus-4-8':{'modelId':'us.anthropic.claude-opus-4-8','rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x16b4a2(-0x1b,0xd3,0x2aa,0x509)],'matchKind':_0x16b4a2(0x4aa,0x555,0x369,0x25f)},'us.anthropic.claude-opus-5':{'modelId':_0x16b4a2(0xbd,0x26c,0x373,0x395),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x16b4a2(0x25b,0x1aa,0x369,0x6ec)},'us.anthropic.claude-sonnet-4-5-20250929-v1:0':{'modelId':_0x5a09f8(0x32b,0x73,0x147,-0x2fd),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x5a09f8(0x472,0x24b,0x78,0x4dc)],'matchKind':_0x5a09f8(0x5ee,0x30a,0x5df,-0xa0)},'us.anthropic.claude-sonnet-4-6':{'modelId':_0x5a09f8(0x13a,0x56,-0xf7,-0x1c4),'rates':{'input':0x3,'output':0xf,'cacheRead':0.3,'cacheWrite':3.75},'pricingProviderIds':[_0x5a09f8(0x209,0x24b,-0x16b,0x44f)],'matchKind':'model-unique'},'us.anthropic.claude-sonnet-5':{'modelId':'us.anthropic.claude-sonnet-5','rates':{'input':0x2,'output':0xa,'cacheRead':0.2,'cacheWrite':2.5},'pricingProviderIds':[_0x5a09f8(0x3ae,0x24b,0x3dd,0x5cd)],'matchKind':'model-unique'},'us.deepseek.r1-v1:0':{'modelId':_0x16b4a2(-0x487,-0x4b,-0x170,-0x23a),'rates':{'input':1.35,'output':5.4},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x16b4a2(0x34c,0x43,0x369,0x109)},'us.meta.llama4-maverick-17b-instruct-v1:0':{'modelId':_0x5a09f8(0x383,0x48e,0x1ba,0x46b),'rates':{'input':0.24,'output':0.97},'pricingProviderIds':[_0x16b4a2(-0xe6,0x3e0,0x2aa,0x64a)],'matchKind':_0x16b4a2(0x176,0x5e4,0x369,0x563)},'us.meta.llama4-scout-17b-instruct-v1:0':{'modelId':_0x16b4a2(0x559,0x596,0x4f3,0x8b4),'rates':{'input':0.17,'output':0.66},'pricingProviderIds':[_0x5a09f8(0x315,0x24b,-0x28,-0xd)],'matchKind':_0x5a09f8(0x671,0x30a,0x2e,0x547)},'v0-1.0-md':{'modelId':_0x16b4a2(0x6d,-0x10f,-0x114,0x199),'rates':{'input':0x3,'output':0xf},'pricingProviderIds':[_0x5a09f8(-0x239,-0x34,-0x13f,-0xc2),'v0'],'matchKind':_0x16b4a2(0x3a6,-0x167,0x161,0x4ff)},'v0-1.5-lg':{'modelId':_0x5a09f8(-0x3b1,-0x1cd,-0x122,-0x2ca),'rates':{'input':0xf,'output':0x4b},'pricingProviderIds':[_0x5a09f8(-0x22e,-0x34,-0x10a,0xda),'v0'],'matchKind':'model-identical'},'v0-1.5-md':{'modelId':'v0-1.5-md','rates':{'input':0x3,'output':0xf},'pricingProviderIds':['nano-gpt','v0'],'matchKind':_0x5a09f8(-0x16b,0x102,0x24a,-0x147)},'venice-uncensored':{'modelId':_0x5a09f8(0x56b,0x1f7,0x450,0x14),'rates':{'input':0.4,'output':0.4},'pricingProviderIds':[_0x5a09f8(-0x1cf,-0x34,0x1f4,-0x229)],'matchKind':_0x5a09f8(0x15f,0x30a,0x24c,0x53d)},'venice-uncensored-1-2':{'modelId':'venice-uncensored-1-2','rates':{'input':0.2,'output':0.9},'pricingProviderIds':['venice'],'matchKind':_0x16b4a2(0xd8,0x459,0x369,0x2e2)},'venice-uncensored-role-play':{'modelId':_0x16b4a2(0x1ab,-0x2be,0x42,-0x115),'rates':{'input':0.5,'output':0x2},'pricingProviderIds':[_0x5a09f8(0x5b2,0x543,0x445,0x19b)],'matchKind':'model-unique'},'venice-uncensored:web':{'modelId':_0x16b4a2(0x432,0x365,0x474,0x837),'rates':{'input':0.4,'output':0.4},'pricingProviderIds':[_0x16b4a2(-0x1ce,-0x1cd,0x2b,0x336)],'matchKind':_0x5a09f8(0x406,0x30a,0x3fc,0x5f3)},'volcengine/doubao-seed-1.8':{'modelId':_0x5a09f8(0x37f,0x2e3,-0xcf,0x519),'rates':{'input':0.11,'output':0.28,'cacheRead':0.02,'cacheWrite':0.0024},'pricingProviderIds':[_0x16b4a2(0x39,-0x1d8,-0xb6,0x17e)],'matchKind':_0x5a09f8(0x560,0x30a,0xfc,0x45a)},'volcengine/doubao-seed-2.0-code':{'modelId':_0x16b4a2(0xcd,0x37f,0x183,-0x1b9),'rates':{'input':0.9,'output':4.48},'pricingProviderIds':[_0x5a09f8(-0x83,-0x115,-0x2c7,-0x1f)],'matchKind':'model-unique'},'volcengine/doubao-seed-2.0-lite':{'modelId':'volcengine/doubao-seed-2.0-lite','rates':{'input':0.09,'output':0.51,'cacheRead':0.02,'cacheWrite':0.0024},'pricingProviderIds':[_0x5a09f8(-0x3f1,-0x115,-0x2c3,0x209)],'matchKind':_0x5a09f8(-0xa,0x30a,0xcc,0x14b)},'volcengine/doubao-seed-2.0-mini':{'modelId':_0x5a09f8(-0x416,-0x1b5,-0x35c,-0xbb),'rates':{'input':0.03,'output':0.28,'cacheRead':0.01,'cacheWrite':0.0024},'pricingProviderIds':[_0x5a09f8(0x11e,-0x115,-0x4a2,-0x30f)],'matchKind':_0x16b4a2(0x4a4,0x455,0x369,0x401)},'volcengine/doubao-seed-2.0-pro':{'modelId':_0x5a09f8(-0x5b,-0x122,-0x1d2,0x188),'rates':{'input':0.45,'output':2.24,'cacheRead':0.09,'cacheWrite':0.0024},'pricingProviderIds':['zenmux'],'matchKind':'model-unique'},'volcengine/doubao-seed-code':{'modelId':_0x5a09f8(0x5be,0x225,0x19a,0x3c6),'rates':{'input':0.17,'output':1.12,'cacheRead':0.03},'pricingProviderIds':['zenmux'],'matchKind':'model-unique'},'voxtral-mini-3b':{'modelId':_0x5a09f8(0x88,0x10a,0x151,-0x1e0),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x496,0x40d,0x2b8,0x5a2)],'matchKind':_0x5a09f8(0x1e,0x30a,0x314,-0x9b)},'voxtral-small-24b-2507':{'modelId':_0x16b4a2(-0x11a,0x51a,0x27e,0x12b),'rates':{'input':0.15,'output':0.35},'pricingProviderIds':['scaleway'],'matchKind':'model-unique'},'wan2-2-t2v-a14b':{'modelId':_0x16b4a2(0x410,0x40a,0x139,0x420),'rates':{'input':0.6,'output':0x0},'pricingProviderIds':['digitalocean'],'matchKind':_0x16b4a2(-0x34,0x4fb,0x369,0x6a7)},'wan2.7-image':{'modelId':'wan2.7-image','rates':{'input':0x0,'output':0x0},'pricingProviderIds':['alibaba-token-plan',_0x5a09f8(-0x38d,-0x7b,0x33b,0x243)],'matchKind':'model-identical'},'wan2.7-image-pro':{'modelId':_0x16b4a2(0x766,0x44d,0x456,0x28e),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x36e,0x678,0x5ec,0x4a5),_0x5a09f8(0x69,-0x7b,0x338,-0x336)],'matchKind':_0x16b4a2(-0x5,-0x1eb,0x161,0x416)},'workers-ai/@cf/ai4bharat/indictrans2-en-indic-1B':{'modelId':_0x16b4a2(0x6,-0x94,0xba,0x26f),'rates':{'input':0.34,'output':0.34},'pricingProviderIds':[_0x5a09f8(0x1d2,0x126,-0xfd,-0x4b)],'matchKind':_0x16b4a2(0x609,0x478,0x369,0x4d0)},'workers-ai/@cf/aisingapore/gemma-sea-lion-v4-27b-it':{'modelId':'workers-ai/@cf/aisingapore/gemma-sea-lion-v4-27b-it','rates':{'input':0.35,'output':0.56},'pricingProviderIds':['cloudflare-ai-gateway'],'matchKind':'model-unique'},'workers-ai/@cf/baai/bge-base-en-v1.5':{'modelId':_0x16b4a2(0x420,0x120,0xfd,0x3b),'rates':{'input':0.067,'output':0x0},'pricingProviderIds':['cloudflare-ai-gateway'],'matchKind':_0x5a09f8(0x1c1,0x30a,0x5db,0x58f)},'workers-ai/@cf/baai/bge-large-en-v1.5':{'modelId':_0x5a09f8(0x147,0x1a2,0x410,0xa3),'rates':{'input':0.2,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0x5b,-0x5d,0x185,-0x1ee)],'matchKind':_0x5a09f8(-0x88,0x30a,0x623,0x198)},'workers-ai/@cf/baai/bge-m3':{'modelId':_0x5a09f8(-0xf,0x6b,0xc0,-0x317),'rates':{'input':0.012,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x35b,0x126,0x342,-0x29e)],'matchKind':_0x5a09f8(0x6c8,0x30a,0x434,0x4c)},'workers-ai/@cf/baai/bge-reranker-base':{'modelId':_0x5a09f8(0x1dc,0x193,0x2ce,0x1a8),'rates':{'input':0.0031,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x2,0x188,0x185,0x302)],'matchKind':'model-unique'},'workers-ai/@cf/baai/bge-small-en-v1.5':{'modelId':'workers-ai/@cf/baai/bge-small-en-v1.5','rates':{'input':0.02,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x479,0x222,0x185,-0x4f)],'matchKind':_0x16b4a2(0x5f9,0xbe,0x369,0x3ee)},'workers-ai/@cf/deepgram/aura-2-en':{'modelId':_0x5a09f8(0x325,0x293,0x16e,0x5ff),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['cloudflare-ai-gateway'],'matchKind':'model-unique'},'workers-ai/@cf/deepgram/aura-2-es':{'modelId':_0x16b4a2(0x526,0x24f,0x251,0x3e8),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['cloudflare-ai-gateway'],'matchKind':'model-unique'},'workers-ai/@cf/deepgram/nova-3':{'modelId':_0x16b4a2(0x30e,0x617,0x52c,0x524),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':['cloudflare-ai-gateway'],'matchKind':_0x16b4a2(0x489,0x197,0x369,0x5f8)},'workers-ai/@cf/deepseek-ai/deepseek-r1-distill-qwen-32b':{'modelId':_0x16b4a2(-0x122,0xae,0x255,0x190),'rates':{'input':0.5,'output':4.88},'pricingProviderIds':[_0x16b4a2(0x289,-0x111,0x185,-0x130)],'matchKind':_0x16b4a2(0x65e,0x450,0x369,-0x50)},'workers-ai/@cf/facebook/bart-large-cnn':{'modelId':_0x5a09f8(-0x14f,0xdd,-0x203,0x3ed),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x51e,0x45,0x185,-0x60)],'matchKind':_0x5a09f8(0xcc,0x30a,0x13c,0x2ae)},'workers-ai/@cf/google/gemma-3-12b-it':{'modelId':_0x5a09f8(0x40,0x1be,0xd9,0xc),'rates':{'input':0.35,'output':0.56},'pricingProviderIds':[_0x5a09f8(-0xf2,0x126,0x4ca,0x4de)],'matchKind':_0x5a09f8(0x350,0x30a,0x49f,0x368)},'workers-ai/@cf/huggingface/distilbert-sst-2-int8':{'modelId':'workers-ai/@cf/huggingface/distilbert-sst-2-int8','rates':{'input':0.026,'output':0x0},'pricingProviderIds':[_0x16b4a2(-0x4c,0x116,0x185,0x335)],'matchKind':_0x16b4a2(0x6d7,0x1b5,0x369,0x4af)},'workers-ai/@cf/ibm-granite/granite-4.0-h-micro':{'modelId':_0x5a09f8(0x15e,-0x16f,-0x3b5,-0x329),'rates':{'input':0.017,'output':0.11},'pricingProviderIds':['cloudflare-ai-gateway'],'matchKind':'model-unique'},'workers-ai/@cf/meta/llama-2-7b-chat-fp16':{'modelId':_0x16b4a2(0x7b3,0x2d3,0x51c,0x6e2),'rates':{'input':0.56,'output':6.67},'pricingProviderIds':[_0x16b4a2(0x208,0x3c5,0x185,-0x1f8)],'matchKind':'model-unique'},'workers-ai/@cf/meta/llama-3-8b-instruct':{'modelId':'workers-ai/@cf/meta/llama-3-8b-instruct','rates':{'input':0.28,'output':0.83},'pricingProviderIds':[_0x16b4a2(0x4cd,0x3f6,0x185,0x4b5)],'matchKind':'model-unique'},'workers-ai/@cf/meta/llama-3-8b-instruct-awq':{'modelId':_0x16b4a2(0x410,0x408,0x5ed,0x2fe),'rates':{'input':0.12,'output':0.27},'pricingProviderIds':[_0x16b4a2(0x50d,0x137,0x185,0x2d8)],'matchKind':_0x16b4a2(0x601,0x6f7,0x369,0x41d)},'workers-ai/@cf/meta/llama-3.1-8b-instruct':{'modelId':_0x5a09f8(-0x205,-0x192,-0x488,-0x65),'rates':{'input':0.28,'output':0.8299999999999998},'pricingProviderIds':[_0x16b4a2(0x2c7,0x20e,0x185,0x251)],'matchKind':'model-unique'},'workers-ai/@cf/meta/llama-3.1-8b-instruct-awq':{'modelId':'workers-ai/@cf/meta/llama-3.1-8b-instruct-awq','rates':{'input':0.12,'output':0.27},'pricingProviderIds':[_0x5a09f8(-0xc9,0x126,0x2f4,-0x1d4)],'matchKind':'model-unique'},'workers-ai/@cf/meta/llama-3.1-8b-instruct-fp8':{'modelId':'workers-ai/@cf/meta/llama-3.1-8b-instruct-fp8','rates':{'input':0.15,'output':0.29},'pricingProviderIds':[_0x16b4a2(0x4e3,0x304,0x185,-0x40)],'matchKind':_0x16b4a2(0x51d,0x610,0x369,0x6b7)},'workers-ai/@cf/meta/llama-3.2-11b-vision-instruct':{'modelId':_0x5a09f8(0x2fd,0x2ca,0x3ac,0xe4),'rates':{'input':0.049,'output':0.68},'pricingProviderIds':[_0x5a09f8(0x43d,0x126,0x93,0x167)],'matchKind':_0x5a09f8(0x318,0x30a,0x37d,0x629)},'workers-ai/@cf/meta/llama-3.2-1b-instruct':{'modelId':_0x5a09f8(-0x173,-0xdc,0x5f,-0x189),'rates':{'input':0.027,'output':0.2},'pricingProviderIds':[_0x16b4a2(0x534,0x32c,0x185,0x2cd)],'matchKind':_0x5a09f8(-0x3c,0x30a,0x4d1,0x21d)},'workers-ai/@cf/meta/llama-3.2-3b-instruct':{'modelId':_0x16b4a2(0x102,0x564,0x242,0x28c),'rates':{'input':0.051,'output':0.34},'pricingProviderIds':['cloudflare-ai-gateway'],'matchKind':'model-unique'},'workers-ai/@cf/meta/llama-3.3-70b-instruct-fp8-fast':{'modelId':_0x16b4a2(0x2a5,0x3f9,0x46a,0x6ec),'rates':{'input':0.29,'output':2.25},'pricingProviderIds':[_0x5a09f8(0x1d2,0x126,-0xf7,0x278)],'matchKind':_0x5a09f8(0x35d,0x30a,-0xa0,-0x19)},'workers-ai/@cf/meta/llama-4-scout-17b-16e-instruct':{'modelId':_0x5a09f8(0x2ed,0x463,0x416,0x259),'rates':{'input':0.27,'output':0.85},'pricingProviderIds':[_0x5a09f8(-0xe0,0x126,-0x29,-0x115)],'matchKind':_0x5a09f8(0x2ce,0x30a,0x3e6,0x254)},'workers-ai/@cf/meta/llama-guard-3-8b':{'modelId':_0x16b4a2(-0x388,0x113,0x16,-0x2fe),'rates':{'input':0.48,'output':0.03},'pricingProviderIds':[_0x5a09f8(-0xc1,0x126,-0x5a,-0xfe)],'matchKind':_0x16b4a2(0x578,0x3c2,0x369,0x283)},'workers-ai/@cf/meta/m2m100-1.2b':{'modelId':'workers-ai/@cf/meta/m2m100-1.2b','rates':{'input':0.34,'output':0.34},'pricingProviderIds':[_0x5a09f8(0x21d,0x126,-0x150,-0x1ba)],'matchKind':_0x5a09f8(0x4c2,0x30a,0x222,0x308)},'workers-ai/@cf/mistral/mistral-7b-instruct-v0.1':{'modelId':_0x5a09f8(0x7df,0x4c0,0x153,0x17d),'rates':{'input':0.11,'output':0.19},'pricingProviderIds':[_0x16b4a2(-0x13c,0x215,0x185,-0xd0)],'matchKind':_0x16b4a2(0x514,0x1d0,0x369,-0x53)},'workers-ai/@cf/mistralai/mistral-small-3.1-24b-instruct':{'modelId':_0x16b4a2(-0x11b,0x18b,0x6e,0xbe),'rates':{'input':0.35,'output':0.56},'pricingProviderIds':[_0x5a09f8(0x29,0x126,0xa2,0x1d7)],'matchKind':_0x5a09f8(0x442,0x30a,0x4be,0x215)},'workers-ai/@cf/moonshotai/kimi-k2.5':{'modelId':_0x16b4a2(0x42a,0x9,0x1ea,0x268),'rates':{'input':0.6,'output':0x3,'cacheRead':0.1},'pricingProviderIds':['cloudflare-ai-gateway'],'matchKind':_0x5a09f8(0x41d,0x30a,0x365,0x5d1)},'workers-ai/@cf/moonshotai/kimi-k2.6':{'modelId':_0x5a09f8(-0x418,-0x15b,-0x1e4,-0x4a5),'rates':{'input':0.95,'output':0x4,'cacheRead':0.16},'pricingProviderIds':[_0x16b4a2(-0x141,-0x119,0x185,-0x166)],'matchKind':_0x5a09f8(0x6aa,0x30a,0x6f,0x292)},'workers-ai/@cf/myshell-ai/melotts':{'modelId':_0x16b4a2(0x2f7,-0x106,0x64,0x3ab),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x455,0x2ac,0x185,-0xca)],'matchKind':'model-unique'},'workers-ai/@cf/nvidia/nemotron-3-120b-a12b':{'modelId':'workers-ai/@cf/nvidia/nemotron-3-120b-a12b','rates':{'input':0.5,'output':1.5},'pricingProviderIds':['cloudflare-ai-gateway'],'matchKind':_0x5a09f8(0x169,0x30a,0x5a0,0x510)},'workers-ai/@cf/openai/gpt-oss-120b':{'modelId':_0x16b4a2(-0xee,-0x346,-0x125,-0x3dd),'rates':{'input':0.35,'output':0.75},'pricingProviderIds':[_0x16b4a2(0x77,0x40,0x185,0x372)],'matchKind':'model-unique'},'workers-ai/@cf/openai/gpt-oss-20b':{'modelId':_0x16b4a2(0x6ec,0x84d,0x54f,0x1b2),'rates':{'input':0.2,'output':0.3},'pricingProviderIds':[_0x16b4a2(-0xa2,-0xa5,0x185,0x35b)],'matchKind':_0x5a09f8(0x4ee,0x30a,0xf1,0x1f7)},'workers-ai/@cf/pfnet/plamo-embedding-1b':{'modelId':_0x16b4a2(0x5c1,0x57c,0x21c,-0xd6),'rates':{'input':0.019,'output':0x0},'pricingProviderIds':['cloudflare-ai-gateway'],'matchKind':_0x16b4a2(0x46,0x3a9,0x369,0x129)},'workers-ai/@cf/pipecat-ai/smart-turn-v2':{'modelId':_0x16b4a2(0x536,0x3f2,0x34e,0x389),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(0x35f,0x126,0xa0,-0xc8)],'matchKind':_0x5a09f8(0x29c,0x30a,0x230,0x51a)},'workers-ai/@cf/qwen/qwen2.5-coder-32b-instruct':{'modelId':_0x5a09f8(0x115,-0x124,-0x44e,-0x1c8),'rates':{'input':0.66,'output':0x1},'pricingProviderIds':[_0x5a09f8(0x3e6,0x126,0x22b,0x219)],'matchKind':'model-unique'},'workers-ai/@cf/qwen/qwen3-30b-a3b-fp8':{'modelId':_0x16b4a2(0x77c,0x845,0x495,0x5c2),'rates':{'input':0.051,'output':0.34},'pricingProviderIds':['cloudflare-ai-gateway'],'matchKind':_0x5a09f8(0x87,0x30a,0x130,0x32a)},'workers-ai/@cf/qwen/qwen3-embedding-0.6b':{'modelId':'workers-ai/@cf/qwen/qwen3-embedding-0.6b','rates':{'input':0.012,'output':0x0},'pricingProviderIds':['cloudflare-ai-gateway'],'matchKind':'model-unique'},'workers-ai/@cf/qwen/qwq-32b':{'modelId':'workers-ai/@cf/qwen/qwq-32b','rates':{'input':0.66,'output':0x1},'pricingProviderIds':['cloudflare-ai-gateway'],'matchKind':_0x16b4a2(0x363,0x324,0x369,0x43d)},'workers-ai/@cf/zai-org/glm-4.7-flash':{'modelId':_0x16b4a2(0x4c3,0x35c,0x5f6,0x689),'rates':{'input':0.06,'output':0.4},'pricingProviderIds':[_0x5a09f8(-0x1fe,0x126,-0x68,-0x3f)],'matchKind':_0x5a09f8(0x41f,0x30a,0x570,0x1e8)},'workers-ai/@cf/zai-org/glm-5.2':{'modelId':_0x5a09f8(0x39b,0x265,0x49b,-0x15b),'rates':{'input':1.4,'output':4.4,'cacheRead':0.26},'pricingProviderIds':[_0x16b4a2(-0xd5,-0x1cc,0x185,0x28b)],'matchKind':_0x16b4a2(0x8c,0x389,0x369,0x324)},'writer.palmyra-x4-v1:0':{'modelId':_0x5a09f8(0x5db,0x561,0x5d2,0x268),'rates':{'input':2.5,'output':0xa},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x5a09f8(0x6b3,0x30a,0x3a8,0x1e9)},'writer.palmyra-x5-v1:0':{'modelId':_0x5a09f8(-0xc2,0xf6,-0xe5,0x6b),'rates':{'input':0.6,'output':0x6},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x5a09f8(0x4de,0x30a,0x575,0x6a0)},'writer/palmyra-x5':{'modelId':_0x5a09f8(-0x37d,-0xdd,-0x436,-0x46d),'rates':{'input':0.6,'output':0x6},'pricingProviderIds':[_0x5a09f8(0x429,0x533,0x35c,0x625),_0x16b4a2(-0x82,-0x151,0xcc,0x163)],'matchKind':_0x5a09f8(0x31,0x102,0x4a8,-0x6f)},'x-ai/grok-4-fast':{'modelId':'x-ai/grok-4-fast','rates':{'input':0.2,'output':0.5,'cacheRead':0.05},'pricingProviderIds':['zenmux'],'matchKind':_0x16b4a2(0x3b2,0x3e3,0x369,0x1c7)},'x-ai/grok-4.1-fast':{'modelId':_0x5a09f8(-0x333,0xc,-0x84,-0x5b),'rates':{'input':0.2,'output':0.5,'cacheRead':0.05},'pricingProviderIds':[_0x5a09f8(-0x44b,-0x115,-0x4ba,-0x417)],'matchKind':'model-unique'},'x-ai/grok-4.1-fast-non-reasoning':{'modelId':_0x16b4a2(0x12e,0x10c,0x1ab,0x12),'rates':{'input':0.2,'output':0.5,'cacheRead':0.05},'pricingProviderIds':[_0x5a09f8(-0x41a,-0x115,-0x318,-0x349)],'matchKind':_0x5a09f8(0x4e5,0x30a,0x1c3,-0x59)},'x-ai/grok-4.2-fast':{'modelId':'x-ai/grok-4.2-fast','rates':{'input':0x3,'output':0x9},'pricingProviderIds':[_0x5a09f8(-0x5e,-0x115,0x1ef,0x13f)],'matchKind':_0x16b4a2(0x304,0x1e5,0x369,0x4b8)},'x-ai/grok-4.2-fast-non-reasoning':{'modelId':_0x5a09f8(0x425,0x2de,0x366,0x15a),'rates':{'input':0x3,'output':0x9},'pricingProviderIds':['zenmux'],'matchKind':_0x5a09f8(0x464,0x30a,0x17b,0x588)},'x-ai/grok-code-fast-1':{'modelId':'x-ai/grok-code-fast-1','rates':{'input':0.2,'output':1.5,'cacheRead':0.02},'pricingProviderIds':[_0x16b4a2(0x1f5,-0x149,-0xb6,0x242)],'matchKind':_0x16b4a2(0xbf,0x31a,0x369,0x37d)},'x-ai/grok-latest':{'modelId':_0x16b4a2(0x1a1,0x5c5,0x33e,0x67f),'rates':{'input':1.25,'output':2.5,'cacheRead':0.2},'pricingProviderIds':[_0x16b4a2(0x10c,-0x2f0,0x2b,-0xfa)],'matchKind':_0x16b4a2(0x712,0x3cf,0x369,0x1e1)},'xai.grok-4.3':{'modelId':_0x16b4a2(0x3c7,0x1e3,0x238,0xa7),'rates':{'input':1.25,'output':2.5,'cacheRead':0.2},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x16b4a2(0xd0,0x6d3,0x369,0x56d)},'xai/grok-4-1-fast-non-reasoning':{'modelId':_0x5a09f8(-0x4f1,-0x1c7,-0x130,-0x491),'rates':{'input':0.2,'output':0.5,'cacheRead':0.05},'pricingProviderIds':[_0x5a09f8(-0x19d,-0xb3,-0xb5,-0x162)],'matchKind':_0x5a09f8(0x3e7,0x30a,0x24c,0x364)},'xai/grok-4-fast':{'modelId':_0x16b4a2(0x7ac,0x28b,0x5b8,0x25f),'rates':{'input':0.2,'output':0.5,'cacheRead':0.05,'cacheWrite':0.2},'pricingProviderIds':['requesty'],'matchKind':'model-unique'},'xai/grok-4-fast-non-reasoning':{'modelId':_0x5a09f8(0x249,0x188,0x110,0x1ff),'rates':{'input':0.2,'output':0.5,'cacheRead':0.05},'pricingProviderIds':['poe'],'matchKind':_0x16b4a2(0x378,0x4e2,0x369,0x276)},'xai/grok-4-fast-reasoning':{'modelId':'xai/grok-4-fast-reasoning','rates':{'input':0.2,'output':0.5,'cacheRead':0.05},'pricingProviderIds':['poe'],'matchKind':_0x16b4a2(0x537,0x704,0x369,0x5d7)},'xai/grok-4.1-fast-non-reasoning':{'modelId':_0x16b4a2(0x107,0x392,-0xe,0x254),'rates':{'input':0.2,'output':0.5,'cacheRead':0.05},'pricingProviderIds':[_0x5a09f8(0xed,0x387,0xa3,0x212)],'matchKind':_0x16b4a2(0x363,0x37f,0x369,0x3af)},'xai/grok-4.1-fast-reasoning':{'modelId':'xai/grok-4.1-fast-reasoning','rates':{'input':0.2,'output':0.5,'cacheRead':0.05},'pricingProviderIds':[_0x5a09f8(0x446,0x387,0x3cb,0x1f0)],'matchKind':'model-unique'},'xai/grok-4.20-0309-reasoning':{'modelId':_0x16b4a2(0x66b,0x45d,0x57d,0x674),'rates':{'input':1.25,'output':2.5,'cacheRead':0.2},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.5,'output':0x5,'cacheRead':0.4}],'pricingProviderIds':[_0x5a09f8(0x50e,0x454,0x52f,0x141)],'matchKind':'model-unique'},'xai/grok-4.20-multi-agent-beta':{'modelId':_0x16b4a2(0x5d4,0x401,0x49b,0x250),'rates':{'input':1.25,'output':2.5,'cacheRead':0.2},'pricingProviderIds':[_0x16b4a2(0x14a,0x6b9,0x3e6,0x296)],'matchKind':_0x5a09f8(0x295,0x30a,0x12c,0x68a)},'xai/grok-4.20-non-reasoning':{'modelId':_0x5a09f8(-0x189,-0x1c1,-0x551,-0x96),'rates':{'input':1.25,'output':2.5,'cacheRead':0.2},'pricingProviderIds':[_0x5a09f8(0x6d8,0x387,0x13a,0x436)],'matchKind':_0x5a09f8(-0x3a,0x30a,0x527,0x34d)},'xai/grok-4.20-non-reasoning-beta':{'modelId':'xai/grok-4.20-non-reasoning-beta','rates':{'input':1.25,'output':2.5,'cacheRead':0.4},'pricingProviderIds':[_0x5a09f8(0x4cc,0x387,0x1bd,0x324)],'matchKind':_0x16b4a2(0xe2,0x3de,0x369,0x374)},'xai/grok-4.20-reasoning':{'modelId':_0x5a09f8(-0x13d,0x258,0x1a6,0x256),'rates':{'input':1.25,'output':2.5,'cacheRead':0.2},'pricingProviderIds':['vercel'],'matchKind':_0x16b4a2(-0x2e,0x31c,0x369,0x728)},'xai/grok-4.20-reasoning-beta':{'modelId':_0x5a09f8(0x723,0x4bc,0x49c,0x2aa),'rates':{'input':1.25,'output':2.5,'cacheRead':0.2},'pricingProviderIds':[_0x16b4a2(0x78e,0xd8,0x3e6,0x88)],'matchKind':_0x5a09f8(0x109,0x30a,0x180,0x5eb)},'xai/grok-4.5':{'modelId':_0x16b4a2(0x6fb,0x35a,0x581,0x6a4),'rates':{'input':0x2,'output':0x6,'cacheRead':0.3},'pricingProviderIds':['vercel'],'matchKind':_0x16b4a2(0x2c0,0x307,0x369,0x589)},'xai/grok-build-0.1':{'modelId':_0x5a09f8(-0x1,0x2c9,0x1ac,0x262),'rates':{'input':0x1,'output':0x2,'cacheRead':0.2},'pricingProviderIds':[_0x16b4a2(0x47e,0x65f,0x3e6,0x73f)],'matchKind':_0x5a09f8(0x580,0x30a,0x21d,0x3a7)},'xai/grok-code-fast-1':{'modelId':_0x5a09f8(0x5ab,0x37e,0x1e9,0x31f),'rates':{'input':0.2,'output':1.5,'cacheRead':0.02},'pricingProviderIds':[_0x5a09f8(0x120,-0x1b8,-0x4c1,0x207)],'matchKind':_0x16b4a2(0x1b5,0x57f,0x369,0x3ff)},'xiaomi-mimo-v2-5':{'modelId':_0x16b4a2(0x49e,0x4c8,0x378,0x1b9),'rates':{'input':0.14,'output':0.28,'cacheRead':0.05},'pricingProviderIds':['venice'],'matchKind':'model-unique'},'xiaomi-mimo-v2.5':{'modelId':_0x5a09f8(0x1a2,0x7,-0x12b,-0x143),'rates':{'input':0.44,'output':2.2,'cacheRead':0.088},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0.88,'output':4.4,'cacheRead':0.176}],'pricingProviderIds':[_0x5a09f8(-0x375,0x22,0x299,0x313)],'matchKind':_0x5a09f8(0x631,0x30a,0x2ac,0x1dc)},'xiaomi-mimo-v2.5-free':{'modelId':'xiaomi-mimo-v2.5-free','rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x5a09f8(-0x183,0x22,0x2f9,0x208)],'matchKind':_0x5a09f8(0x41f,0x30a,0xad,0x612)},'xiaomi-mimo-v2.5-pro':{'modelId':_0x16b4a2(0x1eb,0x23b,-0xee,0x128),'rates':{'input':1.1,'output':3.3,'cacheRead':0.22},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':2.2,'output':6.6,'cacheRead':0.44}],'pricingProviderIds':[_0x16b4a2(0x217,0x42f,0x81,0x97)],'matchKind':_0x5a09f8(0x531,0x30a,0x414,0x4e5)},'xiaomi-mimo-v2.5-pro-free':{'modelId':_0x5a09f8(0x18a,0x338,0x6b2,0x45b),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x16b4a2(0xc8,0x46,0x81,0xeb)],'matchKind':'model-unique'},'xiaomi/mimo-v2-flash-original':{'modelId':'xiaomi/mimo-v2-flash-original','rates':{'input':0.102,'output':0.306},'pricingProviderIds':[_0x5a09f8(-0xcb,-0x34,-0x22b,0x2f)],'matchKind':_0x16b4a2(0x713,0xf1,0x369,0x42d)},'xiaomi/mimo-v2-flash-thinking':{'modelId':_0x5a09f8(0x26d,0x12f,0x4ad,0xea),'rates':{'input':0.102,'output':0.306},'pricingProviderIds':[_0x5a09f8(0x359,-0x34,0xed,0x28c)],'matchKind':_0x16b4a2(0x112,0x2bb,0x369,0x62f)},'xiaomi/mimo-v2-flash-thinking-original':{'modelId':_0x16b4a2(-0x1dc,-0x247,-0x2a,0x24d),'rates':{'input':0.102,'output':0.306},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'xiaomi/mimo-v2-omni':{'modelId':'xiaomi/mimo-v2-omni','rates':{'input':0.4,'output':0x2,'cacheRead':0.08},'pricingProviderIds':['kilo',_0x16b4a2(-0xd2,0x2e6,0x2b,0x359),_0x5a09f8(0x24f,-0x115,-0x3a1,-0x4aa)],'matchKind':_0x5a09f8(-0x7e,0x102,0x3bb,0xfc)},'xiaomimimo/mimo-v2-pro':{'modelId':'xiaomimimo/mimo-v2-pro','rates':{'input':0x2,'output':0x6,'cacheRead':0.4},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0x2,'output':0x6,'cacheRead':0.4}],'pricingProviderIds':['novita-ai'],'matchKind':_0x5a09f8(0x5d9,0x30a,0x5ac,0x26f)},'xiaomimimo/mimo-v2.5-pro':{'modelId':'xiaomimimo/mimo-v2.5-pro','rates':{'input':0.522,'output':1.044,'cacheRead':0.0043},'contextTiers':[{'thresholdInputTokens':0x30d40,'input':0.522,'output':1.044,'cacheRead':0.0043}],'pricingProviderIds':['novita-ai'],'matchKind':'model-unique'},'xpersona-frieren-coder':{'modelId':_0x16b4a2(0x80d,0xb0,0x463,0x279),'rates':{'input':1.5,'output':0x6,'reasoning':0x6,'cacheRead':0.15},'pricingProviderIds':[_0x5a09f8(0x5da,0x538,0x1bc,0x8a2)],'matchKind':_0x16b4a2(0x677,0x5f1,0x369,0x3da)},'xpersona-gpt-5.5':{'modelId':_0x5a09f8(0x59,0x140,-0x26,-0x12e),'rates':{'input':0x3,'output':0x12,'reasoning':0x12,'cacheRead':0.3},'pricingProviderIds':['xpersona'],'matchKind':_0x5a09f8(0xc6,0x30a,-0x54,0x180)},'yi-large':{'modelId':_0x16b4a2(0x52d,0x21f,0x1fc,0x5ae),'rates':{'input':3.196,'output':3.196},'pricingProviderIds':[_0x16b4a2(-0xbc,0x230,0x2b,-0x14f)],'matchKind':_0x16b4a2(0xee,0x39e,0x369,0x525)},'yi-lightning':{'modelId':_0x16b4a2(0x567,0x63d,0x5af,0x5f1),'rates':{'input':0.2006,'output':0.2006},'pricingProviderIds':[_0x16b4a2(-0x206,0x17,0x2b,-0x25f)],'matchKind':_0x16b4a2(0x5aa,0x6a,0x369,-0x54)},'yi-medium-200k':{'modelId':_0x5a09f8(-0x8f,0x232,0x2e2,-0xb0),'rates':{'input':2.499,'output':2.499},'pricingProviderIds':[_0x16b4a2(-0x92,0x188,0x2b,-0x31e)],'matchKind':'model-unique'},'z-ai-glm-5-turbo':{'modelId':'z-ai-glm-5-turbo','rates':{'input':1.2,'output':0x4,'cacheRead':0.24},'pricingProviderIds':[_0x16b4a2(0x58d,0x7ba,0x5a2,0x858)],'matchKind':'model-unique'},'z-ai-glm-5v-turbo':{'modelId':_0x16b4a2(-0x2a,-0x343,-0x165,0x1a7),'rates':{'input':1.5,'output':0x5,'cacheRead':0.3},'pricingProviderIds':['venice'],'matchKind':_0x5a09f8(0x321,0x30a,0x533,0x4b6)},'z-ai/glm-4-32b':{'modelId':'z-ai/glm-4-32b','rates':{'input':0.1,'output':0.1},'pricingProviderIds':['kilo'],'matchKind':_0x5a09f8(0x230,0x30a,0x1e8,0x5a6)},'z-ai/glm-4.5v:thinking':{'modelId':'z-ai/glm-4.5v:thinking','rates':{'input':0.6,'output':1.7999999999999998},'pricingProviderIds':[_0x5a09f8(0x330,-0x34,0x262,0x375)],'matchKind':_0x16b4a2(0x27e,-0x27,0x369,0x728)},'z-ai/glm-4.6:thinking':{'modelId':_0x5a09f8(0x39f,0x1e7,0x14a,-0x192),'rates':{'input':0.4,'output':1.5},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(-0x7,0x3e5,0x369,0x729)},'z-ai/glm-4.6v-flash':{'modelId':_0x16b4a2(0x42d,0x188,0xf2,0x28b),'rates':{'input':0.02,'output':0.21,'cacheRead':0.0043},'pricingProviderIds':[_0x5a09f8(0x241,-0x115,-0x108,-0x3be)],'matchKind':'model-unique'},'z-ai/glm-4.6v-flash-free':{'modelId':'z-ai/glm-4.6v-flash-free','rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0x49a,-0x115,-0x49e,0x288)],'matchKind':_0x16b4a2(0x21b,0x2c0,0x369,0x46d)},'z-ai/glm-4.7-flash':{'modelId':_0x16b4a2(0x331,0x6f2,0x391,0x195),'rates':{'input':0.06,'output':0.4,'cacheRead':0.01},'pricingProviderIds':[_0x5a09f8(0x242,0x533,0x78c,0x1de),_0x5a09f8(0x375,0x6d,0x3de,0x346)],'matchKind':_0x16b4a2(0x3cb,0x414,0x161,0xed)},'z-ai/glm-4.7-flash-free':{'modelId':_0x5a09f8(-0x2a0,-0x172,-0x124,-0x30d),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x5a09f8(-0xd2,-0x115,0x83,0x158)],'matchKind':_0x16b4a2(0x380,0x51d,0x369,0x4a3)},'z-ai/glm-4.7-flashx':{'modelId':_0x16b4a2(0x147,-0x391,-0x12d,-0x71),'rates':{'input':0.07,'output':0.42,'cacheRead':0.01},'pricingProviderIds':[_0x16b4a2(-0x30c,0x3d,-0xb6,-0x2b8)],'matchKind':'model-unique'},'z-ai/glm-5.2-free':{'modelId':_0x5a09f8(0x8b,0x219,0x1b2,-0xf9),'rates':{'input':0x0,'output':0x0,'cacheRead':0x0},'pricingProviderIds':[_0x16b4a2(0x8,-0x330,-0xb6,-0x37b)],'matchKind':_0x16b4a2(0x521,0x526,0x369,-0x41)},'z-ai/glm-5v-turbo:thinking':{'modelId':_0x5a09f8(0x42a,0x7e,-0x2b2,-0x98),'rates':{'input':1.2,'output':0x4,'cacheRead':0.24},'pricingProviderIds':[_0x16b4a2(-0x1e1,0x4e,0x2b,0x25a)],'matchKind':_0x16b4a2(0x30e,0x599,0x369,0x41d)},'z-code':{'modelId':_0x16b4a2(0x2f2,0x654,0x4fa,0x7de),'rates':{'input':0x0,'output':0x0},'pricingProviderIds':[_0x16b4a2(0x380,0x41c,0x1d3,0x84)],'matchKind':_0x16b4a2(0x70a,0x389,0x369,-0x54)},'zai-glm-4.7':{'modelId':_0x16b4a2(-0x27e,-0x43,-0x7b,0x31),'rates':{'input':2.25,'output':2.75,'cacheRead':2.25,'cacheWrite':0x0},'pricingProviderIds':[_0x5a09f8(0x52d,0x531,0x87d,0x895)],'matchKind':_0x16b4a2(0x452,0x4e1,0x369,0x2ce)},'zai-glm-5-1':{'modelId':_0x5a09f8(0x75a,0x3ac,0x52a,0x30a),'rates':{'input':1.4,'output':4.4,'cacheRead':0.26},'pricingProviderIds':[_0x5a09f8(-0x16a,0x164,0x233,0x18d)],'matchKind':_0x16b4a2(-0x35,0x494,0x369,0x33)},'zai-glm-5.1':{'modelId':_0x16b4a2(-0x218,0x2d5,0x5a,-0x181),'rates':{'input':0.845,'output':3.38,'cacheRead':0.183112},'pricingProviderIds':['aihubmix'],'matchKind':_0x16b4a2(0x50a,0x254,0x369,0x271)},'zai-org-glm-4.6':{'modelId':_0x16b4a2(0x709,0x707,0x3fa,0x6c6),'rates':{'input':0.43,'output':1.75,'cacheRead':0.08},'pricingProviderIds':[_0x16b4a2(0x4e5,0x7a2,0x5a2,0x433)],'matchKind':_0x5a09f8(0x65d,0x30a,0x6a4,0x19)},'zai-org-glm-4.7':{'modelId':_0x5a09f8(0x348,0x4f1,0x408,0x30a),'rates':{'input':0.55,'output':2.65,'cacheRead':0.11},'pricingProviderIds':[_0x16b4a2(0x6ae,0x7d1,0x5a2,0x2b9)],'matchKind':_0x16b4a2(0x2af,0x425,0x369,0x70a)},'zai-org-glm-4.7-flash':{'modelId':_0x5a09f8(-0xb9,-0xbd,0x1a9,0x1d2),'rates':{'input':0.125,'output':0.5},'pricingProviderIds':[_0x16b4a2(0x8b2,0x3bb,0x5a2,0x628)],'matchKind':_0x16b4a2(0x70,0x72c,0x369,0x678)},'zai-org-glm-5':{'modelId':_0x5a09f8(0x20e,0x554,0x6b9,0x4ca),'rates':{'input':0x1,'output':3.2,'cacheRead':0.2},'pricingProviderIds':[_0x16b4a2(0x962,0x612,0x5a2,0x5e8)],'matchKind':_0x16b4a2(0x206,0x1c0,0x369,0x2bf)},'zai-org-glm-5-1':{'modelId':_0x16b4a2(0x3d9,0xa4,0x1d0,-0xc9),'rates':{'input':1.54,'output':4.84,'cacheRead':0.286},'pricingProviderIds':[_0x16b4a2(0x39b,0x2d8,0x5a2,0x7ab)],'matchKind':_0x16b4a2(0x110,0x296,0x369,0x298)},'zai-org-glm-5-2':{'modelId':'zai-org-glm-5-2','rates':{'input':1.4,'output':4.4,'cacheRead':0.26},'pricingProviderIds':['venice'],'matchKind':_0x16b4a2(0x33,0x159,0x369,0x53a)},'zai-org/GLM-4.5':{'modelId':_0x5a09f8(-0x148,-0x86,0x24f,0x2be),'rates':{'input':0.6,'output':2.2},'pricingProviderIds':['abacus','huggingface'],'matchKind':_0x5a09f8(-0x258,0x102,-0x160,0x43f)},'zai-org/GLM-4.5-Air:thinking':{'modelId':_0x5a09f8(0x2de,0x2d1,-0x3c,0x118),'rates':{'input':0.12,'output':0.8},'pricingProviderIds':[_0x16b4a2(-0xc5,0xc6,0x2b,0xce)],'matchKind':_0x5a09f8(0x3a9,0x30a,0x1ab,0x346)},'zai-org/GLM-4.5-FP8':{'modelId':_0x5a09f8(-0x152,-0x123,-0x89,-0x2b4),'rates':{'input':0.2,'output':0.8},'pricingProviderIds':[_0x5a09f8(0x2d1,0x218,0x5d9,-0x127)],'matchKind':_0x16b4a2(0x634,0x54c,0x369,0x37d)},'zai-org/GLM-4.5:thinking':{'modelId':'zai-org/GLM-4.5:thinking','rates':{'input':0.3,'output':1.3},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'zai-org/GLM-4.5V':{'modelId':_0x5a09f8(0x541,0x2b3,0x4bc,-0x69),'rates':{'input':0.6,'output':1.8},'pricingProviderIds':[_0x5a09f8(-0x32c,-0xb1,0x226,-0x3c9)],'matchKind':_0x5a09f8(0x3a4,0x30a,0x425,0x224)},'zai-org/GLM-4.6-turbo':{'modelId':'zai-org/GLM-4.6-turbo','rates':{'input':0x1,'output':0x3},'pricingProviderIds':[_0x16b4a2(0x99,-0x396,0x2b,0x2c7)],'matchKind':_0x5a09f8(0x579,0x30a,0x2d8,0x359)},'zai-org/GLM-4.6-turbo:thinking':{'modelId':_0x5a09f8(0x6d4,0x4a3,0x49d,0x52a),'rates':{'input':0x1,'output':0x3},'pricingProviderIds':[_0x16b4a2(0x357,0x39a,0x2b,-0x1ab)],'matchKind':_0x16b4a2(0x254,0x699,0x369,0x169)},'zai-org/GLM-5-FP8':{'modelId':_0x5a09f8(0x509,0x3c0,0x4ac,0x2e9),'rates':{'input':0.6,'output':1.92,'cacheRead':0.12},'pricingProviderIds':[_0x5a09f8(0x6e2,0x4d2,0x500,0x43a)],'matchKind':'model-unique'},'zai-org/GLM-5-TEE':{'modelId':'zai-org/GLM-5-TEE','rates':{'input':0.95,'output':2.55,'cacheRead':0.475},'pricingProviderIds':[_0x5a09f8(0x9b,0x354,0x50c,0x362)],'matchKind':'model-unique'},'zai-org/GLM-5.1-TEE':{'modelId':_0x5a09f8(0x2d7,0x31,0x12,0x2d5),'rates':{'input':0.98,'output':3.08,'cacheRead':0.49},'pricingProviderIds':['chutes'],'matchKind':_0x16b4a2(0x62a,0x371,0x369,0x1e7)},'zai-org/GLM-5.2-Fast':{'modelId':_0x5a09f8(0x3aa,0x251,0x107,0x7f),'rates':{'input':2.1,'output':6.6,'cacheRead':0.21},'pricingProviderIds':[_0x5a09f8(0x1d6,0x3e0,0x211,0x2de)],'matchKind':_0x16b4a2(0x6eb,0x486,0x369,0x26a)},'zai-org/GLM-5.2-TEE':{'modelId':_0x16b4a2(0x422,0x623,0x3dc,0x68f),'rates':{'input':1.25,'output':3.95,'cacheRead':0.625},'pricingProviderIds':[_0x5a09f8(0x48e,0x354,0x405,0x539)],'matchKind':_0x5a09f8(-0x5f,0x30a,0x6b4,0x5c1)},'zai-org/GLM-5V-Turbo':{'modelId':_0x5a09f8(0x1e7,-0xc8,-0x3b8,-0x323),'rates':{'input':1.2,'output':0x4,'cacheWrite':0x0},'pricingProviderIds':[_0x5a09f8(0x420,0x48c,0x7a0,0x51d)],'matchKind':'model-unique'},'zai-org/autoglm-phone-9b-multilingual':{'modelId':_0x5a09f8(0x1ac,0x112,-0x9d,0xc9),'rates':{'input':0.035,'output':0.138},'pricingProviderIds':[_0x5a09f8(0x5a0,0x372,0x49b,0x5ee)],'matchKind':_0x16b4a2(0xe4,0x436,0x369,0xfa)},'zai-org/glm-4.5-air':{'modelId':'zai-org/glm-4.5-air','rates':{'input':0.13,'output':0.85,'cacheRead':0.025},'pricingProviderIds':[_0x16b4a2(0x37f,0x5ea,0x3d1,0x66e)],'matchKind':_0x5a09f8(0x2d,0x30a,0x5c9,-0x97)},'zai-org/glm-4.6':{'modelId':_0x5a09f8(0x3c3,0x33,-0x169,-0x18),'rates':{'input':0.55,'output':2.2,'cacheRead':0.11},'pricingProviderIds':[_0x5a09f8(0x426,0x372,0x8d,0x174)],'matchKind':_0x5a09f8(0x445,0x30a,0x30c,-0x6c)},'zai-org/glm-4.6-original':{'modelId':'zai-org/glm-4.6-original','rates':{'input':0.35,'output':1.4},'pricingProviderIds':[_0x5a09f8(0x266,-0x34,0x2d,0x2ed)],'matchKind':_0x5a09f8(0x6c2,0x30a,0x68b,0x694)},'zai-org/glm-4.6v-flash-original':{'modelId':_0x5a09f8(0x14c,0x4c6,0x837,0x69b),'rates':{'input':0.1,'output':0.4},'pricingProviderIds':[_0x5a09f8(-0xd5,-0x34,-0x228,-0x3d3)],'matchKind':_0x5a09f8(0x344,0x30a,-0x84,0x4cc)},'zai-org/glm-4.6v-original':{'modelId':_0x5a09f8(0x140,0x4a0,0x2a5,0x6f8),'rates':{'input':0.6,'output':0.9},'pricingProviderIds':[_0x16b4a2(-0x77,0x26f,0x2b,0x381)],'matchKind':_0x16b4a2(0x55,0x5c5,0x369,0x2d2)},'zai-org/glm-4.7-flash-original':{'modelId':_0x16b4a2(0x19b,0x579,0x3fd,0x642),'rates':{'input':0.07,'output':0.4},'pricingProviderIds':['nano-gpt'],'matchKind':_0x5a09f8(0x3c1,0x30a,0x4fc,0x6a8)},'zai-org/glm-4.7-flash-original:thinking':{'modelId':_0x5a09f8(0x4c5,0x343,0x622,0x37f),'rates':{'input':0.07,'output':0.4},'pricingProviderIds':['nano-gpt'],'matchKind':'model-unique'},'zai-org/glm-4.7-flash:thinking':{'modelId':_0x16b4a2(-0xc9,-0x32a,-0x15f,0x187),'rates':{'input':0.07,'output':0.4},'pricingProviderIds':[_0x16b4a2(-0xd3,-0x290,0x2b,0x2ab)],'matchKind':_0x16b4a2(0x2f,0x11a,0x369,0x5ac)},'zai-org/glm-4.7-maas':{'modelId':_0x16b4a2(0x562,0x4a7,0x2c2,0x66d),'rates':{'input':0.6,'output':2.2},'pricingProviderIds':['google-vertex'],'matchKind':'model-unique'},'zai-org/glm-4.7-original':{'modelId':'zai-org/glm-4.7-original','rates':{'input':0.6,'output':2.2,'cacheRead':0.11},'pricingProviderIds':[_0x5a09f8(0x60,-0x34,-0xdf,-0x1e3)],'matchKind':'model-unique'},'zai-org/glm-4.7-original:thinking':{'modelId':_0x16b4a2(0x3bc,0x6ae,0x5e0,0x362),'rates':{'input':0.6,'output':2.2,'cacheRead':0.11},'pricingProviderIds':[_0x5a09f8(-0x1a2,-0x34,0x226,0x302)],'matchKind':'model-unique'},'zai-org/glm-4.7:thinking':{'modelId':_0x16b4a2(0x131,0x599,0x387,0x5e7),'rates':{'input':0.2,'output':0.8},'pricingProviderIds':[_0x5a09f8(-0x97,-0x34,0x1e7,0x1a8)],'matchKind':_0x5a09f8(0x37a,0x30a,0x34,0x6a6)},'zai-org/glm-5-maas':{'modelId':'zai-org/glm-5-maas','rates':{'input':0x1,'output':3.2,'cacheRead':0.1},'pricingProviderIds':[_0x16b4a2(0x4a6,0x59c,0x336,0x343)],'matchKind':_0x5a09f8(0x4f6,0x30a,0x5d1,0x6be)},'zai-org/glm-5-original':{'modelId':_0x16b4a2(0x61b,0x3e1,0x262,-0x32),'rates':{'input':0x1,'output':3.2,'cacheRead':0.2},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(0x12c,0x2c5,0x369,0x24f)},'zai-org/glm-5-original:thinking':{'modelId':'zai-org/glm-5-original:thinking','rates':{'input':0x1,'output':3.2,'cacheRead':0.2},'pricingProviderIds':['nano-gpt'],'matchKind':_0x16b4a2(-0x16,0x1af,0x369,0x4ac)},'zai-org/glm-5.1:thinking':{'modelId':'zai-org/glm-5.1:thinking','rates':{'input':0.3,'output':2.55},'pricingProviderIds':[_0x5a09f8(-0x2e4,-0x34,0x1d9,-0xc6)],'matchKind':_0x5a09f8(0x699,0x30a,0x69e,0x623)},'zai-org/glm-5:thinking':{'modelId':_0x16b4a2(-0x22,-0xbe,0x234,0x26f),'rates':{'input':0.3,'output':2.55},'pricingProviderIds':[_0x16b4a2(-0x33a,-0x3b,0x2b,-0x1fd)],'matchKind':'model-unique'},'zai-org/glm-latest':{'modelId':_0x5a09f8(0x8a,0x24,-0x65,-0x122),'rates':{'input':0.75,'output':2.6,'cacheRead':0.15},'pricingProviderIds':[_0x16b4a2(-0x32,-0x36d,0x2b,-0x24d)],'matchKind':'model-unique'},'zai.glm-4.7':{'modelId':'zai.glm-4.7','rates':{'input':0.6,'output':2.2},'pricingProviderIds':['amazon-bedrock'],'matchKind':_0x16b4a2(0x728,0x520,0x369,0x4b5)},'zai.glm-4.7-flash':{'modelId':_0x16b4a2(-0xc5,0x4ea,0x18d,0x45e),'rates':{'input':0.07,'output':0.4},'pricingProviderIds':[_0x16b4a2(-0xe3,0x3bd,0x2aa,0x2ee)],'matchKind':'model-unique'},'zai.glm-5':{'modelId':_0x5a09f8(0x265,0x227,-0x12b,-0x62),'rates':{'input':0x1,'output':3.2},'pricingProviderIds':[_0x5a09f8(-0x32,0x24b,0x4e7,0x52)],'matchKind':_0x16b4a2(0x403,0x1e,0x369,0x16c)},'zai/glm-4.5v':{'modelId':_0x5a09f8(0x1cd,0x537,0x27f,0x534),'rates':{'input':0.6,'output':1.8,'cacheRead':0.11},'pricingProviderIds':[_0x5a09f8(0x20b,0x387,0x5b2,0x57e)],'matchKind':_0x16b4a2(0x653,0x4f5,0x369,0xd6)},'zai/glm-4.6v':{'modelId':_0x5a09f8(0x69d,0x53a,0x4af,0x28a),'rates':{'input':0.3,'output':0.9,'cacheRead':0.05},'pricingProviderIds':[_0x5a09f8(0x45d,0x387,0x142,0x656)],'matchKind':_0x16b4a2(0x278,0x67a,0x369,0x362)},'zai/glm-4.7-flash':{'modelId':_0x5a09f8(0x58c,0x276,-0x13a,0x98),'rates':{'input':0.07,'output':0.4},'pricingProviderIds':[_0x5a09f8(0x3,0x387,0x3e7,0x58e)],'matchKind':_0x5a09f8(0x679,0x30a,-0xa5,0x2ad)},'zai/glm-5.2-fast':{'modelId':_0x5a09f8(0x31a,0x2cf,0x3eb,0x295),'rates':{'input':2.1,'output':6.6,'cacheRead':0.21},'pricingProviderIds':[_0x5a09f8(0x4f3,0x387,0x5df,0x6ab)],'matchKind':_0x16b4a2(0x42d,0x234,0x369,0x611)},'zai/glm-5v-turbo':{'modelId':_0x5a09f8(-0xef,-0x26,-0x3bf,0x1bd),'rates':{'input':1.2,'output':0x4,'cacheRead':0.24},'pricingProviderIds':['vercel'],'matchKind':'model-unique'},'~anthropic/claude-fable-latest':{'modelId':_0x5a09f8(0x3fd,0x2ae,0x35a,-0xaf),'rates':{'input':0xa,'output':0x32,'cacheRead':0x1,'cacheWrite':12.5},'pricingProviderIds':['openrouter'],'matchKind':_0x5a09f8(0x57b,0x30a,0xac,-0x6)},'~anthropic/claude-haiku-latest':{'modelId':_0x5a09f8(-0x178,-0x17c,-0x2ae,-0x1f7),'rates':{'input':0x1,'output':0x5,'cacheRead':0.1,'cacheWrite':1.25},'pricingProviderIds':[_0x16b4a2(0x37f,0x4b3,0x592,0x3a2),_0x5a09f8(0x1cb,0x6d,-0x1a1,-0x27c)],'matchKind':_0x5a09f8(0x403,0x102,0x181,-0xeb)},'~anthropic/claude-opus-latest':{'modelId':_0x16b4a2(0x905,0x5e6,0x59b,0x851),'rates':{'input':0x5,'output':0x19,'cacheRead':0.5,'cacheWrite':6.25},'pricingProviderIds':[_0x5a09f8(0x867,0x533,0x80d,0x7f7),_0x5a09f8(0x400,0x6d,-0x158,-0x34a)],'matchKind':_0x16b4a2(0xf5,0x1f3,0x161,-0x59)},'~openai/gpt-mini-latest':{'modelId':_0x16b4a2(-0x93,0x82,-0x86,0x218),'rates':{'input':0.75,'output':4.5,'cacheRead':0.075},'pricingProviderIds':[_0x5a09f8(0x83b,0x533,0x364,0x5ea),'openrouter'],'matchKind':_0x5a09f8(-0xfe,0x102,-0x17e,0x266)},'~x-ai/grok-latest':{'modelId':_0x16b4a2(0x164,-0x41,-0x79,0x82),'rates':{'input':0x2,'output':0x6,'cacheRead':0.3},'pricingProviderIds':[_0x16b4a2(-0x1ef,0x425,0xcc,0x36d)],'matchKind':'model-unique'}}},USD_TICKS_PER_TOKEN_AT_ONE_DOLLAR_PER_MILLION=0x2710;function isNonNegativeSafeInteger(_0x21863c){const _0x337dea={_0x49a318:0x4f6,_0x360748:0x7bf,_0x206951:0x5aa,_0x4a915a:0x81b},_0xf85b0d={_0x5b9d0f:0xbd,_0x2cc0a8:0x42},_0x67298a={_0x5905ee:0x34};function _0x533191(_0x356e04,_0x51a863,_0xb4910b,_0xf29b2f){return _0x5a09f8(_0x356e04-_0x67298a._0x5905ee,_0xb4910b-0x55e,_0x356e04,_0xf29b2f-0x96);}function _0x36ea7c(_0xaf263a,_0x56173d,_0x17b881,_0x1c8256){return _0x5a09f8(_0xaf263a-0xc,_0x1c8256-_0xf85b0d._0x5b9d0f,_0x17b881,_0x1c8256-_0xf85b0d._0x2cc0a8);}return typeof _0x21863c===_0x533191(_0x337dea._0x49a318,0x55e,_0x337dea._0x360748,_0x337dea._0x206951)&&Number[_0x533191(_0x337dea._0x4a915a,0xa86,0xa4a,0xd91)](_0x21863c)&&_0x21863c>=0x0;}function isValidRate(_0x4d74dd){const _0x3fa3d6={_0x166230:0x52e},_0x4e2228={_0x149c11:0x111,_0x160727:0x29};function _0x48c429(_0x2f2f0f,_0x161fa4,_0x33b27e,_0x433727){return _0x16b4a2(_0x2f2f0f-0x43,_0x433727,_0x161fa4-_0x4e2228._0x149c11,_0x433727-_0x4e2228._0x160727);}return typeof _0x4d74dd==='number'&&Number[_0x48c429(0x592,0x5ca,0x221,_0x3fa3d6._0x166230)](_0x4d74dd)&&_0x4d74dd>=0x0;}function selectRates(_0x52528d,_0x3ba176){const _0x2a8779={_0x459241:0x1f5,_0x2a06a4:0x441,_0x91c227:0x4aa,_0x4799e8:0x355,_0x3833d6:0x677,_0x105d34:0x847},_0xc4f320={_0x4aa0fb:0x29,_0x42e9f3:0x450},_0x5c8efa={_0x52a2a7:0x72};let _0x596376=_0x52528d[_0x32c8fe(_0x2a8779._0x459241,0x37e,_0x2a8779._0x2a06a4,_0x2a8779._0x91c227)];function _0x119620(_0x24b4de,_0x32eb23,_0x3e6efb,_0x3f3aba){return _0x16b4a2(_0x24b4de-0x144,_0x3f3aba,_0x3e6efb-0x409,_0x3f3aba-_0x5c8efa._0x52a2a7);}if(_0x52528d[_0x119620(_0x2a8779._0x4799e8,0x982,_0x2a8779._0x3833d6,0xa08)]!==void 0x0)for(const _0x30d9c1 of _0x52528d[_0x119620(0x6e4,_0x2a8779._0x105d34,_0x2a8779._0x3833d6,0x3e5)]){_0x30d9c1['thresholdInputTokens']<=_0x3ba176&&(_0x596376=_0x30d9c1);}function _0x32c8fe(_0x11e68a,_0x46ee54,_0x349cc1,_0x1cbeb8){return _0x16b4a2(_0x11e68a-_0xc4f320._0x4aa0fb,_0x11e68a,_0x349cc1-_0xc4f320._0x42e9f3,_0x1cbeb8-0xa);}return _0x596376;}function _0x4cd2(){const _0x325a74=['zgvLChnLzwSUDJmUmG','B3bLBMfPl2DWDc1HDwrPBW','B3bLBMfPl2DWDc00BY10CMfUC2nYAwjL','zhvVlwnOyxqTB3b1CY00ltu','ywLVBI1SywjZl2fPB24TmI4W','y29TBwfUzc1YlxbSDxmTmdGTmJaYna','BNzPzgLHlM5LBw90CM9Ulxn1CgvYltmTmtiWyG','y2XPBMuTCgfZCY9RAw1PlwSYlJy','BwLUAw1HEgfPl21PBMLTyxGTBtiUnW','B3bLBMfPlwDWDc01nI1SDw5HlxbYBW','z29Vz2XLl2DLBwLUAs1WCM8TBgf0zxn0','B3bLBMfPl2DWDc00lwnSyxnZAwmTmdmXna','zgvLChnLzwSTy2HHDa','B3bLBMfPlwDWDc01lJeTy29KzxGTBwf4','BNzPzgLHl0XSyw1HltnFms1ozw1VDhjVBI1vBhrYys0YntnclxyX','zg91yMfVlteUns12AxnPB24TChjVltmYAW','B3bLBMfPlwDWDc01nI10zxjYys1WCM8','BwLZDhjHBgfPl21PC3rYywWTBwvKAxvTltmUmq','BwLUAw1HEc1TmI41ltiZmgi','y2XHDwrLlw9WDxmTnc10AgLUA2LUzZOZmJC2oa','B3bLBMfPl2DWDc01lJq','BwfPlwnVzguTms1MBgfZAc1WAwnRzxi','yw50AhjVCgLJls1JBgf1zguTnc1ZB25Uzxq','B3bLBMfPl280lw1PBMK','y3jVzG','s0fulunVzgvYlufPCI1wmq','BwLZDhjHBc1ZBwfSBc0Ynta2','BNzPzgLHl2nVC21VCY1WCMvKAwn0ms01yG','zgvLCgnVz2L0BY9JB2DPDg8TDJeTChjLDMLLDY1XD2vUltmYqG','yMfZzxrLBG','ANaUyw50AhjVCgLJlMnSyxvKzs1VChvZltu','B3bLBI1TAxn0CMfSltDI','zhvVlwnOyxqTC29UBMv0ltqTnq','CxDLBI5XD2vUmY1JB2rLCI1UzxH0','A2LTAs1RmI0WnZeXlxbYzxzPzxC','vgHLrhj1Bw1LCI9dEwrVBMLHlti0qI12nc4X','BwLZDhjHBc9TAw5PC3rYywWTm2i','z3b0ltuUnc1TAw5P','ugfKzgXLugfKzgXLl1bHzgrSzu9duI1wtc0XlJu','y2XHDY1TzwrPDw0','z2vTAw5PltiUns1WCM8TChjLDMLLDY0WmY0Ynq','C3rLywX0Ac9JBgf1zguTB3b1CY00lJC','yw50AhjVCgLJlMnSyxvKzs1VChvZltqTnW','yMfPzhuVzxjUAwuTnc41ltmWmgiTytq3yI1WywrKBgu','CxDLBI0ZltCTCgX1CW','z3b0ltuUnI10zxjYyq','CxDLBJmTCMvYyw5RzxiTngi','B3bLBMfPl2DWDc01lJeTy2HHDa','BMvTB3rYB24TmY11BhrYys1MCMvL','y2XPBMuTCgfZCW','y3vZDg9T','Bw9VBNnOB3rHAs5RAw1PlwSYlJu','D2fUmI43lwLTywDLlxbYBW','r2vTBweTnc0ZmuiTuxvLzw4','BM92ys1WCM8TDJe','CxDLBI9XD2vUmY0ZmMiTzNa4','z29Vz2XLl2DLBw1HltqTmZfIlwL0','BwLZDhjHBgfPl01PC3rYywWTn0iTsw5ZDhj1y3qTDJaUmW','BNzPzgLHl25LBw90CM9Ulw5HBM8TmtjIlxyYlxzS','yw1HEM9UlM5VDMeTBgL0zs12mtOW','CxDLBI9XD2vUmY12Bc0YmZvIlweYmMiTDgHPBMTPBMC','z3b0ltuUmY1JB2rLEa','B3bLBMfPlwDWDc01nI10zxjYyq','z29Vz2XLlMDLBw1HltmTmJDIlwL0','sw50zwWVuxDLBJmTq29KzxiTndGWqI1bmZvcluLUC3rYDwn0lwLUDdqTBwL4zwqTyxi','EhbLCNnVBMeTzNjPzxjLBI1JB2rLCG','y29OzxjLl2nVAgvYzs1JB21Tyw5KlxiTCgX1CW','yxuUyw50AhjVCgLJlMnSyxvKzs1ZB25UzxqTnc01ltiWmJuWoti5lxyXoJa','BwLTBY12mI1VBw5PlwzYzwu','A2vUyxjP','y2XHDwrLlw9WDxmTnc41','CxDLBI9XD2vUmY42lwzSyxnO','D29YA2vYCY1HAs9ay2yVBwv0ys9SBgfTys0ZlJmTnZbIlwLUC3rYDwn0lwzWoc1Myxn0','zgf0ywjYAwnRCY1Nzw1PBMKTmY0XlwzSyxnOlwXPDgu','ChjPDMf0zw1VzguTywK','y2XHDwrLlw9WDxmTnc0XlxrOAw5RAw5N','uxDLBI9rD2vUmY1nyxG','Bwv0ys1SBgfTys9SBgfTys0ZlJiTmwiTAw5ZDhj1y3q','ChjPy2LUz1bYB3zPzgvYswrZ','Bwv0ys9TzxrHlwXSyw1HltmUms00mdvIlwLUC3rYDwn0','y2XPBMuTCgfZCY9XD2vUmY43lxbSDxm','CxDLBJm1lteYmMiTyteWyG','DMvUAwnLlxvUy2vUC29Yzwq6D2vI','yw1HEM9UlM5VDMeTChjVlxyXoJa','ywXPyMfIys9XD2vUmY12Bc10AgLUA2LUzW','Aw5WDxruB2TLBNm','C3bLywTSzwfZAc9cAwvSAwSTmtfclxyYlJyTsw5ZDhj1y3q','yw50AhjVCgLJls1JBgf1zguTmY43lxnVBM5LDa','BgLXDwLKl2XMBs0Ylti0yI1HmMi','CxDLBJiTns1JB2rLCI03yI1PBNn0CNvJDa','y2XHDwrLlw9WDxmTnc03qgrLzMf1Bhq','BwLTBY12mI1MBgfZAc1MCMvL','y29YztqYl2PHAxmTmZbIlwnOyxq','CxDLBI9XD2vUlxbSDxmTmJaYns0WnY0YodP0AgLUA2LUzW','ywKYms1SywjZl2fPmJeTAMfTyMeTms41lwXHCMDL','y2XHDwrLlw9WDxmTnc04lxrOAw5R','ywLVBI1SywjZlwfPB24TmY0Wlw1PBMK','CxDLBJmUns1VBw5PlxbSDxm','B3bLBMfPl2DWDc01lJyTDgvYCMe','Bw9VBNnOB3rHAs9RAw1PlwSYlwLUC3rYDwn0lta3mte','zg1PBMqVzg1PBMqTmq','BNzPzgLHl2XSyw1HltmUmY1Uzw1VDhjVBI1ZDxbLCI00owiTDJeUnq','CxDLBI9rD2vUmY0YmZvclueYmKiTsw5ZDhj1y3qTmJuWnW','z29Vz2XLl2DLBwLUAs0ZlJeTzMXHC2GTAw1Hz2u','yw50AhjVCgLJlMnSyxvKzs1OywLRDs00ltuTmJaYnteWmdeTDJe6ma','BM9YDgGTBwLUAs1JB2rLlteTma','z29Vz2XLl2DLBw1HltiTmJDIlwL0','y29TBwfUzc1HlxjLyxnVBMLUzY0Woc0Ymdi1','CxDLBI9XD2vUmY1VBw5PltmWyI1Hm2iTAw5ZDhj1y3q','CxDLBI9XD2vUltiUns1JB2rLCI0ZmMiTAw5ZDhj1y3q','yxjJzwuTywKVy29KzxiTBgfYz2u','BgXHBweTmY03mgiTAw5ZDhj1y3q','Bw9YCgGVBw9YCgGTDJmTzMfZDa','yw50AhjVCgLJl2nSyxvKzs1VChvZltqUnY1Myxn0','EI1HAs9NBg0Tnq','D29YA2vYCY1HAs9ay2yVCxDLBI9XD2vUmY0ZmgiTytnIlwzWoa','y29OzxjL','CgvHCMWTywKVz2vTBweTnc0ZmwiTAxq','DgLUzM9PBa','z2XTltuUmJPMCMvL','qgnMl3PHAs1VCMCVz2XTltuUmG','EgfPl2DYB2STnc4Ymc1TDwX0As1Hz2vUDc1IzxrH','z2vTAw5PltmTms1WCM8','CxDLBI9XD2vUmY04yI1MCdG','A2LTAs9RAw1PlwSYlJu','B3bLBMfPl28XlxbYBW','zg91yMfVlteTns10AgLUA2LUzY12AxnPB24TChjVlti1mdqYoa','B3bLBMnVzguTz28','CxDLBI9XD2vUlw10lxbSDxm','CxDLBJmTmJm1yI1HmJjIlwzWoa','z29Vz2XLl2DLBw1HltqTmZfIlwL0oNrOAw5RAw5N','Ec1HAs9NCM9RltqUmJa','B3bLBMfPlwDWDc01lJmTy29KzxG','B3bLBMfPl2DWDc0ZlJuTDhvYyM8TCMf3','BwLTBY12mI1WCM8','AhvPAhvPlwfPl0rLzxbtzwvRlviXlurPC3rPBgWTuxDLBI0ZmKiTywjSAxrLCMf0zwq','z2vTBweYltLIlwL0','z29Vz2XLl2X5CMLHltmTChjVlxbYzxzPzxC','zxHHlxjLC2vHCMnOlxbYBW','BMv4lwfNAs9UzxGTBJiTBwLUAq','zgvLChnLzwSTywKVzgvLChnLzwSTDJmUms1TywfZ','BwLZDhjHBgfPl21PBMLZDhjHBc0XngiTmJuXmG','CxDLBI9XD2vUmY43lw1HEa','z3b0ltmUns10DxjIBW','BwLUAw1HEc1TmI4XlwXPz2H0BMLUzW','BwvYz2uTz2f0zxDHEq','uxDLBI9rD2vUmY00qI1jBNn0CNvJDc0Ynta3','CxDLBJmUnI1WBhvZ','Bwf0y2HlAw5K','C29SyxiTChjVmG','C3vIy29UC2nPB3vZl3rPBs1XD2vUmY42lti3yG','AxngAw5PDgu','DxmUyw50AhjVCgLJlMnSyxvKzs1MywjSzs01','BgXHBweTnc1Zy291Dc0Xn2iTAw5ZDhj1y3q','y29TBwfUzc1Ylta4ltiWmJq','C2LSAwnVBMzSB3CTy24','vevfl2rLzxbZzwvRlxyZlJe','CxDLBJmTBMv4Dc04mgi','C2fVmtbll2WZltHIlwX1BMfYAxm','Ec1HAs9NCM9RltqUnq','D29YA2vYCY1HAs9ay2yVBwv0ys9SBgfTys00lxnJB3v0lte3yI0XnMuTAw5ZDhj1y3q','z2vTBwe0lti2yG','CMvNB2XVlwfP','CMvWB3j0zwrdB3n0','z2XTltuUmq','yxP1CMuTBZe','Bw9VBNnOB3qVA2LTAs1RmI43lwnVzgu','Bwv0ys9SBgfTys00lw1HDMvYAwnRlte3yI0XmJHLlwLUC3rYDwn0lwzWoa','Bw9KzwW','AgvSAwnVBMu','Bw9VBNnOB3rHAs9RAw1PlwSYlxrOAw5RAw5Nlxr1CMjVlw9YAwDPBMfS','ywKYms1SywjZl2fPmJeTAMfTyMeTms41lw1PBMK','BwLYB3rOAw5RzxiTms03lwrLzxbYzxnLyxjJAc1TAw5P','vgHLrhj1Bw1LCI9dEwrVBMLHlti0qI12nc4Z','z29Vz2XLl2DLBwLUAs0YlJaTzMXHC2GTBgL0zq','BwLZDhjHBgfPl3bPEhrYywWTBgfYz2uTmJqXmq','qgnMl21VB25ZAg90ywKVA2LTAs1RmI42','zw1WAxjPB2XHyNmVzgvLChnLzwSTDJqTzMXHC2GTzwW','AgvYBwvZlw1LzgL1Bq','y29OzxjLlwvTyMvKlxyTnc0W','BwfNAxn0CMfSlw1LzgL1Bs1SyxrLC3q','y2XHDwrLlw9WDxmTnc10AgLUA2LUzW','z3b0ltu','z2vTAw5Pl2DLBwLUAs0ZlJuTzMXHC2G','AgvYBwvZltmTBgXHBweTmY4XltqWnwi','vevfl3f3zw4ZltmWyI1Hm2iTAw5ZDhj1y3qTmJuWnW','z2XVyMfSlMfUDgHYB3bPyY5JBgf1zguTAgfPA3uTnc01ltiWmJuXmdaXlxyXoJa','BMvTB3rYB24TmY1ZDxbLCI0XmJbI','BhvJAwrXDwvYEq','C3rLCc0Ylte2AW','B3bLBMfPl2DWDc01lJiTChjV','yMXHy2STzM9Yzxn0lwXHyNmVzMX1Ef8XlwTVBNrLEhqTzgv2','Bwv0ys1SBgfTys9nzxrHluXSyw1HltmUms00mdvcluLUC3rYDwn0lvr1CMjV','CxDLBJmTzw1IzwrKAw5NltrI','z2XTltuUmI1ZAg9YDc1Myxn0lwzSzxG','D2fUzgi','EI1HAs9NBg0Tnc43','B3bLBMfPl2DWDc01lJeTy29KzxG','BwLZDhjHBgfPl2rLDNn0CMfSlxnTywXS','z29Vz2XLl2DLBwLUAs1KzwvWlxjLC2vHCMnO','z2vTBweTna','C2LSAwnVBMzSB3C','vevfl2DLBw1HltqTmZfIlwL0','DxmUBwv0ys5SBgfTytqTBwf2zxjPy2STmtDIlwLUC3rYDwn0lxyXoJa','tM91C1jLC2vHCMnOl0rLzxbizxjTzxmTmY1nAxn0CMfSlti0qI1qCMv2Awv3','CxDLBI9XD2vUmY0YmZvIlweYmMiTzNa4','s0fulunVzgvYluv4Cc03mKiTmtaXma','z3b0ltmUns10DxjIBY0Xmta2','AwjTlwDYyw5PDguVz3jHBML0zs00lJaTAc1TAwnYBW','DxmUBwv0ys5SBgfTytqTC2nVDxqTmtDIlwLUC3rYDwn0lxyXoJa','z29Vz2XLl2DLBw1HltqTmZfI','vgHLrhj1Bw1LCI9dEwrVBMLHlti0qI12na','u2fVmtbll0WZltHclvn0AgvUBY12mY4Y','y29OzxjLlwnVBw1HBMqTyq','z3b0ltuUnc1Uyw5VltiWmJyTmdmTmtC','A2LTAs1RmI42','EI1JB2rL','B3bLBI1TAxn0CMfSlw5LBw8','yw50AhjVCgLJlMnSyxvKzs1VChvZltqTms0Ymdi1mdGWns12mtOW','AgvYBwvZlwHPz2G','BwLZDhjHBc03yI1PBNn0CNvJDc12mc4Z','EMfPlw9YzY9NBg0Tnc42DI1VCMLNAw5HBa','zgvLChnLzwSTDJqTChjVlwXPz2H0BMLUzW','yw50AhjVCgLJl2nSyxvKzs1VChvZltu','EMfPlw9YzY9hte0Tnc42lxr1CMjVoNrOAw5RAw5N','Bw9KzwWTCM91DgvY','wgLHB21PtwLnBY9nAu1VlvyYluzSyxnO','y2XHDwrLlxnVBM5LDc00ltyTDgHPBMS','CMvRywfPl3jLA2eTzwrNzq','CxDLBI9XD2vUmY43lxbSDxm','zgvLChnLzwSVzgvLChnLzwSTDJqTzMXHC2G6DgHPBMTPBMC','BNzPzgLHl21Hz3bPzs10DhmTEMvYB3nOB3q','BNzPzgLHl0XSyw1HltnFmY1ozw1VDhjVBI1tDxbLCI00ouiTDJfFnq','y2vYzwjYyxmVz3b0lw9ZCY0XmJbIlwnZ','z2vTAw5PltiUns1MBgfZAc1WCMv2Awv3lta5ltiWmJu','yw50AhjVCgLJlMnSyxvKzs1VChvZltqTnI12mq','BgfICY1KzxzZDhjHBc1ZBwfSBc0YnteY','Bwv0ys1SBgfTys0ZlJeTnZbIlwLUC3rYDwn0','zgvLChnLzwSTywKVzgvLChnLzwSTDJmUmI1TywfZ','ywnJB3vUDhmVzMLYzxDVCMTZl3jVDxrLCNmVA2LTAs1RmNa3lwnVzguTzMfZDa','z2XVyMfSlMfUDgHYB3bPyY5JBgf1zguTC29UBMv0ltqTns0Ymdi1mdKYos12mtOW','zhvVlwnOyxqTz3b0ltuTnI1SDw5H','zgvLChnLzwSTywKVzgvLChnLzwSTDJmUmI1LEhaTDgHPBMTPBMC','Bwv0ys1SBgfTys9mBgfTys0ZlJiTm0iTsw5ZDhj1y3q','u2fVmtbll0WZlJeTnZbcluHHBMfTAs14mq','B3bLBNjVDxrLCI9IB2r5yNvPBgrLCG','BgXTDhi','Bw9VBNnOB3rHAs9lAw1PluSYluLUC3rYDwn0','y2XHDwrLlxnVBM5LDc00lJu','EgfPl2DYB2STnc4Ymc1YzwfZB25PBMCTyMv0yq','D29YA2vYCY1HAs9ay2yVBwv0ys9SBgfTys0YltDIlwnOyxqTzNaXnG','BwLZDhjHBc9TAxn0CMfSlw5LBw8','BwLZDhjHBc5TAxn0CMfSlwXHCMDLltmTnJC1yI1PBNn0CNvJDa','D29YA2vYCY1HAs9ay2yVBwLZDhjHBc9TAxn0CMfSltDIlwLUC3rYDwn0lxyWlJe','BhvJAwrUB3zHlxjMms0XmdbI','C2fRyw5Hl2z1z3uTDwX0CMe','B3bLBMfPl2DWDc1PBwfNzs0XlJu','y2XHDwrLltmTnY1ZB25UzxqTmJaYntaYmtK','ywnJB3vUDhmVzMLYzxDVCMTZl21VzgvSCY9NChqTB3nZlteYmgi','EMfPlw9YzY9NBg0Tnc42DI1MBgfZAc1VCMLNAw5HBa','CMvHC29UAw5N','B3bLBMfPl2DWDc01lJqTBMfUBW','C3rLCgz1BI1HAs9tDgvWltmUnY1gBgfZAa','z29Vz2XLl2DLBwLUAs0ZlJeTzMXHC2GTAw1Hz2uTChjLDMLLDW','y3jVC3nTB2rLBa','z2vTAw5PltiUmc1MBgfZAc10AgLUA2LUzY1LEhaTmdeTmJe','D29YA2vYCY1HAs9ay2yVzgvLCgDYyw0VBM92ys0Z','twLUAu1HEc1nmG','vevfl3f3zw4YlJuTDMWTnZjIlwLUC3rYDwn0','BwLJCM9ZB2z0l3bOAs00lw1PBMKTCMvHC29UAw5N','BM92ys0YlxbYBY12mq','z21Py2XVDwq','vM9Uz29SyunOB3vRBY9tDgfYy2fUBM9UlvvUBgvHC2HLzc0XmKiTDJeUma','twLUAu1HEc1nmI41lwHPz2HZCgvLza','ywXPyMfIys9XD2vUltmTmtrI','AMfTyMeTBwLUAq','z29Vz2XLl2DLBw1HltmTngiTChq','y2XHDwrLlw9WDxmTnc44','zMfZDgLUBY9NBgLUzxiYlw11BhrPlwXHCMDLlxyX','BwLZDhjHBc9TAxn0CMfSlwXHCMDLltm','Cg9VBhnPzguVBgfNDw5HlxHZltiUmq','zhvVlwnOyxqTz3b0ltuTBwLUAq','y2XHDwrLlw9WDxmTnc0XlxrOAw5RAw5NoJmYnZy4','z3b0ltrVlw1PBMK','B3bLBI1TAxH0CMfSltH4n2i','B2XHzMfUz2vUC2fUlwDSBs00lJCTzMXHC2GTAgvYzxrPyW','Ec1HAs9NCM9RltqUmJaTBxvSDgKTywDLBNq','CgvYCgXLEgL0Es9ZB25HCI1WCM8TC2vHCMnO','z29Vz2XLl2DLBw1HltmTmJDIlwL0','BwLJCM9ZB2z0l1bOAs00lw1PBMKTAw5ZDhj1y3q','yw50AhjVCgLJlwnSyxvKzs1VChvZltqUnG','y2XPBMuTCgfZCY9TAw1VlxyYlJu','z2XTltqUns1MBgfZAa','y2XHDwrLltqTnI1ZB25Uzxq','mJaYnI0WnY0YnvqXntOZnZOXos45mJDA','Bg1ZDhvKAw8','BwLUAw1HEc9TAw5PBwf4lw0YlJu','AxntywzLsw50zwDLCG','CxDLBJi1lxzSltCYyI1PBNn0CNvJDa','yMfPzhuVzxjUAwuTnc41ltiXyI1Hm2i','BgXHBweTChjVBxb0lwD1yxjKltiTmJjT','D29YA2vYCY1HAs9ay2yVB3bLBMfPl2DWDc1VC3mTmJbI','EMfPlw9YzY1NBg0Tnc43','ywXPyMfIys9XD2vUltmTmJm1yG','yw50AhjVCgLJl2nSyxvKzs1VChvZltqUnI1Myxn0','B3bLBMfPl2nOyxqTy29TCgXLDgLVBI9TB2rLBhmVz3b0lw9ZCY0Ymgi','yw50AhjVCgLJl2nSyxvKzs1ZB25UzxqTmY41lwP1BMu','z3b0ltqUmq','y29OzxjLl2nVBw1HBMqTys0WmY0Ymdi1','CxDLBJmUnY1TyxG6DgHPBMTPBMC','y2XHDwrLlxnVBM5LDc01qgrLzMf1Bhq','zgvLChnLzwSTDJqTzMXHC2G','zgf0ywjYAwnRCY1NChqTB3nZlteYmgi','BgXHBweTnc1TyxzLCMLJAY0Xn2iTAw5ZDhj1y3q','BM92AxrHl2TPBwKTAZiUnq','B3bLBMfPl2DWDc0ZlJuTDhvYyM8TmdyXmW','y2XVDwrMzxjYBY1ZAgvYBg9JAW','uxDLBI9rD2vUmY0YmZvclueYmKiTvgHPBMTPBMCTmJuWnY1uruu','C2fVmtbRl2WZlJmTzxvYEwfSzs03mgi','r2vTBweTnc0ZmuiTr2fYBMv0vJi','zgvLChnLzwSTDJmTmq','z2vTAw5PltiUns1MBgfZAc1WCMv2Awv3lta1ltiWoNrOAw5RAw5N','C2vLzc0XltyTzMXHC2GTmJuWnZe1','twLUAu1HEefjl01PBMLnyxGTtteTodbR','Bwv0ys9TzxrHlwXSyw1HltmTnZbIlwLUC3rYDwn0','Bwv0ys9SBgfTys0ZlJmTnZbIlwLUC3rYDwn0lw1Hyxm','z3jVCs1SBgfTys00lw1HDMvYAwnRlte3yI0XmJHLlwLUC3rYDwn0','B3bLBMfPl2DWDc00BY0Ymdi0lta1lteZ','BwLTBY12mI41lwzYzwu','zgvLChnLzwSVzgvLChnLzwSTCJeTmduYoa','BMvHCMfP','yw50AhjVCgLJlwnSyxvKzs00lJyTC29UBMv0','B3bLBMfPlwDWDc01lJq','z2vTBweTnc0YnMiTytrI','y29Kzxn0CMfSlwXHDgvZDa','BNzPzgLHl2DSAw5LCI1WAwK','z3b0ltuTnc1Uyw5V','y2XHDwrLltmTns1OywLRDs1SyxrLC3q','yw50AhjVCgLJlwnSyxvKzs0ZlJuTC29UBMv0','CxDLBI9XD2vUmY42lw1HEc1WCMv2Awv3','BwLZDhjHBgfPl21PC3rYywWTn2iTAw5ZDhj1y3qTDJaZ','yw50AhjVCgLJl2nSyxvKzs1OywLRDs00ltuTmJaYnteWmde','BM91C3jLC2vHCMnOl2HLCM1LCY00ltCWyG','Aw5JBhvZAw9UywKVCMLUzY0YlJyTmxq','CxDLBI9XD2vUmY04yG','DgvUy2vUDc1JB2rPBMCTCgXHBG','ywXPyMfIys9XD2vUmY1UzxH0ltGWyI1Hm2iTDgHPBMTPBMC','EgfPl2DYB2STnc4Ymc0WmZa5lxjLyxnVBMLUzW','yw50AhjVCgLJlwnSyxvKzs1ZB25UzxqTna','z2vTAw5PltiUmc1MBgfZAc1SAxrL','AwzSB3DJBG','EgfPl2DYB2STnc41','Bwv0ys1SBgfTys9SBgfTys1WCM9TChqTz3vHCMqTmI04nM0','z2vTAw5PltmTzMXHC2GTChjLDMLLDW','CgLVBMvLCG','CxDLBI9XD2vUte0VBw9KzwXZl1f3zw4ZltmWqI1bm0iTvgHPBMTPBMCTmJuWnW','A2LTAs10AgLUA2LUzY1WCMv2Awv3','vevfl2DSBs00lJCTzMXHC2G','r2vTBweTnc0ZmuiTq2XHDwrLltqUnI1pChvZlvjLyxnVBMLUzY1eAxn0AwXSzwq','C2vLzc0XltyTmJuWnJe1','Aw5WDxq','B3bLBMfPlMDWDc1VC3mTmtiWyI0XoJa','EI1HAs9NBg0Tnc42DG','CgvYCgXLEgL0Es9ZB25HCI1WCM8','BwLUAxn0CMfSltHIlwXHDgvZDa','CxDLBJmTBgL2zxrYyw5ZBgf0zs1MBgfZAc1YzwfSDgLTzq','y2vYzwjYyxm','Bwv0ys1SBgfTys9SBgfTys1WCM9TChqTz3vHCMqTmI0YmM0','A2LSBW','Bwv0ys1SBgfTys9SBgfTys0ZlJmTnZbIlwLUC3rYDwn0','BNzPzgLHls1SBgfTys0ZlJiTBNyTzw1IzwrXys0XyG','qwXPyMfIys1otfaVvg9Uz3LPlurLzxbszxnLyxjJAc0ZmeiTqtnc','EMfPl2DSBs00lJv2','EhbLCNnVBMe','BwLZDhjHBgfPl21PC3rYywWTC21HBgWTmY4Xlti0yI1PBNn0CNvJDa','EMfPl2DSBs00lJz2','yw50AhjVCgLJl2nSyxvKzs1VChvZltuTzMfZDa','FMfUDgHYB3bPyY9JBgf1zguTB3b1CY1SyxrLC3q','r2vTBweTnc0ZmuiTtxvZAwnHlxyX','z3b0ltuTmI1JB2rLEa','C3rLCc0ZltuTzMXHC2G','z2XTltqTCgX1CY0WmteX','z29Vz2XLl2DLBwLUAs0ZlJeTChjVlxbYzxzPzxCTBg93','CxDLBJmUns1VBw5PlwzSyxnO','DMvUAwnL','ywjHy3vZywKVrhjHy2fYExmTnZjcluLUC3rYDwn0','CgHPltmTBwvKAxvTlteYogSTAw5ZDhj1y3q','DgHLzhj1Bw1LCI9ZA3LMywXSltm2yI12mG','Bw9KzwXZ','B3bLBMfPl2DWDc1VC3mTmtiWyI1Myxn0','uxDLBI9rD2vUmY1szxjHBMTLCI0WlJzc','AZmTmJu2AW','EMHPChvHAq','y2fJAgvszwfKsw5WDxruB2TLBNm','shvNz2LUz0zHy2vuqI9tBw9Ste0ZltnclujHC2u','CxDLBI9rD2vUmY42ltm1qI1bm0i','z3b0ltuUnq','EwKTBgLNAhrUAw5N','BgXHBweTmY4ZltHIlwLUC3rYDwn0','z3b0ltuUmY1JAgf0lwXHDgvZDa','vg9Uz3LPlvPOAxDLBI9rD2vUtg9UzY1mms0ZmKi','EMfPlw9YzY1NBg0Tnq','z2vTAw5PltmUms1WCM8TChjLDMLLDY1JDxn0B210B29SCW','z29Vz2XLl2DLBwLUAs0YlJuTzMXHC2GTAw1Hz2u','Cg9VBhnPzguVBgfNDw5HlxHZlJi6zNjLzq','z29Vz2XLlxzLCNrLEc1HBNrOCM9WAwm','EgfPl2DYB2STnc1Myxn0','uhjVl01PBMLnyxHbss9nAw5Ptwf4lu0YlJu','BMvTB3rYB24TmY11BhrYys01ntbI','B3DS','y2fJAgvxCML0zq','B3bLBMfPlwDWDc1PBwfNzs0XlJu','A2LTAs1RmI1PBNn0CNvJDa','yw50AhjVCgLJl2nSyxvKzs1VChvZltqUoa','D3jPDgvYlNbHBg15CMeTEdqTDJe6ma','C3LUDgHLDgLJ','yw50AhjVCgLJlMnSyxvKzs1ZB25UzxqTnq','BwLZDhjHBc1ZBwfSBc1SyxrLC3q','Bwv0ys1SBgfTys9SBgfTys0ZlJeTogiTAw5ZDhj1y3q','BwLZDhjHBc9KzxzZDhjHBc1TzwrPDw0TBgf0zxn0','zg91yMfVlxnLzwqTms02lwzSyxnOlti1mdyXnq','BgLUzY0YlJyTzMXHC2GTzNjLzq','zhvVlwnOyxqTC29UBMv0ltu','z29Vz2XLl2X5CMLHltmTy2XPCc1WCMv2Awv3','u3rLzwXZA3vSBc9mmY4Zlu5LDM9YAweTuJeTnZbI','tM91C1jLC2vHCMnOl2HLCM1LCY00ltqWnwi6DgHPBMTPBMC','A3vHAxnOB3uVA2f0lwnVzgvYlxbYBY12mG','Aw5MBgvJDgLVBI9PBMzSzwn0Aw9UltmTChjVzhvJDgL2Axr5','z2XTltq','uxDLBI9rD2vUmY1wtc0ZmeiTqtnclvrOAw5RAw5N','ANaUyw50AhjVCgLJlMnSyxvKzs1ZB25UzxqTnc01ltiWmJuWoti5lxyXoJa','tg9Uz0nHDc0YlJa','A2LTAs1RmI42lwzSzxG','z29Vz2XLl2DLBw1Hltm','y2XHDwrLltqUns1OywLRDq','uxDLBI9rD2vUmY42lvbSDxm','zg91yMfVlxnLzwqTmI0WlwXPDguTmJyWmJe1','B3bLBMfPl2DWDc01lJmTy2HHDc1SyxrLC3q','uxDLBJmUns0Yn0iTqMX1zvn0yxiTDJiTrgvYzxn0CMLJDgvKluXPDgu','A2LTAs1RmI41lwzHC3q','BwLZDhjHBgfPl21PEhrYywWTohGYmMiTAw5ZDhj1y3q','z3b0ltuUmI1JAgf0','CxDLBJmUns0ZotDIlwzHC3q','A2LTAs1RmI43lwnVzguTmteWmgi','BgXHBweTmY4YlteXyI1PBNn0CNvJDa','qgnMl3f3zw4VCxDLBJmTmZbIlweZyI1MCdG','EMfPlw9YzY9NBg0Tnc43lw9YAwDPBMfSoNrOAw5RAw5N','Bwv0ys1SBgfTys9SBgfTys1NDwfYzc0ZltHI','BwLZDhjHBgfPl1zVEhrYywWTu21HBgWTmJrclti1mdC','mtG1mtKXmKL6DurlAq','EI1HAs9NBg0Tns4Y','z29Vz2XLlMDLBw1HltmTngiTAxq','y2vYzwjYyxmVBgXHBweTmY4XltHIlwnZ','BNzPzgLHl0XSyw1HltmUms1ozw1VDhjVBI03meiTsw5ZDhj1y3qTsey','yxP1CMuTz3b0ltrV','z3b0ltuTDgHPBMTPBMC','B3bLBMfPlwDWDc1VC3mTmJbI','z2vTAw5PltiUns1WCM8','ywXPyMfIys10B2TLBI1WBgfU','D29YA2vYCY1HAs9ay2yVBwv0ys9SBgfTys0ZltHIlwLUC3rYDwn0lwf3Cq','nZqXotL2sNf3Ehy','z2L0AhvIlw1VzgvSCW','y2XHDwrLlw9WDxmTnc43','y2XHDwrLlw9WDxmTnc0XqdiWmJuWoda1','BwfNAwj1lteXyI12oa','y2XHDwrLlw9WDxmTnc02qgrLzMf1Bhq','BwLTBY12mI41lxr0CY12B2LJzwrLC2LNBG','BwLZDhjHBc1HAs9TAxn0CMfSlwXHCMDLlti0mte','D29YA2vYCY1HAs9ay2yVEMfPlw9YzY9NBg0Tnc43lwzSyxnO','A2LSBY1HDxrVl2zYB250AwvY','z3b0ltmUns10DxjIBY0Wmti1','Ec1HAs9NCM9Rlwj1AwXKltaUmq','yxv0BY1TB2rLBc1WCMvTAxvT','zgf0ywjYAwnRCY1NChqTns02lxnVBa','uxDLBJmUns0Yn0iTtwfYDMLUlvyYlurLCMvZDhjPy3rLzc1mAxrL','BgXHBweTChjVBxb0lwD1yxjKltiTodzT','ywLVBI1SywjZl2fPB24TmY4W','CxDLBJmTnI1MBgfZAa','r3j5CgHLl015DgHVtwf4luWYlteZyG','zMfPBhnWEs9nzxrHluXSyw1HltmTnZbcluLUC3rYDwn0lwfIBgL0zxjHDgvKlxyZlJu','BwLZDhjHBgfPl2nVzgvZDhjHBc0Ynta4','CxDLBJmUns0Yn2i6DgHPBMTPBMC','A2LTAs1RmI42lwzHC3q','B3bLBMfPlMDWDc01lJyTBhvUyq','yw50AhjVCgLJl2nSyxvKzs1VChvZltqUodP0AgLUA2LUzW','twfYAw5HCMftCgfNAgv0DgKVtMvTB01PEc1vBMXLyxnOzwqTmtjc','z2vTAw5PltmUns1MBgfZAa','BM91C3jLC2vHCMnOl2HLCM1LCY00ltqWnwi','zgvLChnLzwSTywKVrgvLCfnLzwSTvJmUmtP0AgLUA2LUzW','Bw9YCgGTDJmTzMfZDa','Agy6BNzPzgLHl05wsurjqs1ozw1VDhjVBI0Zlvn1CgvYlteYmeiTqteYqI1ovKzqna','z29Vz2XLl2DLBwLUAs0ZlJeTChjVlxbYzxzPzxC','zxjUAwuTEdeTmZjRlxbYzxzPzxC','z29Vz2XLl2rPzMz1C2LVBMDLBw1Hlti2qI1bneiTAxq','CgHPltmUns1TB2uTAw5ZDhj1y3q','CxDLBI9XD2vUmY41lwzSyxnOltaYltiZ','uxDLBI9rD2vUmI41ltDcluLUC3rYDwn0','B3bLBMfPl2DWDc00BY1HDwrPBY1WCMv2Awv3','ywnJB3vUDhmVzMLYzxDVCMTZl21VzgvSCY9KzwvWC2vLAY12nc1WCM8','uxDLBI9rD2vUmY41ltm5n0iTqte3qI1Myxn0','B3bLBMfPl2DWDc00BY1TAw5PlxnLyxjJAc1WCMv2Awv3','DxmUzgvLChnLzwSUCJeTDJe6ma','CxDLBI9XD2vUmY41ltLI','DJaTms41lwXN','z3b0ltuTBMfUBW','zxnZzw50AwfSywKVCM5QlteTAw5ZDhj1y3q','ywXPyMfIys9XD2vUmY12Bc0YmZvIlweYmMiTAw5ZDhj1y3q','zgvLChnLzwSVzgvLChnLzwSTDJmUmG','z2vTAw5PltiUns1WCM8TzxHWltaZlti1','EgfPl2DYB2STnc0XlwzHC3qTBM9UlxjLyxnVBMLUzW','BMvTB3rYB24TmY11BhrYys01ntbIlwe1nwi','BgfNDw5HlxmTmI4XlwzYzwu','EI1HAs1NBg0TnxyTDhvYyM8','B3bLBMfPl2DWDc01lxbYBW','yw50AhjVCgLJl2nSyxvKzs1VChvZltqUnJP0AgLUA2LUzZPTyxG','EgfPl2DYB2STnc4Ymc1UB24TCMvHC29UAw5N','BwLZDhjHBgfPl2rLDNn0CMfSlti1mti','z3j5CgHLl215DgHVBwf4lwWYlteZyG','EMfPlw9YzY9NBg0Tnc43lwzSyxnOoNrOAw5RAw5N','B3bLBMfPl2DWDc01lJyTBhvUyq','zxuUyw50AhjVCgLJlMnSyxvKzs1VChvZltqToa','z2XTlxPLCM8TChjLDMLLDW','BNzPzgLHlw5LBw90CM9UlwnHC2nHzguTmI0ZmgiTytnI','Dgv4Dc1LBwjLzgrPBMCTywrHltaWmG','Cg9L','z2vTAw5PltiUns1WCM8TDhrZ','yw50AhjVCgLJlwnSyxvKzs1VChvZltqUnW','DM9Sy2vUz2LUzs9KB3vIyw8TC2vLzc0YlJaTBwLUAq','Bw9VBNnOB3rHAs9RAw1PlwSYlJy6DgHPBMTPBMC','uxDLBJmUns0Yn0iTt21Lz2eTrxzVBhv0Aw9UlxyYlJaTrgvYzxn0CMLJDgvK','veHvre0Vr0XnlvOXltmYqI0Wnde0','zhvVlwnOyxqTz3b0ltuTnc1Uyw5V','ywnJB3vUDhmVzMLYzxDVCMTZl21VzgvSCY9NChqTB3nZltiWyG','DxbZDgfNzs9ZB2XHCI0Xmf83yI1PBNn0CNvJDa','C3rLCgz1BI1HAq','y29NBML0AxzLy29TChv0yxrPB25Zl2rVBhbOAw4TBwLZDhjHBc0YngiTDMvUAwnLlwvKAxrPB24','CxDLBI1KB2mTDhvYyM8','yw50AhjVCgLJl2nSyxvKzs1VChvZltqTmq','CxDLBJmTmJm1yG','BwLZDhjHBc1TzwrPDw0TmY41lteYogi','B3bLBMfPl2DWDc01lJiTy2HHDa','yw1HEM9UlM5VDMeTBwLJCM8TDJe6ma','nZGYnZbABhniExe','yMDLlw11BhrPBgLUz3vHBc1Nzw1Tyti','BwLTBY12mI41lxbYBW','uhjVl21VB25ZAg90ywKVs2LTAs1lmI41','ywnJB3vUDhmVzMLYzxDVCMTZl3jVDxrLCNmVz2XTltvWms1Myxn0','tM91C1jLC2vHCMnOl2HLCM1LCY0ZlwXSyw1HltmUms03mgi','Cg9VBhnPzguVBgfNDw5HlxmTmI4XoMzYzwu','yw50AhjVCgLJlwnSyxvKzs00lJuTC29UBMv0','zgf0ywjYAwnRCY1RAw1PlwSYltCTy29Kzq','qMfPy2H1yw40lvr1CMjV','A2LTAs1RmI43lwnVzgu','CxDLBI9XD2vUmY12Bc0ZmgiTytnIlxrOAw5RAw5N','C2nHBgv3yxK','z3b0lwLTywDLlti','BNzPzgLHl05LBw90CM9UlteYmeiTqteYqG','B3bLBMfPl2DWDc01lJyTBhvUys1WCM8','B3bLBMfPlwDWDc01nI1SDw5H','tM91C1jLC2vHCMnOl2HLCM1LCY00ltqWnwi','yw50AhjVCgLJl2nSyxvKzs1ZB25UzxqTnq','yw50AhjVCgLJlMnSyxvKzs1ZB25UzxqTnc02','D29YA2vYCY1HAs9ay2yVBwv0ys9SBgfTys0ZlJeTogiTAw5ZDhj1y3q','ywXPyMfIys9XD2vUmY42ltm1yI1Hm2i','EI1HAs9NBg0Tnc42','B3bLBMfPlMDWDc1VC3mTmtiWyG','CxDLBJmTy29KzxiTndGWyI1HmZvIlwLUC3rYDwn0lxr1CMjV','y2XPBMuTCgfZCY9RAw1PlwSZ','EI1HAs9NBg0Tnc43lwzSyxnOEa','qNL0zurHBMnLlvnLzwqVu2vLzc1pu1mTmZzcluLUC3rYDwn0','CxDLBI9XD2vUmY1JB2rLCI1UzxH0','uxDLBI9rD2vUmY42lti3qI1uruu','zgf0ywjYAwnRCY1NChqTns02lwX1BMe','AgfWChLOB3jZzs0XlJeTAtj2','Dw5VCM91DgvY','BhvJAwrXDwvYEs1UzxH1CY1JB2rLCG','D29YA2vYCY1HAs9ay2yVB3bLBMfPl2DWDc1VC3mTmtiWyG','zgvLCgnVz2L0BY9JB2DPDg8TDJiUms02nZfI','y2H1DgvZywKVtwLZDhjHBc1tBwfSBc0ZlJiTmJrcluLUC3rYDwn0lti1mdy','yw50AhjVCgLJls1JBgf1zguTmY41lxnVBM5LDa','yMfPzhuVzxjUAwuTnc41ltmWmgiTytq3yG','z2vTBweTnc0ZmuiTAxq','qgnMl3f3zw4VCxDXltmYyG','Agy6uxDLBI9rD2vUmY42lti3qG','FMfUDgHYB3bPyY9JBgf1zguTAgfPA3uTBgf0zxn0','Cg9VBhnPzguVBgfNDw5Hlw0Umq','BwLUAw1HEc1TmI43lwHPz2HZCgvLza','qgnMl21LDgeVBgXHBweTmY4YltnIlwLUC3rYDwn0','zgf0ywjYAwnRCY1Nzw1PBMKTmY0XlxbYBW','zgvLChnLzwSTCJeTzgLZDgLSBc1SBgfTys04yG','zgvLChnLzwSUCJeTDJe6ma','CxDLBJiTns1JB2rLCI0ZmMiTAw5ZDhj1y3q','BwLZDhjHBgfPl21PC3rYywWTC21HBgWTmJyWmW','DJaTms4Wlw1K','EI1HAs9NBg0Tnc43lwzSyxnOlwzYzwu','A2LSBY1HDxrVl2zYzwu','BwLZDhjHBgfPl21PC3rYywWTC21HBgWTmJrIlwLUC3rYDwn0lti1mde','D29YA2vYCY1HAs9ay2yVAwjTlwDYyw5PDguVz3jHBML0zs00lJaTAc1TAwnYBW','zgvLChnLzwSVzgvLChnLzwSTDJm','BwLUAxn0CMfSltnIlwXHDgvZDa','Dw1HBNmTywKTy29KAw5NlxbSyw4','B3bLBMfPl2DWDc01lJeTy2HHDc1SyxrLC3q','CxDLBI9XD2vUlxbSDxmTmJaYns0WnY0Yoa','z3jVAY1IDwLSzc0WlJe','C2HPC2eTywKVC2HPC2eTDJiUms1SBgfTytmUmY03mgi','yw50AhjVCgLJl2nSyxvKzs1VChvZltqUnJP0AgLUA2LUzW','z2vTBweTnc0ZmuiTsZeTDJu','BZqTBwLUAq','BgXHBweTmY4YltnI','uxDLBJmUns0Yn0iTqMX1zvn0yxiTrgvYzxn0CMLJDgvK','BNzPzgLHl2fJDgL2zs1ZCgvHA2vYlwrLDgvJDgLVBG','Bw9KzwXjza','C3rHy2TPDa','B3bLBMfPl2DWDc01lJiTy2HHDc1SyxrLC3q','BwLZDhjHBgfPl01Hz2LZDhjHBc1tBwfSBc0Ynta2','y2XHDwrLlw9WDxmTnc02','BwLZDhjHBc9TAxn0CMfSlwXHCMDLlti1mti','D29YA2vYCY1HAs9ay2yVBw9VBNnOB3rHAs9RAw1PlwSYlJy','BwLZDhjHBc9TywDPC3rYywWTBwvKAxvTlwXHDgvZDa','BNzPzgLHl25LBw90CM9UltmTBMfUBY1VBw5PltmWyI1Hm2iTCMvHC29UAw5NoMzYzwu','CxDLBJmTy29KzxiTBMv4Dc1MCdGTmw0','BwLUAw1HEgfPl21PBMLTyxGTBteTodbR','BwLZDhjHBc1TzwrPDw0TmW','B3bLBMfPl28ZlwrLzxaTCMvZzwfYy2G','qgnMl21LDgeVBgXHBweTmY4YlteXyI12AxnPB24TAw5ZDhj1y3q','z3b0ltuUna','CxDLBJmTDMWTmJm1yI1HmJjIlwLUC3rYDwn0','Dgv4Dc1LBwjLzgrPBMCTmY1ZBwfSBa','z3b0ltuTms1JB2rLEc1TyxG','uxDLBI9rD2vUmY0ZmeiTqtnclvrOAw5RAw5Nlti1mdC','uxDLBJmUns0Yn0iTzwfYAwnHlurLCMvZDhjPy3rLzc1mAxrL','EgLHB21Plw1PBw8TDJiUns1WCM8','BwLTBY12mI41lxbYBY11BhrYyxnWzwvK','zxjUAwuTnc41ltHRlxbYzxzPzxC','yw50AhjVCgLJl2nSyxvKzs1MywjSzs01','y2XVDwrMBgfYzs13B3jRzxjZlwfP','z3jVAY00lJiWlw11BhrPlwfNzw50lwjLDgeTmdmWoq','B3zOy2XVDwq','BgXHBweZltHIlwLUC3rYDwn0','C2fMzu1VzgvSrMfSBgjHy2TZ','CxDLBI9XD2vUlwLTywDLlwvKAxq','ChjPBwuTAw50zwXSzwn0l2LUDgvSBgvJDc0Z','y2XHDwrLlw9WDxmTnc0XltiWmJuWoda1lxrOAw5RAw5N','Aw5MBgvJDgLVBI9PBMzSzwn0Aw9UltmTCgK','DxmUyw50AhjVCgLJlMnSyxvKzs1VChvZltqTnI12mq','BNzPzgLHl0rLzxbtzwvRlvyZlJiTtLzgudq','zgf0ywjYAwnRCY1NChqTB3nZltiWyG','EMvUAwzYyq','A2LTAs9RAw1PlwSYlJy','B3bLBMfPl2DWDc00BY1ZzwfYy2G','y2XHDwrLlw9WDxm0lty','zxzYB2mVCM9J','Bwv0ys1SBgfTys9SBgfTys0ZlJiTm2iTAw5ZDhj1y3q','BwLUAw1HEc5TAw5PBwf4lw0YlJe','yw50AhjVCgLJlwnSyxvKzs1VChvZltq','Bw9YCgGVBw9YCgGTDJmTBgfYz2u','B3bLBMfPlMDWDc1VC3mTC2fMzwD1yxjKlteYmgi','qgnMl2LIBs1NCMfUAxrLl2DYyw5PDguTnc4WlwGTBwLJCM8','BxvSDgKTCweTBxbUzxqTyMfZzs1KB3qTDJe','Bw9VBNnOB3rHAs9RAw1PlwSYlJCTy29Kzs1MCMvL','y2XHDwrLlxnVBM5LDc00ltuTmJaYnta5mJK','CxDLBJmTy29KzxiTBMv4Dc1MCdG','CxDLBI9rD2vUmY1wtc0YmZvclueYmKiTsw5ZDhj1y3q','y2XHDwrLlwHHAwT1ltqTns0Ymdi1mtaWms10AgLUA2LUzW','B3bLBMfPlwDWDc01ns1WCM8','qgnMl252AwrPys9Uzw1VDhjVBI0ZlteYmgiTyteYyG','yw50AhjVCgLJl2nSyxvKzs0ZltCTC29UBMv0','zxuUyw50AhjVCgLJlMnSyxvKzs1MywjSzs01','BwLZDhjHBc1HAs9TAw5PC3rYywWTm2i','zgvLChnLzwSTywKVzgvLChnLzwSTCJeTzgLZDgLSBc1SBgfTys03mgi','zgvLChnLzwSTDJmUmI1ZCgvJAwfSzq','yMfPzhuVzxjUAwuTnc41lxzSltqYngiTytq3yG','D29YA2vYCY1HAs9ay2yVCxDLBI9XD2vUmI41lwnVzgvYltmYyI1PBNn0CNvJDa','EMfPlw9YzY9hte0Tnc41luzqoa','DM9Sy2vUz2LUzs9KB3vIyw8TC2vLzc0YlJaTChjV','zhvVlwnOyxqTz3b0ltuTy29KzxG','zhvVlwnOyxqTz3b0ltuTmY1JB2rLEa','zhvVlwnOyxqTz3b0ltuTmG','C3rLCc0Ylte2AY1LEha','BwLZDhjHBc9WAxH0CMfSlteYyG','CxDLBI9XD2vUmY1TyxGTDgHPBMTPBMC','Bwv0ys5SBgfTytqTBwf2zxjPy2STmtDIlwLUC3rYDwn0lxyXoJa','z2XTltuTDhvYyM8','y2XHDwrLlw9WDxmTnc0XlxrOAw5RAw5NoJGXoti','A2LTAs1RmI42lw5PDhjV','CMvRywfPl3jLA2eTzMXHC2GTmW','z2XTltqUns1HAxi','EMvUBxv4','zgvLChnLzwSVzgvLChnLzwSTDJmUmJP0AgLUA2LUzW','zgf0ywjYAwnRCY1Nzw1PBMKTmI01lwzSyxnO','mte0mJe5n21Wu3btBq','z2XVyMfSlMfUDgHYB3bPyY5JBgf1zguTB3b1CY00ltyTDJe','B3bLBMfPl2DWDc01lw1PBMK','BNzPzgLHl252lwvTyMvKlxyX','yxP1CMu','twLUAu1HEc1nmW','z3b0lxjLywX0Aw1LltiUmq','yw50AhjVCgLJl2nSyxvKzs1ZB25UzxqTnc41','C3rLCc0ZltuTzMXHC2GTmJyWmW','BNzPzgLHl25LBw90CM9UltmTDwX0CMeTntuWyI1HntvIoMzYzwu','FM9Wzw5HAs9NChqTBgf0zxn0','r2vTBweTnc0ZmuiTrgfYA0LKB2W','z2XTltuUmI1UAxrYBW','z29Vz2XLl2DLBw1HltmTngiTAxq','yw50AhjVCgLJlMnSyxvKzs1VChvZltu','yw50AhjVCgLJl2nSyxvKzs1VChvZltqUnG','yNjHDMu','y2vYzwjYyxmTBgXHBweTnc1Zy291Dc0Xn2iTmtzLlwLUC3rYDwn0','C3vIy29UC2nPB3vZ','z2XTltuUmI1ZAg9YDc1Myxn0','qMfPy2H1yw4Ttti','qgnMl2fPC2LUz2fWB3jLl2DLBw1HlxnLys1SAw9Ulxy0lti3yI1PDa','BwLZDhjHBgfPl2rLDNn0CMfSltiTmtiZyI1PBNn0CNvJDc0YnteY','uxDLBJmUns0Yn0iTtwfYDMLUlurqtY1wmI1ezxjLC3rYAwn0zwq','z2vTAw5Plw9TBMKTzMXHC2GTChjLDMLLDW','z2vTAw5PltiUmc1WCM8TCMvHC29Uzxi','z29Vz2XLl2DLBwLUAs0ZlxbYBY1PBwfNzq','ywXPyMfIys9XD2vUmY0YmZvIlweYmMiTDgHPBMTPBMC','zhvVlwnOyxqTB3b1CY00ltG','BwLZDhjHBgfPls1TAxn0CMfSlw1LzgL1Bs1PBNn0CNvJDa','y29TBwfUzc1HlxzPC2LVBI0WnY0Ymdi1','C3bLywTSzwfZAc9cAwvSAwSTmtfclxyZlJaTsw5ZDhj1y3q','yxuUyw50AhjVCgLJlMnSyxvKzs1OywLRDs00ltuTmJaYnteWmdeTDJe6ma','BwLZDhjHBc9JB2rLC3rYywW','BNzPzgLHlM5LBw90CM9Ulw5HBM8TmtjIlxyY','Bw9VBNnOB3rHAs9JAgf0lwnVBxbSzxrPB24VBw9KzwXZl0TPBwKTsZjFnG','y29OzxjLl2nVBw1HBMqTCG','B3bLBMfPl2DWDc1PBwfNzs0X','BMvTB3rYB24TBMfUBY0XmMiTDJiTDMW','y2XHDwrLlw9WDxmTnc01ltiWmJuXmtaX','uxDLBI9rD2vUmY00qI1cyxnL','B3bLBMfPl2DWDc01','z2vTAw5PltiUns1WCM8TChjLDMLLDY10Dhm','yxP1CMuTy29NBML0AxzLlxnLCNzPy2vZ','y2XHDwrLltqTns1ZB25Uzxq','FM9Wzw5HAs9NChqTBwLUAs1SyxrLC3q','zgvLChnLzwSTCMvHC29UzxiTy2HLyxbLCG','uxDLBI9rD2vUmY1dB2rLCI00odbclueZnuiTsw5ZDhj1y3qTvhvYyM8','B3bLBMfPl2DWDc1VC3mTmJbIlw1Hyxm','BNzPzgLHlM5LBw90CM9Ulw5HBM8TmY0Zmgi','z29Vz2XLl2DLBw1HltmTmtjIlwL0','Bwv0ys1SBgfTys9mBgfTys0ZlJiTmuiTsw5ZDhj1y3q','zhvVlwnOyxqTz3b0ltuTnc1TAw5P','D3jPDgvYl3bHBg15CMeTEdu','D29YA2vYCY1HAs9ay2yVBwv0ys9SBgfTys0ZlJiTmwiTAw5ZDhj1y3q','z3b0ltuTna','EMfPlwDSBs00lJC','Bwv0ys1SBgfTys9SBgfTys00lw1HDMvYAwnR','FNGTywKVz3jVAY1SyxrLC3q','A3DHAxbPBg90l2THDc1JB2rLCI1WCM8TDJe','z3b0ltuUnc1Uyw5V','z2vTAw5PltiUns1MBgfZAc10Dhm','DgvUy2vUDc9iDw55DwfUlu1ultDc','C3vIy29UC2nPB3vZl2DSBs01lJi','BMv4lwfNAs9UzxGTBJiTChjV','zgvLChnLzwSTywKVrgvLCfnLzwSTvJmUms1uzxjTAw51CZP0AgLUA2LUzW','CxDLBJmUns0XmJjI','uxDLBI9rD2vUmY0ZmKiTvevf','CxDLBI9XD2vUmI41lxzSltCYyI1PBNn0CNvJDa','twv0ys1mBgfTys0ZxZeToeiTsw5ZDhj1y3qTr0DvrG','z3jVCq','B3bLBMfPl2DWDc01lwnOyxqTBgf0zxn0','BwLUAxn0CMfSltnIlti1mti','Aw50zwXSzwn0ltm','EMfPlw9YzY9hte0TnvyTvhvYyM8','z3jVAY00lJiWlw11BhrPlwfNzw50ltaZmdK','BNzPzgLHl2XSyw1HltnFmI1Uzw1VCMv0CMLLDMvYltmWmg0Tzw1IzwqTDJe','yw50AhjVCgLJl2nSyxvKzs0ZlJuTC29UBMv0','z2XTlwzVCI1JB2rPBMC','uxDLBI9rD2vUmY1wtc0YmZvclueYmKiTsw5ZDhj1y3q','BwLUAw1HEc9TAw5PBwf4lw0YlJC','Bwv0ys9TDxnLlxnWyxjRlteUmq','B3v0Chv0','BxvZzs1ZCgfYAY0XlJe','nty5nJi4v2zhC0Xe','EMfPlw9YzY1NBg0Tnc43lwzSyxnO','zhvVlwnOyxqTAgfPA3uTnc01','BwLZDhjHBgfPl21PC3rYywWTBgfYz2uTmJqXmq','AhKZ','rgvLCfnLzwSTvJqTrMXHC2G','Agy6B3bLBMfPl2DWDc1VC3mTmtiWyG','B3bLBNjVDxrLCI9HDxrV','qgnMl21VB25ZAg90ywKVA2LTAs1RmI43lwnVzgu','zgvLChnLzwSVzgvLChnLzwSTB2nY','B3bLBMfPl2DWDc01lwnOyxq','CgvYCgXLEgL0Es1Hz2vUDa','CxDLBI9XD2vUmY0YmZvIlweYmMiTDgHPBMTPBMCTmJuWnW','AhvNz2LUz2zHy2u','CxDLBJmTns0Yn2i','yw50AhjVCgLJls1JBgf1zguTnc42lw9WDxm','BwLJCM9ZB2z0l3bOAs0ZlJuTBw9LlwLUC3rYDwn0','z2vTAw5PltiUmc1MBgfZAc10AgLUA2LUzY1LEhaTmtiXoq','CxDLBJm1ltm5n2iTyte3yG','zhvVlwnOyxqTB3b1CY00lty','CxDLBI9XD2vUmY42lxbSDxm','CxDLBJmUns0ZnwiTytnIoNrOAw5RAw5N','EgfP','twLUAu1HEefjl01PBMLnyxGTttiUns1Myxn0','yMXHy2STzM9Yzxn0lwXHyNmVzMX1Ef8YlwTSzwLUltrI','z2XTltqTywLYEa','Bwv0ys1SBgfTys9SBgfTys0ZltCWyI1PBNn0CNvJDa','vevfl2DLBw1Hnc0Zmwi','z2XTltu','B3bLBMfPlwDWDc01lw5HBM8','CxDLBI9XD2vUmY12Bc0ZmgiTytnIlwLUC3rYDwn0','CxDLBI9XD2vUmY41ltm5n2iTyte3yG','z3b0ltuUmI1WCM8','z3jVAY00lJiWlwjLDgeTmdmWos1UB24TCMvHC29UAw5N','AgvYBwvZltiTChjVlwXSyw1HltmTogi','DgvUy2vUDc9OEtm','BwvNyw5VDMe','z2vTAw5PlwzSyxnOlwXPDguTBgf0zxn0','C3rLCc1Yms12lw1PBMK','Aw5Jzxb0Aw9Ul21LCMn1CNKTy29KzxiTC21HBgW','CxDLBI5XD2vUmY0ZmMiTDJe6ma','qgnMl29Wzw5HAs9NChqTB3nZltiWyG','A2LSBY1HDxrVl3nTywXS','zgf0ywjYAwnRCY1JBgf1zguTB3b1CY00lty','z2XTlxOXlwfPCG','BwLZDhjHBc9TAxn0CMfSlxnTywXSlwXHDgvZDa','BhLUA3iTyxv0BW','BwLZDhjHBc9KzxzZDhjHBc0YnteY','z3b0ltrVlw1PBMKTC2vHCMnOlxbYzxzPzxC','yMXHy2STzM9Yzxn0lwXHyNmVzMX1Ef8XlxnJAg5LBgW','zMfZDgLUBY9NBgLNDwfYzc1mte1hDwfYzhjHAwXZltmWme0','B3bLBMfPlwDWDc00lJe','BwLTBY12mI01oMzYzwu','EgLHB21Pl21PBw8TDJiTzMXHC2GTDgHPBMTPBMCTB3jPz2LUywW','Bwv0ys9SBgfTys00lw1HDMvYAwnRlte3yI0XmJHLlwLUC3rYDwn0','zgvLChnLzwSTDJqTChjV','EMfPlw9YzY9hte0Tnc41','B3bLBMfPl2DWDc01lJyTDgvYCMeTChjV','yw1HEM9Ul25VDMeTBwLJCM8','uxDLBI9rD2vUmY0XlJDclujHC2u','CMvSywnLl3jLBgfJzs1HChbSEs0Z','zgvLChnLzwSVzgvLChnLzwSTy2HHDa','CxDLBI9XD2vUmY41ltm1yI1Hm2i','CxDLBI9XD3eTmZjIlxbYzxzPzxC','zMfZDgLUBY9NBgLUzxiYlxbYAxzHy3KTzMLSDgvYlvbjss1TDwX0Aq','yxv0BY1TB2rLBc1ZDgfUzgfYza','zgLNAxrHBg9JzwfU','ywXPyMfIys10B2TLBI1WBgfUlwnU','y2XHDwrLlwHHAwT1ltqTns1MCMvL','B3bLBMfPl28X','C29UyxiTCMvHC29UAw5N','BwLUAw1HEa','y2XHDwrLlw9WDxm0ltG','BwLZDhjHBc1ZBwfSBdmUmG','y29NBML0AxzLy29TChv0yxrPB25Zl2rVBhbOAw4TmI45lJiTCxDLBJiTnZjI','z2vTAw5PltiUns1MBgfZAc1WCMv2Awv3lxr0CW','ywXMCMvKChjVCY9JB2rLBgXHBweTn2iTAw5ZDhj1y3qTC29SAwrPDhK','DxmUyw50AhjVCgLJlMnSyxvKzs1VChvZltqTms0Ymdi1mdGWns12mtOW','s0jmywiVA2iTD2HPC3bLCI1SyxjNzq','z29Vz2XLl2DLBwLUAs0ZlJeTChjVlxbYzxzPzxCTy3vZDg9TDg9VBhm','CMf0zxm','EgfPl2DYB2STnc4XlwzHC3qTBM9UlxjLyxnVBMLUzW','B3bLBMfPl28Zlw1PBMK','CxDLBI9XD2vUmI41ltDIlwLUC3rYDwn0','z29Vz2XLl2DLBwLUAs0ZlxbYBY1PBwfNzs1WCMv2Awv3','C3rLCgz1BI9ZDgvWltm','CxDLBI9XD2vUq29KzxiVBw9KzwXZl1f3zw4ZlunVzgvYltmWqI1bm0iTsw5ZDhj1y3q','BxvZzs1ZCgfYAY0Xlte','C3rLCgz1BI9ZDgvWltmUns1MBgfZAa','uxDLBJmUns0Yn0iTqMX1zvn0yxiTDJiTrgvYzxn0CMLJDgvK','B3bLBMfPl2DWDc00','ywXPyMfIys9XD2vUltmTmZbI','CxDLBJmTnI0ZnwiTytnI','B3bLBMfPlMDWDc1VC3mTmJbIlte6ma','BwLZDhjHBgfPl01PC3rYywWTu21HBgWTnc0XmtLclti2mdm','B3bLBMfPl2DWDc01lJeTy29KzxGTBwLUAq','yw1HEM9Uls1UB3zHlxbYBW','BwLZDhjHBc1JB2rLlwfNzw50lwXHDgvZDa','zxjUAwuTns4XoNrOAw5RAw5N','B3bLBMfPlwDWDc01','EMfPlwnVzgLUzY1WBgfU','BwLUAw1HEc1TmW','CxDLBI9XD2vUmY12Bc04yI10AgLUA2LUzW','CM91DguTBgXT','y29Kzxn0CMfSlti1mde','z3jVAY00ltiWlwjLDgeTmdmWos1YzwfZB25PBMC','BwLZDhjHBgfPl21PBMLZDhjHBc04yI0YnteY','uhjVl2rLzxbZzwvRlwfPl0rLzxbtzwvRlvyZ','yMfHAs9Iz2uTBtm','z2vTAw5PltiUmc1MBgfZAc1LEhaTAw1Hz2uTz2vUzxjHDgLVBG','zgv2C3rYywWTBwvKAxvTlti1mdC','y2fJAgvdCMvHDgLVBKLUChv0vg9Rzw5Z','A2LSBY1HDxrVl2jHBgfUy2vK','z29Vz2XLl2DLBw1HltqTrtrclwL0','vevfl2XSyw1HmY0ZltCWyG','BNzPzgLHlw5LBw90CM9UltmTC3vWzxiTmtiWyG','y2fJAgvszwfK','D29YA2vYCY1HAs9ay2yVBwv0ys9SBgfTys1NDwfYzc0ZltHI','ywnJB3vUDhmVzMLYzxDVCMTZl3jVDxrLCNmVz2XTltvWmI1Myxn0','ywXPyMfIys9XD2vUmY1JB2rLCG','BZeTChjV','Bw9VBNnOB3rHAs9RAw1PlwXHDgvZDa','BNzPzgLHl2XSyw1HltnFms1Uzw1VDhjVBI1ZywzLDhKTz3vHCMqTogiTDJm','CxDLBI9rD2vUmI41lunVzgvYltmYqI1jBNn0CNvJDa','BwLZDhjHBc1SyxjNzs0YndeX','D2fMzxiUywK','uxDLBI9rD2vUmI41ltDcluLUC3rYDwn0lvr1CMjV','z29Vz2XLl25HBM8TyMfUyw5HlxbYBW','Ec1HAs9NCM9RltqUmW','BMvTB3rYB24TmY1ZDxbLCI1MCMvL','CgL4DhjHBc1SyxjNzs1SyxrLC3q','zhvVlwnOyxqTz3b0ltuTna','CgHPltqTCMvHC29UAw5N','CgfTyw5Zzwf1l09Wzw5szwfZB25PBMCTtMvTB3rYB24TmZjc','zhj1BG','u3rLzwXZA3vSBc9mmY4Zlu1tluv2ywXLyMLZltCWyG','C2fRyw5H','yw50AhjVCgLJl2nSyxvKzs1OywLRDs0Z','BMfUBY1NChq','B3bLBMfPl2DWDc01lwLTywDLlw1PBMK','zxjUAwuTns4X','u2fVmtbll0WZlJeTnZbcluv1CNLHBguTDJiUmG','BMfUB2DWDc9JB2rPBMCTCM91DgvYoMHPz2G','ndqYntC1CK9jqLbJ','BwLZDhjHBc1ZBwfSBc0Zms0YngiTAw5ZDhj1y3q','BwLZDhjHBgfPl21PC3rYywWTC21HBgWTnc0XmtLIlti2mdm6DgHPBMTPBMC','DgmTy29Kzs1SyxrLC3q','twLUAu1HEc1nmI4X','z3b0ltuUnc1TAw5PltiWmJyTmdmTmtC','yw50AhjVCgLJl2nSyxvKzs1OywLRDs1SyxrLC3q','zhvVlwnOyxqTzMfIBguTnq','B3jJyxjVDxrLCG','EMfPl2DSBs01DI10DxjIBW','z2vTAw5PlwzSyxnOlwXHDgvZDa','tMvTB3rYB24TmY1oyw5Vlu9TBMKTmZbclvrfrq','Bw9VBNnOB3rHAs9RAw1PlwSY','veHvre0Vr0XnltqTmZjclta0mtq','BwLZDhjHBdqTmte5yG','yxuUyw50AhjVCgLJlMnSyxvKzs1VChvZltu','y2XHDwrLltmTns1OywLRDs0Ymdi0mtaYmG','qgnMl21PC3rYywXHAs9TAxn0CMfSlxnTywXSltmUms0YngiTAw5ZDhj1y3q','DMvUAwnLlxvUy2vUC29YzwqTCM9Szs1WBgf5','A2LTAs1RmI43lwnVzguTBML0CM8','uxDLBJmUns0Yn0iTsw5MCMfJzwXLC3rPywW','BMvVBG','BwLJCM9ZB2z0l3bOAs0Zlw1PBMKTngSTAw5ZDhj1y3q','zgvLChnLzwSVzgvLChnLzwSTBgf0zxn0','Dgv4Dc1LBwjLzgrPBMCTmY1SyxjNzq','z3b0ltuUmY1JB2rLEc1ZCgfYAW','z2vTBwe0ltmXyG','tM91C1jLC2vHCMnOl0HLCM1LCY00ltCWqG','z29Vz2XLl2DLBw1HltiTmMiTAxq','zgv2C3rYywWTBwvKAxvTlwXHDgvZDa','z3jVAY00ltiW','A2LTAs1RmI03lwnVzguTAgLNAhnWzwvK','AhvPAhvPlwfPl1f3zw4YlJuTmZjcluLUC3rYDwn0lwfIBgL0zxjHDgvK','ywjSAxrLCMf0Aw9UlwfP','BhvJAwrXDwvYEs1Hz2KTmdeTC3DPzNq','z2vTAw5PltmTnI1MBgfZAa','Bw9YCgGTDJmTBgfYz2u','BwLTBY12mI41','CxDLBJiUns1JB2rLCI03yI1Myxn0','yw50AhjVCgLJl2nSyxvKzs1VChvZltqTms0Ymdi1mdGWnq','BgXHBweTmY4ZltCWyG','z29Vz2XLl2DLBwLUAs0ZlJuTzMXHC2G','EMfPlwDSBs01lJe','C3rLCgz1BI1HAs9ZDgvWltmUns1MBgfZAc0YnJaZ','BwLZDhjHBgfPl21PC3rYywWTBMvTBW','zgvLChnLzwSTCJeTzgLZDgLSBc1XD2vUltDI','BgXTz2f0zxDHEq','CxDLBI9XD2vUmI41lwnVzgvYltmYyI1PBNn0CNvJDa','CxDLBI1TyxrOlxbSDxm','qgnMl21LDgeVBgXHBweTmY4XltHIlwLUC3rYDwn0lwzWoa','CxDLBJmTns1WBhvZ','B2zVEa','D29YA2vYCY1HAs9ay2yVBxLZAgvSBc1HAs9TzwXVDhrZ','C2fWlwfPlwnVCMu','EgLHB21Plw1PBw8TDJiUnq','z29Vz2XLlwDLBw1HltqTmZfIlwL0','AgvYBwvZlwXVDW','CgHPltq','B3bLBMfPl2DWDc00ltaZmtq','Ec1HAs9NCM9RltqUms1Myxn0','BMv1CMfSD2f0Da','B3bLBMfPl2DWDc00BY1TAw5P','D29YA2vYCY1HAs9ay2yVBwLZDhjHBgfPl21PC3rYywWTC21HBgWTmY4Xlti0yI1PBNn0CNvJDa','z2vTBweTnc0ZmwiTAxq6zNjLzq','yMfPBgLUzW','EI1HAs9NBg0TnxyTDhvYyM8','CgHPltqTBxvSDgLTB2rHBa','BNzPzgLHl25LBw90CM9UltmTBMfUBY0ZmgiTytnIoMzYzwu','ywKYms9Qyw1Iys1SyxjNzs0XlJC','zgvLChnLzwSTDg5NlxiXDdiTy2HPBwvYyq','zgvLChnLzwSVzgvLChnLzwSTDJmUms10zxjTAw51CW','Bw9VBNnOB3qVA2LTAs1RmW','y2XHDwrLlxnVBM5LDc00lJy','CxDLBI9XD2vUmY0ZmgiTytnIlwzWoa','y2XPBMuTCgfZCY9KzwvWC2vLAY12nc1MBgfZAa','ywXPyMfIys9XD2vUmY43lxbSDxm','y29OzxjLl2nVBw1HBMqTCI0Woc0Ymdi0','BwLZDhjHBc9TAw5PC3rYywWTmtrI','z29Vz2XLl2DLBwLUAs0ZlJuTzMXHC2GTDgHPBMTPBMC','C2LSAwnVBMzSB3CVzgvLChnLzwSTDJmTmdmYna','AMfTyMeTBgfYz2uTms43','ywLODwjTAxG','ne5QzhbYCG','EMfPlw9YzY9NBg0TBgf0zxn0','Ag9SBZmTmZvIlweZyG','Aw50zMXVyxqVBxvSDgLSAw5NDwfSlwu1lwXHCMDLlwLUC3rYDwn0','EI1HAs9NBg0Tnc41lwfPCG','uMLUzY0Xva','B3bLBMfPl2DWDc00BW','ywXSzw5HAs9VBg1VltmTmZjIlxrOAw5R','BMvTB3rYB24TmY1ZDxbLCI0XmJbIlweXmMi6zNjLzq','r2fSCMLVBLnVzNr3B3jRCY9ntI1mB29ZzunHBM5VBI0XmKiTDJe','B3bLBMfPl2DWDc00lJeTBwLUAq','B3bLBMfPlwDWDc01nI1ZB2WTChjV','Bwv0ywrHDge','yw50AhjVCgLJl2nSyxvKzs0ZltuTAgfPA3u','EMfPlw9YzY9hte0Tns4Xlvrfrq','yw1HEM9UlM5VDMeTmI1SAxrLlxyXoJa','EMfPlw9YzY9NBg0Tnc42','zxuUyw50AhjVCgLJlMnSyxvKzs1ZB25UzxqTnq','CxDLBJmTDMWTmZbIlweZyI1PBNn0CNvJDa','zgf0ywjYAwnRCY1NChqTns00lw1PBMK','z2XTltqUns1MBgfZAdPMCMvL','twv0ys1mBgfTys0ZlteToeiTsw5ZDhj1y3qTrLa4','ywXPyMfIys9XD2vUmY42lwzSyxnO','zgvLChnLzwSVzgvLChnLzwSTDJqTChjVlwnOzwfWzxi6DgHPBMTPBMC','BNzPzgLH','uxDLBJnFns05qI1rnf9lx00','C3rLCc0Ylw1PBMK','zMfZDgDWDa','CxDLBJmUns0XmJjIlweXmgi6DgHPBMTPBMC','z3b0ltqTDhvYyM8','BwLZDhjHBc9TAxn0CMfSlw1LzgL1Bq','uxDLBI9rD2vUmY0YmZvclueYmKi','uxDLBJmUns0Yn0iTv3jPDgvYlurLCMvZDhjPy3rLzc1mAxrL','z3jLzY0YlxvSDhjH','Aw5RBgLUzW','z2XTltqUnY1MCMvL','Bw9VBNnOB3rHAs9RAw1PlwSYlta5mdu','CxDLBI9XD2vUmY12Bc0YmZvIlweYmMiTAw5ZDhj1y3q','yMfPzhuVzxjUAwuTnc41ltiXyI1Hm2iTDgHPBMTPBMC','z2vTAw5Pl2DLBwLUAs0YlJuTzMXHC2GTBgL0zq','zgf0ywjYAwnRCY1NChqTns01','zgvLChnLzwSTDJqTzMXHC2GTzNjLzq','BwLZDhjHBc5KzxzZDhjHBc0YlteYm2i','BwLJCM9ZB2z0l3bOAs00lw11BhrPBw9KywWTAw5ZDhj1y3q','r0XnltuUmG','z2vTAw5PltiUns1MBgfZAc1WCMv2Awv3lta5ltiWmJuTDgHPBMTPBMC','Bwv0ys9LC21MB2XK','zgvLChnLzwSVzgvLChnLzwSTCJeTDhvYyM8','B3bLBMfPlw8Z','z29Vz2XLl2DLBwLUAs0ZlJeTzMXHC2GTBgL0zs1PBwfNzq','vevfl2DSBs00lJC','DxmUyw50AhjVCgLJlMnSyxvKzs1ZB25UzxqTnc02','Bwv0ys9SBgfTys0ZlJeTogi','vevfl2DLBw1HltmTmJDIlwL0','zgv2C3rYywWTC21HBgWTmJuWnW','yw50AhjVCgLJls1JBgf1zguTnc42lxnVBM5LDa','D29YA2vYCY1HAs9ay2yVywK0yMHHCMf0l2LUzgLJDhjHBNmYlwvUlwLUzgLJltfc','CxDLBJmTnI1WBhvZ','z2L0AhvIlwnVCgLSB3q','B3bLBMfPl28Zlw1PBMKTAgLNAa','FM1VB25ZAg90ywKVA2LTAs1SyxrLC3q','twLUAu1HEc9nAw5Ptwf4lu0YlJC','BwfNAxn0CMfSlxnTywXS','C3rLCgz1BI1HAs9ZDgvWltmUnY1MBgfZAa','z29Vz2XLl2DLBwLUAs0YlJuTzMXHC2GTBgL0zs1WCMv2Awv3lta5ltiWmJu','BwLJCM9ZB2z0l3bOAs0ZlJuTBwLUAs1PBNn0CNvJDa','C2fVmtbRl2WZlJeTzxvYEwfSzs03mgi','zxuUyw50AhjVCgLJlMnSyxvKzs1VChvZltqTns0Ymdi1mteWms12mtOW','yMXHy2STzM9Yzxn0lwXHyNmVzMX1Ec4XlwrLDG','B3bLBMfPl2DWDc1VC3mTmJbI','DgHPBMTPBMDTywnOAw5LCW','yw50AhjVCgLJl2nSyxvKzs1VChvZltqUoc1Myxn0','D29YA2vYCY1HAs9ay2yVyMfHAs9Iz2uTBtm','BwvNyw5VDMeTywKVBwfUDgeTBwLUAs0XlJa','B3bLBNjVDxrLCG','z2XTlxOXlwfPCNG','veHvre0Vr0XnltqTouiTmdqXna','BNzPzgLHl25LBw90CM9Ulw5HBM8TmtjIlxyYlxzSoMzYzwu','AgvYBwvZltqTnda1yG','EgLHB21PlxrVA2vUlxbSyw4Tyw1Z','DxmUyw50AhjVCgLJlMnSyxvKzs1ZB25UzxqTnc01ltiWmJuWoti5lxyXoJa','yxrVBwLJlwnOyxq','BwLZDhjHBgfPl21PEhrYywWTohG3yI1PBNn0CNvJDc12mc4X','z2XTltuTzNjLzq','BNzPzgLHl3jPDMeTDhjHBNnSyxrLltrIlwLUC3rYDwn0lxyXxZe','C3rLCgz1BI9ZDgvWltmUnY1MBgfZAdP0AgLUA2LUzW','z3jVAY0Z','y2XHDwrLlwHHAwT1ltqUnq','r0XnltqUnI1ezxjLC3rYAwn0zwqTDJu','Bwv0ys1SBgfTys0ZlJeTogiTAw5ZDhj1y3q','z3jVAY0Zlw1PBMK','EI1HAs9NBg0TnxyTDhvYyM86DgHPBMTPBMC','BwLTBY12mI41lxr0CW','z29Vz2XLlMDLBw1HltmTmtjIlwL0','B3bLBMfPl2DWDc01lJeTmJaYns0Xms0XmW','B3bLBMnVzgu','yMfPzhuVzxjUAwuTnc41lxzSlti4yI1Hm2iTDgHPBMTPBMC','B3bLBMfPl2DWDc01lJmTAw5ZDgfUDa','BNzPzgLHl25LBw90CM9Ulw5HBM8TowiTDJi6zNjLzq','sMv0qNjHAw5Zl01LBgX1BtiTmtjclueYlJvcluLUC3rYDwn0','CxDLBJiUns12Bc03mMiTAw5ZDhj1y3q','yw50AhjVCgLJl2nSyxvKzs1VChvZltqUnZP0AgLUA2LUzW','BwLZDhjHBc5TywDPC3rYywWTC21HBgWTmJuWoq','y2XHDwrLlw9WDxmTnc0X','z3b0ltq','Bwv0ys9SBgfTys00lw1HDMvYAwnRlte3yI0XmJHLlwLUC3rYDwn0lw1Hyxm','DxnHz2u','uMvHzhLbCNqVtvmZlJiTvgHLlu9TzwDHlurPCMvJDgL2zs0YneiTvw5ZBg9WlxyYlJa','BwLZDhjHBc9TAw5PC3rYywWTogi','z2XTltqUnNyTzMXHC2H4','y29KAw5Nlw1PBMLTyxGTBtiUnW','yw1HEM9Ul25VDMeTChjLBwLLCI12mq','EI1HAs9NBg0Tnc42DI1MBgfZAa','z3b0ltuTBwLUAq','y2XHDwrLlw9WDxmTnc02lxrOAw5RAw5N','y29KAw5Nlw1PBMLTyxGTBtiUnY1OAwDOC3bLzwq','ywXPyMfIys1JBG','A2LTAs1MB3iTy29KAw5N','B3bLBMfPlwDWDc01lJqTBMfUBW','FMfUDgHYB3bPyY9JBgf1zguTC29UBMv0lwXHDgvZDa','zgf0ywjYAwnRCY1JBgf1zguTB3b1CY00ltC','B3bLBMfPl2DWDc00BY1HDwC','Bwv0ys1SBgfTys9mBgfTys0ZlJeTnZbcluLUC3rYDwn0','D29YA2vYCY1HAs9ay2yVyMfHAs9Iz2uTyMfZzs1LBI12ms41','uxDLBI9rD2vUmY41lvbSDxm','zgf0ywjYAwnRCY1NChqTns1TAw5P','qgnMl3PHAs1VCMCVz2XTltqUnY1MBgfZAa','Bwv0ys1SBgfTys0ZltCWyI1PBNn0CNvJDa','yNL0zwrHBMnLlxnLzwqVC2vLzc0XlJy','y2XHDwrLltmUnY1ZB25Uzxq','yw1HEM9Ul25VDMeTChjVlxyX','CxDLBI9XD2vUmY12Bc0ZmMiTAw5ZDhj1y3q','ywTPlwLV','z2vTAw5PltiUns1MBgfZAc1WCMv2Awv3lta0lte3oNrOAw5RAw5N','BMvTB3rYB24TmY1Uyw5VltmWyG','BM92AxrHl2DSBs01','zxuUyw50AhjVCgLJlMnSyxvKzs1OywLRDs00ltuTmJaYnteWmdeTDJe6ma','zgvLChnLzwSTCJeTzgLZDgLSBc1XD2vUlteTnwi','BhLYAweTmY1JBgLWlxbYzxzPzxC','B3bLBMfPlMDWDc01lJyTDgvYCMe','BgvHCM5SBs0XlJuTChjVlwv4CgvYAw1LBNrHBa','yw50AhjVCgLJl2nSyxvKzs0ZlJuTAgfPA3u','zgvLCgLUzNjH','CxDLBI9rD2vUmY0YmZvclueYmKiTsw5ZDhj1y3qTmJuWnY1uruu','B3bLBMfPlw8Zlw1PBMK','Aw50zxjMyxPLl2LUDgvYzMf6zs1IzxrH','BwLUAw1HEc9TAw5PBwf4lw0ZoNrOAw5RAw5N','z2vTAw5PlxbYBY1SyxrLC3q','z2vTAw5Plwv4Cc0XmJa2','BwLUAxn0CMfSltHIlti1mti','vevfl2rLzxbZzwvRlxyZlJi','Cg9VBhnPzguVBgfNDw5HlxHZlJi','CMLUzY0YlJyTmxqTzNjLzq','zxzYB2m','CxDLBI1PBwfNzq','z2vTBweTnc0Zmwi','AhvUExvHBI10DxjIB3m','Dw5KAtK1l3jLBw0TC2XLCNaTBdiTmtnI','rvzblvvosvqTmdeVrvzblvf3zw4YlJuTnZjclxyWlJi','zMfZDhjVDxrLCG','A3DHAxbPBg90l2THDc1JB2rLCI1HAxiTDJiUnq','BwLZDhjHBgfPl2rLDNn0CMfSlw1LzgL1Bq','A2LTAs1RmI02oMzYzwu','B3bLBMfPlwDWDc1PBwfNzs0X','ANaUyw50AhjVCgLJlMnSyxvKzs1VChvZltqToa','B3bLBMfPl2DWDc00lxr1CMjV','B3nTB3nPCY9VC21VC2LZlxn0CNvJDhvYzs0WlJzI','y2XPBMuTCgfZCY9TAw1VlxyYlJuTChjV','zgvLChnLzwSTy2HHDc1JAgvHCgvY','CxDLBJiTns12Bc0ZmMiTAw5ZDhj1y3q','B3bLBMfPl2DWDc1HDwrPBY1TAw5P','ywXPyMfIys9XD2vUmY1JB2rLCI1WBhvZ','BwLZDhjHBc1TzwrPDw0TmY41','BwLUAw1HEc1TmJC','yNL0zwrHBMnLlxnLzwqVC2vLzc0YlJaTBwLUAq','B3bLBMfPlw8X','CgL4DhjHBc0XmMiTmJqWoq','BNzPzgLHl3jLCMfUAY1Xys1TAxn0CMfSltrI','CM91DgLUzY1YDw4','CxDLBI1WBhvZlwnOyxjHy3rLCI1Qyq','y2XHDwrLlw9WDxmTnc0XltiWmJuWoda1','tgf0Axr1zgvhyw1LCY9xyxLMyxjLCI1myxjNzs03meiTtgXHBweTmY4Z','BwLUAw1HEc9TAw5PBwf4lw0Z','D2fUmI0YlxqYDI1HmtrI','BwLUAw1HEgfPl2nOyxqTy29TCgXLDgLVBI9TB2rLBhmVtwLUAu1HEc1nmL81lwHPz2GTDgHYB3vNAhb1Da','yxP1CMuTz3b0ltrVlw1PBMK','D29YA2vYCY1HAs9ay2yVzMfJzwjVB2SVyMfYDc1SyxjNzs1JBM4','yw50AhjVCgLJls1JBgf1zguTnc44lw9WDxm','vevfl3f3zw4ZlJyTmZvIlweZyI11BMnLBNnVCMvK','BwLZDhjHBgfPl21PC3rYywWTBgfYz2uTmJqWnW','B3bLBMfPlwDWDc01mI1JB2rLEa','y29KAw5NlwDSBs01lJe','uxDLBI9rD2vUmY1fBwjLzgrPBMCTnei','zgvLCgnSyxvKzq','uxDLBJmUns0Yn0iTuNbstwf4lxyX','BwXHyM9UBMuVtMv1CMfSrgfYzwrLDMLSltHclwfIBgL0zxjHDgvK','yw50AhjVCgLJl2nSyxvKzs1ZB25UzxqTnc01ltiWmJuWoti5','zw1WAxjPB2XHyNmVzgvLChnLzwSTDJqTChjVlwvS','yw50AhjVCgLJl2nSyxvKzs1ZB25UzxqTmY43','BwLZDhjHBc9KzxzZDhjHBc1ZBwfSBc0Y','CMvHC29UAw5Nvg9Rzw5Z','Bwv0ys1SBgfTys9SBgfTys1NDwfYzc00lteYyG','B3bLBMfPl2DWDc00BY0Ymdi0lta4lta2','ywXSlw1PBMKTBg0TBdyTDJi','BwLZDhjHBgfPl21PC3rYywWTBwvKAxvTltm','DxbZDgfNzq','B3bLBMfPl28Z','zhvVlwnOyxqTz3b0ltuTmI1JB2rLEa','Aw5JBhvZAw9UywKVBgLUzY0ZlJaTzMXHC2GTzNjLzq','ywLVBI1SywjZl2fPB24TCNaTBgXHBweTmY4XltHI','BNzPzgLHl05LBw90CM9UlunHC2nHzguTmI0ZmeiTqtnc','D3jPDgvYlNbHBg15CMeTEduTDJe6ma','zg1PBMqVzg1PBMqTms1TAw5P','yw1HEM9Uls1UB3zHlw1Py3jV','zxnZzw50AwfSywKVuM5QlteTsw5ZDhj1y3q','z2XTltuUmG','BNzPzgLHl05LBw90CM9UltmTtMfUBY0ZmeiTqtnc','z3jLzY0Xlw1PBMK','z3jVAY00lJm','yw50AhjVCgLJl2nSyxvKzs0ZlJCTC29UBMv0','Aw5JBhvZAw9UywKVBgLUzY0YlJyTzMXHC2G','rw52B2LKl0XSyw1HltmUmduTtLqTu3rVCNLICMvHA2vYlu1PBMLZDhjHBc03mei','C29SyxiTChjVmW','Bw9KzwWTAwrLBNrPy2fS','uxDLBJmUns0Yn0iTqMX1zvn0yxiTDJmTrgvYzxn0CMLJDgvKluXPDgu','C2fVmtbll2WZltCWyI1LDxj5ywXLlxyYlJe','B3bLBNjVDxrLCI9WyxjLDg8Ty29Kzq','yw50AhjVCgLJls1JBgf1zguTmY1VChvZ','uhjVl3PHAs1VCMCVr0XnltuUmq','Bwv0ys9SBgfTys0ZlJmTnZbIlwLUC3rYDwn0','z3b0ltuTms1JB2rLEc1TAw5P','DM94DhjHBc1TAw5PltnI','y2XHDwrLlxnVBM5LDc01','z29Vz2XLl2DLBwLUAs0ZlJuTzMXHC2GTBgL0zq','C2HPC2eTywKVC2HPC2eTDJiTBgXHBweZlJmTnZbI','C2LSAwnVBMzSB3CVzgvLChnLzwSTDJmUmG','B3bLBMfP','BwLZDhjHBc9TAxn0CMfSlw1LzgL1Bs0Ynta1','yw50AhjVCgLJl2nSyxvKzs0ZlwHHAwT1','EMfPlw9YzY9HDxrVz2XTlxbOB25LltLIlw11BhrPBgLUz3vHBa','DgvUy2vUDc9ODw55DwfUlweXm2iTAw5ZDhj1y3q','z2XTltqTBg9UzW','yw50AhjVCgLJls1JBgf1zguTmY1ZB25Uzxq','uxDLBJiUns0ZmKiTrvzblxyWlJi','z2vTBweTnc1fneiTAxqTsve0x1Ht','rg9JDg9YlvnOB3rNDw4VtvmZlJiTmJrclu1Hz251Bs1eAwfTB25K','zgvLChnLzwSTywKVrgvLCfnLzwSTvJmTmq','y2XHCMLMywKVBwfPBI9TB2rLBhmVBw0TCg9SEs04yG','AMfTyMeTBwLUAs0XlJC','Bwv0ys9SBgfTys00lxnJB3v0lte3yI0XnMuTAw5ZDhj1y3q','yw50AhjVCgLJlwnSyxvKzs1VChvZltqUoa','B3bLBMfPlwDWDc01lJi','B3bLBMfPl2DWDc1YzwfSDgLTzs0YlJe','y2XHDY1SB3C','B3bLBMfPl2DWDc00BY1TAw5PlxnLyxjJAa','uxDLBJmUns0Yn0iTzwfYAwnHlurLCMvZDhjPy3rLza','EgLHB21Pl21PBw8TDJiUns1WCM8','DM9Sy2vUz2LUzs9KB3vIyw8TC2vLzc0YlJaTy29Kzq','zxjUAwuTEdeUms1WCMv2Awv3','y2XVDwrMBgfYzs1HAs1NyxrLD2f5','nLfSCfflsG','vgHLrhj1Bw1LCI9ZA3LMywXSltm2yI12mG','uhjVl2rLzxbZzwvRlwfPl0rLzxbtzwvRlvyZlJeTvgvYBwLUDxm','DgHLzhj1Bw1LCI9YB2nPBMfUDguTmtjI','vw5IywjLBc9nlvbYB21LDgHLDxmTmtrc','y29YDgvJCY9mBgfTys0ZlJmTnZbcluLUC3rYDwn0luzqoc1eEw5HBwLJ','C3rLCgz1BI1HAs9tDgvWltmUns1gBgfZAa','EMfPlMDSBs00lJCTzMXHC2G','EgLHB21Pl21PBw8TDJiTzMXHC2GTDgHPBMTPBMC','ywXPyMfIys9XD2vUmY1JB2rLCI1UzxH0','yw1IAwvUDa','B3bLBMfPl2DWDc0ZlJuTDhvYyM8TmtzR','z29Vz2XLl2DLBw1HltqTmJzIlwe0yI1PDdPMCMvL','u2fSzxnMB3jJzs9mBgfTys14tefnltiTnZbIlwzJlxi','Bwv0ys1SBgfTys9nzxrHluXSyw1HltmToeiTsw5ZDhj1y3qTtgL0zq','z2XTltuUmI1MBgv4','vgHLrhj1Bw1LCI9dEwrVBMLHlti0qI12mG','y2XHDwrLltmUns1ZB25UzxqTDJi','u2fVmtbll0WZlJmTnZbcluv1CNLHBguTDJiUmW','sw5MzxjTyxrPyY9ntI0XmKiTsw5MzxjVCI12mc4W','vevfl2DLBw1HltqTmJzIlwe0yI11BMnLBNnVCMvK','BwLZDhjHBc5TAw5PC3rYywWTmY0XngiTAw5ZDhj1y3q','BNzPzgLHl2XSyw1Hlw5LBw90CM9UlwvTyMvKlxzSltfIlxyY','y2XHDwrLltqUns1ZB25Uzxq','zgvLChnLzwSVzgvLChnLzwSTDJmUmI10AgLUA2LUzW','EhbLCNnVBMeTz3b0ltuUnq','zg91yMfVlxnLzwqTmI0WlxbYBW','z3jVAY00lJe','Cg9VBhnPzguVBgfNDw5HlxHZltiUmtPMCMvL','zgvLChnLzwSTCJeTzgLZDgLSBc1XD2vUlte0yG','y29OzxjLl2nVAgvYzs1JB21Tyw5Klwe','C2vLzc0XltGTmJuXmJi4','Bw9VBNnOB3rHAs9RAw1PlwSYlJu6DgHPBMTPBMC','B3bLBMfPlMDWDc01lJu','CxDLBI9XD2vUltiUns03yI1PBNn0CNvJDa','yMXHy2STzM9Yzxn0lwXHyNmVrKXvwc4YlwTSzwLUltrc','z29Vz2XLl2DLBwLUAs0YlJuTChjVlxbYzxzPzxCTmduTmdy','Ec1HAs9NCM9RltqUms1Myxn0lw5VBI1YzwfZB25PBMC','C2fYDMfTltmWyG','Bwv0ys1SBgfTys9nzxrHluXSyw1HltmUmY03meiTsw5ZDhj1y3q','y2XHDwrLlw9WDxmTnc10AgLUA2LUzZOZmJaWma','CgHPltqTBwLUAs1PBNn0CNvJDa','BwLZDhjHBgfPl3zVEhrYywWTC21HBgWTmJrIlti1mdC','yNL0zwrHBMnLl3vPlxrHCNmTms41ltDI','z3jVAY00ltiWlwjLDgeTmdmWos1UB24TCMvHC29UAw5N','B3bLBMfPlMDWDc01lJyTC29S','yw50AhjVCgLJl2nSyxvKzs1VChvZltqUnW','Aw5MBgf0zwjVDc9ntI0XmKiTtwfNlu1LBgWTuJe','BwLJCM9ZB2z0l3bOAs0Zlw1LzgL1Bs0XmJHRlwLUC3rYDwn0','BwLUAw1HEc9TAw5PBwf4lw0X','CxDLBI9XD2vUmY41lti3yG','z2vTBweTmY0XmMiTAxq','BwLJCM9ZB2z0l21HAs1KCY1Ymq','B3bLBMfPl2nOyxqTy29TCgXLDgLVBI9TB2rLBhmVz3b0lw9ZCY0XmJbIlwHPz2GTDgHYB3vNAhb1Da','y2XHDwrLlxnVBM5LDc00lxrOAw5RAw5N','BwLTBY12mI10Dhm','CxDLBI9XD2vUmY1JB2rLCI0Zmgi','C29VyJmXmJmVvMvPBgvKlunHBgXHlteYqG','BNzPzgLHl25LBw90CM9UltmTy29UDgvUDc1ZywzLDhK','AwjTlwDYyw5PDguVz3jHBML0zs00lJeTogi','zMfZDgLUBY9NBgLUzxiYlwjHC2uTDJe','zNjVz2jVDa','CxDLBI1KzwvWlxjLC2vHCMnO','z2vTBweTmY0Yn2iTAxq','z3jVAY00ltiWlw11BhrPlwfNzw50','zMLYzxDVCMTZlwfP','Bw9VBNnOB3rHAs9lAw1PluSYlJyTrMfZDa','Bw9VBNnOB3rHAs9RAw1PlwSYlxrOAw5RAw5N','yMfPzhuVCwLHBMzHBI1Vy3iTzMfZDa','CxDLBJmUns1WBhvZ','B3bLBMfPl2DWDc01lJmTy29KzxG','BwLUAw1HEc9TAw5PBwf4lw0YlJe','CgfKzgXLCgfKzgXLl3bHzgrSzw9JCI12Ba','Bwv0ys5SBgfTytqTC2nVDxqTmtDIlwLUC3rYDwn0lxyXoJa','EMfPlw9YzY1NBg0Tns0X','BM92ys0YlwXPDguTDJe','z3b0ltuTnI1SDw5H','EMvSzg9J','z2XTns4YlwzHC3q','vevfl2rLzxbZzwvRlxy0lxbYBW','CxDLBI1TyxrOlxr1CMjV','B3bLBMfPl2DWDc01lJuTAw5ZDgfUDa','uxDLBI9rD2vUmY41ltm5n0iTqte3qI1gudG','BMvTB3rYB24TmY11BhrYyq','EMfP','B3bLBMfPl2DWDc01lJuTChjV','AhvUExvHBI10mq','FMDVB2DSzs9Nzw1PBMKTzMXHC2GTBgf0zxn0','vevfl3f3zw4ZlJuTmJDI','CxDLBI9XD2vUmY0YmZvIlweYmMi','z3b0ltuUmY1JAgf0','BNzPzgLHl252lwvTyMvKy29Kzs03yI12mq','BgXHBwe','ywnJB3vUDhmVzMLYzxDVCMTZl3jVDxrLCNmVA2LTAs1RmNa2lxr1CMjV','zgvLChnLzwSVzgvLChnLzwSTy2HHDc12mY0WmZi0','z2vTAw5Pl2DLBwLUAs0YlJuTChjV','BwLJCM9ZB2z0l3bOAs0ZlJuTDMLZAw9UlwLUC3rYDwn0','EgfPl2DYB2STnc1Myxn0lw5VBI1YzwfZB25PBMC','zgv2C3rYywWTC21HBgWTmJuWnq','zxuUyw50AhjVCgLJlMnSyxvKzs1VChvZltu','D29YA2vYCY1HAs9ay2yVBw9VBNnOB3rHAs9RAw1PlwSYlJu','BgXHBweZlJmTnZbIlwLUC3rYDwn0','y2XHDwrLlw9WDxmTnc04','CxDLBI9XD2vUmY42lti3yG','y29OzxjLl2nVBw1HBMqTyq','rvzblvvosvqTmdeVrvzbluXmyu1bltmUmZmTnZbclxyWlJe','y29OzxjLl25VCNrOlw1PBMKTy29KztPMCMvL','BwLJCM9ZB2z0l3bOAs0Zlw1PBMKTmti4AY1PBNn0CNvJDa','D29YA2vYCY1HAs9ay2yVyMfHAs9Iz2uTCMvYyw5RzxiTyMfZzq','DhjPBML0Es1SyxjNzs1WCMv2Awv3lwzYzwu','EgLHB21PlxrVA2vUlxbSyw4TC2DW','BwvYy3vYEs1LzgL0lti','ywXPyMfIyq','A2LTAs1RmI0WnZeX','zgf0ywjYAwnRCY1NChqTns02lxrLCNjH','CxDLBI9XD2vUmY1UzxH0ltGWyI1Hm2iTDgHPBMTPBMC','BwLZDhjHBc52B3H0CMfSlw1PBMKTm2iTmJuWnW','zgvLChnLzwSTywKVrgvLCfnLzwSTvJmUmI1Myxn0','EwKTBgfYz2u','yw1HEM9Uls10AxrHBI1LBwjLzc10zxH0','uxDLBJmUns0Yn0iTrgvYzxn0CMLJDgvK','BwLZDhjHBc9KzxzZDhjHBc1ZBwfSBc0Ynta3','BNzPzgLHl25LBw90CM9Ulw1PBMKTngiTAw5ZDhj1y3q','D29YA2vYCY1HAs9ay2yVyMfHAs9Iz2uTBgfYz2uTzw4TDJeUnq','z2vTAw5PltiUmc1MBgfZAa','C2LSAwnVBMzSB3CVzgvLChnLzwSTCJeTmduYoa','BwLZDhjHBa','zgvLChnLzwSTywKVzgvLChnLzwSTB2nYl21VzgvSCY9ezwvWu2vLAY1pq1i','A2LTAs1RmW','zgvLChnLzwS','z29Vz2XLl2DLBw1HltnUluu0qI1PDa','qgnMl2rLzxbZzwvRlwfPl2rLzxbZzwvRlxiXlwrPC3rPBgWTCxDLBI0ZmMi','y2XHDwrLlw9WDxmTnc01','z29Vz2XLl2DLBwLUAs0ZlJeTChjV','z29Vz2XLl2DLBwLUAs0YlJaTzMXHC2GTBgL0zs0Wmde','yNL0zwrHBMnLl3nLzwqTms42','B3bLBMfPl280lw1PBMKTAgLNAa','y2XHDwrLlxnVBM5LDc00ltvamJaYnta5mJK','B3bLBMfPlwDWDc01lJqTChjV','B3bLBMfPl280lw1PBMKTzgvLCc1YzxnLyxjJAa','C3rLCc0ZlJuTzMXHC2GTmJyWmW','y2XHDwrLlwzHyMXLltu','y2XPBMuTCgfZCY9KzwvWC2vLAY12nc1WCM8','zxuUyw50AhjVCgLJlMnSyxvKzs1VChvZltqTnW','C2fVmtbll2WZms03mgiTzxvYEwfSzs12mI4Y','Agy6EMfPlw9YzY9hte0Tnc43luzSyxnO','Aw5Mzxj4','Bwv0ys1SBgfTys9SBgfTys00lw1HDMvYAwnRlte3yI0XmJHLlwLUC3rYDwn0lwzWoa','yw1HEM9Ul25VDMeTBgL0zq','uxDLBI9rD2vUmY1ozxH0ltGWqI1bm0iTvgHPBMTPBMCTzMfZDa','D29YA2vYCY1HAs9ay2yVCgzUzxqVCgXHBw8Tzw1IzwrKAw5NltfI','D29YA2vYCY1HAs9ay2yVz29Vz2XLl2DLBw1HltmTmtjIlwL0','C3rLCgz1BG','z2XTltqUnW','zgf0ywjYAwnRCY1NChqTns00lw5HBM8','C3DPDgnOCg9PBNqVCM91DgvY','uxDLBJmUns0Yn0iTtMfoB3zLBc1ezxjLC3rYAwn0zwq','y2XHDwrLlw9WDxmTnc01ltiWmJuXmtaXlxrOAw5RAw5N','zw1WAxjPB2XHyNm','z2vTBweTnc0ZmuiTrMfIBgvK','B3bLBMfPlwDWDc01mY1JB2rLEa','y2XHDwrLlw9WDxm0ltu','BMvTB3rYB24TmY1Uyw5VltmWyI1Hm2i','y29YDgvJCW','z2vTAw5Pl2DLBwLUAs0ZlJeTChjVlxbYzxzPzxC','zgvLChnLzwSVzgvLChnLzwSTDJmTDhvYyM8','C3rLCc0Z','zg91yMfVlxnLzwqTms02lti1mdyXnq','uxDLBJmUns0Yn0iTt21Lz2eTrxzVBhv0Aw9UlxyYlJiTrgvYzxn0CMLJDgvK','yMfZzxrLBI9lAw1PluSYluLUC3rYDwn0luzqna','z2vTBweTnc0ZmuiTr2fYBMv0','Bwv0ys5SBgfTytmTmY03mgiTAw5ZDhj1y3qTDJe6ma','C29VyJmXmJmVyw1VCMfSlwDLBw1HmY0Yn0iTDJi','Bw9VBNnOB3rHAs9RAw1PlwSYlxrOAw5RAw5Nlw1Hyxm','EMfPlw9YzY9NBg0TntP0AgLUA2LUzW','BwLZDhjHBc9KzxzZDhjHBc1TzwrPDw0TmJuWnW','CxDLBI5XD2vUmY0YmZvIlweYmMiTmJuWnY12mtOW','Aw5JBhvZAw9UywKVBgLUzY0YlJyTmxq','EgfPlMDYB2STnc4Z','ywXPyMfIys9XD2vUmY12Bc1PBNn0CNvJDa','y2XHCMLMywK','B3bLBMfPl2DWDc1PBwfNzs0Xlw1PBMK','CxDLBI9XD2vUte0VBw9KzwXZl1f3zw4ZltmWqI1bm0iTsw5ZDhj1y3qTmJuWnW','Bw9VBNnOB3rHAs9lAw1PluSYlJyTvevf','z3jVAY9NCM9RltqUmW','CxDLBI5XD2vUmY1UzxH0ltGWyI1Hm2i','CxDLBJmTDMWTmJm1yI1HmJjIlwLUC3rYDwn0lw9YAwDPBMfS','CMvXDwvZDhK','D29YA2vYCY1HAs9ay2yVBwv0ys9SBgfTys0ZlJiTm2iTAw5ZDhj1y3q','B3bLBMfPl2DWDc01lJe','CgHPltmTBwLUAs0XmJHRlwLUC3rYDwn0','B3bLBMfPlMDWDc1VC3mTmJbI','EI1HAs9NBg0Tnc42oNrOAw5RAw5N','tM91C1jLC2vHCMnOl2HLCM1LCY00ltCWyG','ANaUyw50AhjVCgLJlMnSyxvKzs1ZB25UzxqTnq','yNjHDMuTChjV','yw50AhjVCgLJlMnSyxvKzs1ZB25UzxqTnc01ltiWmJuWoti5lxyXoJa','Aw5JBhvZAw9UywKVBgLUzY0ZlJaTzMXHC2G6zNjLzq','qgnMl21LDgeVBgXHBweTmY4ZltCWyI1PBNn0CNvJDc1MCdGTzMfZDa','z2XTltqTzMXHC2G','zgf0ywjYAwnRCY1JBgf1zguTAgfPA3uTnc01','yxuUyw50AhjVCgLJlMnSyxvKzs1ZB25UzxqTnc02','CxDLBI1PBwfNzs0YlJa','D29YA2vYCY1HAs9ay2yVzgvLCgDYyw0VyxvYys0YlwvZ','BwLZDhjHBc5TAw5PC3rYywWTmY0ZyI1PBNn0CNvJDa','z2XTltqTnY1MBgfZAdPMCMvL','z3b0ltuTmq','D29YA2vYCY1HAs9ay2yVzgvLChnLzwSTywKVzgvLChnLzwSTCJeTzgLZDgLSBc1XD2vUltmYyG','DMvUAwnLlxvUy2vUC29Yzwq','BwLZDhjHBc1ZBwfSBc0ZltiTmJrIlwLUC3rYDwn0','C29VyJmXmJmVr3jHEuXPBMuTuxDLBJmToei','z3b0ltuUmG','C2fWAwvUCY1HAs9Hz25LCY0XlJuTBgL0zq','yw50AhjVCgLJlMnSyxvKzs1VChvZltqToa','y29OzxjLlwvTyMvKlxyZlwvUz2XPC2G','CxDLBI9XD2vUmY41lwzSyxnO','zxHHlwfUC3DLCG','A2LTAs1RmI03lwnVzgu6zNjLzq','Agy6twLUAu1HEefjl01PBMLnyxGTttm','y2XHDwrLlw9WDxmTnubKzwzHDwX0','EMfPlw9YzY9NBg0Tns1VCMLNAw5HBa','C2vLzc0YlteTDhvYyM8','rw52B2LKl0XSyw1HltmUmduTtMvTB3rYB24TvgvUExHJAgf0lvn0B3j5yNjLywTLCI03mei','Aw50zMXVyxqVztuTBwLZDhjHBc03yI1PBNn0CNvJDa','uxDLBJmUns0Yn0iTtxvZAwnHlxyX','CxDLBJmUoc1TyxGTChjLDMLLDW','BNzPzgLHl25LBw90CM9UltmUns1JB250zw50lxnHzMv0EtPMCMvL','y29OzxjLlwnVBw1HBMqTCI1WBhvZlta4ltiWmJq','tM91C1jLC2vHCMnOl0HLCM1LCY00ltCWqJP0AgLUA2LUzW','Bw9VBNnOB3rHAs9RAw1PlwSYlwLUC3rYDwn0lta5mdu','otblBwzktLG','Bwv0ys1SBgfTys0ZlJeTnda1yI1PBNn0CNvJDa','y29UDgv4DfrPzxjZ','Aw5MzxjLBMnL','ywXPyMfIys9XD2vUmY41lxbSDxm','y2XHDwrLlw9WDxmTnc02lxrOAw5R','twLUAu1HEc1nmI43','ChvIBgLJl2rLzxbZzwvRlxyZ','y2XHDwrLltmTns1OywLRDq','BwLUAw1HEc1TmI41lwHPz2HZCgvLza','Ahr0Chm6lY9TB2rLBhmUzgv2l2fWAs5QC29U','C3vIBw9KzwW','EI1HAs9NBg0Tns4YlwzYzwu','Bwv0ys1SBgfTys9mBgfTys0ZlJiTotbclvzPC2LVBI1jBNn0CNvJDa','EI1HAs9NBg0Tns10DxjIBW','y29TBwfUzc1HlxrYyw5ZBgf0zs0Woc0Ymdi1','yMfPBgLHBI9XD2vUmY43lw1HEa','ywjHy3vZywKVzhjHy2fYExmTBgXHBweTm18XltCWyI1PBNn0CNvJDa','DM94DhjHBc1ZBwfSBc0YngiTmJuWnW','B3bLBMfPl2DWDc00lteXmdyTChjLDMLLDW','Ag9SBZmTmZvIlweZyJP0AgLUA2LUzW','C3rLCc0ZltCTzMXHC2G','yMfPzhuVzxjUAwuTnc41ltiXqI1Hm2iTDgHPBMTPBMC','CxDLBI0ZltCTBwf4','DM9Sy2vUz2LUzs9KB3vIyw8TC2vLzc1JB2rL','DxmUyw50AhjVCgLJlMnSyxvKzs1VChvZltqTnW','EMfPlMDSBs01','BwLZDhjHBgfPl21PC3rYywWTBwvKAxvTltmTnq','y2XHDwrPBMLV','BwLUAxn0CMfSltnI','ywLVBI1SywjZl2fPB24TmY4Wlw1PBMK','BwLJCM9ZB2z0l3bOAs00lxjLyxnVBMLUzW','ywLVBI1SywjZl2fPB24TmI41','yMLNlxbPy2TSzq','BwLZDhjHBgfPl01PC3rYywWTtgfYz2uTsw5ZDhj1y3qTmJqXmq','CxDLBJmTns00yG','twLUAu1HEc1nmI41','EwKTBwvKAxvTltiWmgS','Bwv0ys9SBgfTys0ZlJmTnZbI','zgf0ywjYAwnRCY1Nzw1PBMKTmY1WCM8','BM91C3jLC2vHCMnOl2HLCM1LCY0ZlwXSyw1HltmUms00mdvI','z29Vz2XLl2DLBwLUAs0YlJuTzMXHC2GTBgL0zq','Bwv0ys5SBgfTytmTms03mgiTAw5ZDhj1y3qTDJe6ma','B3bLBNjVDxrLCI9MCMvL','DgvUy2vUDc9iDw55DwfUlueXm0iTsw5ZDhj1y3q','BwLTBY12mI1WCM8TzNjLzq','y2XHDwrLlwHHAwT1ltqTnq','zg91yMfVlxnLzwqTmI0WlwXPDguTmJyWndi4','C3rLCc0ZlJuTzMXHC2G','zgf0ywjYAwnRCY1NChqTns1Uyw5V','BwLZDhjHBc5WAxH0CMfSlwXHCMDLlti1mdiTDJe6ma','z3b0lwnOyxqTBgf0zxn0','B3bLBMfPl2DWDc1VC3mTmJbIoMzYzwu','CxDLBJiTns1TyxrOltCYyI1PBNn0CNvJDa','ywjSAxrLCMf0zwqTBw9KzwW','z3b0ltqUms1TAw5PltiWmJuTmdqTmtq','z3jLzY0Ylxn1CgvY','BwvPDhvHBI9SB25Ny2f0ltiUma','B3bLBMfPl2DWDc1VC3mTmtiWyG','yxjJzwvFywKVquznl21VzgvSCY90CMLUAxr5lw1PBMK','AhvUExvHBI10DxjIB3mTmJaYntaYmJy','uxDLBI9rD2vUmY0YmZvclueYmKiTvgHPBMTPBMCTmJuWnY1Myxn0','yw1HEM9UlwjLzhjVy2S','BgXHBweTmY4XltqWnwiTAw5ZDhj1y3q','Cg9VBhnPzguVBgfNDw5Hlw0UmtPMCMvL','BNzPzgLHlM5LBw90CM9Ulw5HBM8TowiTDJi','Aw5JBhvZAw9UquKVtgLUzY1MBgfZAc0YlJa','B3bLBMfPl2DWDc01lJyTC29S','EMfPlw9YzY9hte0Tns4YluzHC3q','B3bLBMfPlwDWDc00BW','uxDLBI9rD2vUmY1wtc04qI1jBNn0CNvJDa','ywXPy2XVDwqTzgvLChnLzwSTDJqTzMXHC2G','yw50AhjVCgLJlwnSyxvKzs00lJuTAgfPA3u','yw50AhjVCgLJl2nSyxvKzs1VChvZltqTns0Ymdi1mteWmq','z29Vz2XLl2DLBwLUAs0YlJuTzMXHC2G','EgfPl2DYB2STnc4Ymc1YzwfZB25PBMC','BwLZDhjHBc1ZBwfSBc00lteXowi','Dw1HBNmTCxDLBJmUnI0ZnwiTytnI','z3b0ltuUndPMCMvL','CxDLBI9XD2vUmY42ltm1yI1Hm2i','A3DHAxbPBg90l2THDc1JB2rLCI1WCM8','uxDLBJmUns0Yn0iTv3jPDgvYlvyYlurLCMvZDhjPy3rLza','ywnJB3vUDhmVzMLYzxDVCMTZl21VzgvSCY9NBg0TnxaX','BwLZDhjHBc1TzwrPDw0TBgf0zxn0','BNvTyMvY','y29ZBw9ZmY1ZDxbLCI1YzwfZB25LCG','EMfPlw9YzY9NBg0Tnc43lw1Hyxm','BwLJCM9ZB2z0l3bOAs0ZlxnTywXSlteYogSTAw5ZDhj1y3q','D29YA2vYCY1HAs9ay2yVEMfPlw9YzY9NBg0Tns4Y','uxDLBJmUns0Yn0iTqMX1zvn0yxiTrgvYzxn0CMLJDgvKluXPDgu','A2LTAs1RmI1PBNn0CNvJDc1Myxn0','BhLUA3i','t3bLBLbPCguVuxDLBJmTmtrcluLUC3rYDwn0','B3bLBMfPl2DWDc01lwnVzgv4','zgvLChnLzwSTDJmUmq','z29Vz2XLl2DLBwLUAs0ZlJeTzMXHC2GTBgL0zq','uxDLBJmUns0Yn0iTvML2AwqTrhvYAwfU','z3jLzY1YCa','CxDLBI0YlJuTnZjIlwLUC3rYDwn0','Aw5JBhvZAw9UywKVBgLUzY0XDa','ChjPy2LUz1bYB3zPzgvYswq','zgvLChnLzwSTCJeTC2fTyMfUB3zH','CxDLBI9XD2vUlxbSDxm','z29Vz2XL','yNjHDMuTCMvZzwfYy2G','EMfPl2DSBs00lJCTzMXHC2G','BNzPzgLHl25LBw90CM9UltmTC3vWzxiTmtiWyI1HmtjI','z3jVAY00lJiWltaZmdKTBM9UlxjLyxnVBMLUzW','BNzPzgLHl25LBw90CM9UlxzVAwnLy2HHDa','BMfUB2DWDc9JB2rPBMCTCM91DgvY','ywnJB3vUDhmVzMLYzxDVCMTZl21VzgvSCY9RAw1PlwSYCdCTy29Kzq','Bw9VBNnOB3rHAs9lAw1PluSYlJuTvevf','Bwv0ys1SBgfTys0ZltHIlwLUC3rYDwn0','z2vTAw5PltmUms1MBgfZAc10DhmTChjLDMLLDW','z3b0ltuUnI1SDw5H','zgvLCgnVz2L0BY9JB2DPDg8TDJiTms02nZfI','B3bLBMfPl2DWDc01lJyTC29SlxbYBW','Bwv0ys1SBgfTys0ZlteTogiTAw5ZDhj1y3q','zgf0ywjYAwnRCY1NChqTns00','uxDLBJmUns0Yn0iTt21Lz2eTrxzVBhv0Aw9UlxyYlJiTrgvYzxn0CMLJDgvKluXPDgu','yw50AhjVCgLJl2nSyxvKzs1OywLRDs0ZlJu','Dw5ZBg90Ac9Nzw1Tys0Zlti3yI1PDa','z2vTBweTnc1fneiTAxqTtuXyltrIAxq','z3b0ltuUns1WCM8','z2vTAw5PltiTns1MBgfZAc1SAxrL','B3bLBMfPl2DWDc00lJeTBMfUBW','C2fYDMfTlteWnwi','B3bLBMfPlwDWDc00BY1TAw5PltiWmJqTmdCTmtG','zxjUAwuTEdeTDhvYyM8TmZjR','BwLZDhjHBc52B3H0CMfSlxnTywXSlti0yI0Ynta3','zg91yMfVlteTns10AgLUA2LUzY1WCM8TDMLZAw9Ulti1mdqXnq','yw1HEM9Ul25VDMeTmI1SAxrL','BwLZDhjHBc1HAs9JB2rLC3rYywWTmJuWmq','ChvIBgLJl2rLzxbZzwvRlxiX','D29YA2vYCY1HAs9ay2yVzgvLCgDYyw0VyxvYys0YlwvU','BwLZDhjHBgfPl21PC3rYywWTBwvKAxvTltmTAw5ZDhj1y3q','BwLUAw1HEc1TmI41','y29KAw5NlwDSBs01lJeTzNjLzq','z2vTAw5PltmUms1MBgfZAc1PBwfNzq','CgvYy2vWDhjVBI9WzxjJzxb0CM9Ulw1Rmq','BwLUAw1HEc1TmY1MCMvL','yxjJzwuTywKVDMLYDhvVC28TBgfYz2u','EgLHB21PlxrVA2vUlxbSyw4Ty24','z2L0BgfI','C2fWlwfIyxaTmq','uxDLBJmUns0Yn0iTtMfoB3zLBc1ezxjLC3rYAwn0zwqTtgL0zq','BMfUB2DWDc9JB2rPBMCTCM91DgvYoM1LzgL1Bq','z2XTltqTCgX1CW','yxv0BY1TB2rLBc1IyxnPyW','y2XHDwrLltmTB3b1CW','BgLUzY0ZlJaTzMXHC2GTzNjLzq','y2XHDwrLlw9WDxmTnc01ltiWmJuXmtaXoNrOAw5RAw5N','z29Vz2XLl2DLBw1HltnUlwu0yI1PDa','CxDLBI1JB2rLCI1WBhvZ','CgvYCgXLEgL0Es9ZB25HCI1YzwfZB25PBMCTChjV','y2XHDwrLlxnVBM5LDc00ltzazgvMyxvSDa','B3v0Chv0vg9Rzw5Z','CxDLBI9XD2vUmY0YmZvIlweYmMiTmJuWnW','CxDLBI5XD2vUmY12Bc0YmZvIlweYmMi','A3DHAxbPBg90l2THDc1JB2rLCI1WCM8TDJiUnq','zgvLChnLzwSTCMvHC29Uzxi','FMfUDgHYB3bPyY9JBgf1zguTzMfIBguTBgf0zxn0','ywXPy2XVDwqTzgvLChnLzwSTDJqTChjV','AMLLA291','y2vYzwjYyxmTBgXHBweTnc1TyxzLCMLJAY0Xn2iTmti4zs1PBNn0CNvJDa','BMvIAxvZ','EMfPlw9YzY9hte0Tnc41vG','ywnJB3vUDhmVzMLYzxDVCMTZl21VzgvSCY9TAw5PBwf4lw0Z','BgXHBweTmY4YlteXyI12AxnPB24TAw5ZDhj1y3q','z29Vz2XLl2DLBw1HltqTmZfIlwL0oMzYzwu','z2vTAw5Pl2DLBwLUAs0ZlwzSyxnOlxbYzxzPzxC','B3bLBMfPlwDWDc01nq','BNzPzgLHl2jLDMzVCM1LCG','yw50AhjVCgLJl2nSyxvKzs0Zlw9WDxm','ywXPyMfIys9XD2vUmY1TyxG','yw50AhjVCgLJlwnSyxvKzs1OywLRDs00lJu','z2XTltuUmI1ZAg9YDa','CxDLBJmTnY1TyxG','CxDLBI9XD2vUmY0ZmgiTytnIlti1mdC','qgnMl3f3zw4VCxDLBJiUns1JB2rLCI0ZmMiTAw5ZDhj1y3q','yw50AhjVCgLJl2nSyxvKzs1ZB25UzxqTmY41','B3bLBMfPl2DWDc01lJqTBwLUAq','Aw5JBhvZAw9UywKVCMLUzY0XDa','BNzPzgLHl3vZzgnVzgu','CgvYCgXLEgL0Es9ZB25HCG','B3bLBMfPl28Xlw1PBMK','Bw9KzwXZy29Wzq','CxDLBI9XD2vUmY41lxbSDxmTmJaYnJa0mJa','EgfPl2DYB2STyNvPBgqTmc4X','D29YA2vYCY1HAs9ay2yVBwv0ys9SBgfTys0ZlJiTmtfIlxzPC2LVBI1PBNn0CNvJDa','BwLZDhjHBc1TzwrPDw0TmJyWna','BwLZDhjHBc1ZBwfSBc0YntaZ','CxDLBI9XD2vUmY0Xngi','BNzPzgLHl25LBw90CM9UltmTC3vWzxiTmtiWyI1HmtjIoMzYzwu','EMfPl2DSBs01lJiTzMfZDa','BwLZDhjHBc1JB2rLlwXHDgvZDa','EMfPlw9YzY9hte0Tnc41lufPCJP0AgLUA2LUzW','z3b0ltrVltiWmJqTmduTmtm','CxDLBJmUnI0Znwi','z3b0lwLTywDLlte','z3jVAY00lJu','C2vLzc0XltyTmJuWote1','z29Vz2XLlxzLCNrLEa','uxDLBJmUns0Yn0iTtwfYDMLUlurqtY1wmI1ezxjLC3rYAwn0zwqTtgL0zq','BwLUAw1HEc9TAw5PBwf4lw0YlJeTBgLNAhrUAw5N','y2XHDwrLlw9WDxmTnc10AgLUA2LUzZOXmdi0','Agy6EMfPlw9YzY9hte0Tns4Y','B3bLBMfPl2DWDc01lJqTAw1Hz2uTmG','yw50AhjVCgLJ','Ec1HAs9NCM9RltqUmI1Myxn0lw5VBI1YzwfZB25PBMC','Ec1HAs9NCM9RlwXHDgvZDa','y2XHDwrLlw9WDxm0ltC','Dg9NzxrOzxjHAq','z3jVAY00','DM9Sy2vUz2LUzs9KB3vIyw8TC2vLzc0XlJG','ywnJB3vUDhmVzMLYzxDVCMTZl21VzgvSCY9RAw1PlwSYCdy','BwLZDhjHBc9JB2rLC3rYywWTBgf0zxn0','zgf0ywjYAwnRCY1Nzw1PBMKTmI01lxbYBW','uxDLBI9rD2vUmY1wtc1fBwjLzgrPBMCToei','zgf0ywjYAwnRCY1Nzw1PBMKTmY1MBgfZAa','twLUAu1HEefjl01PBMLnyxGTtti','ntC4nZK4A2fZB05K','B3jJyxjVDxrLCI9HDxrV','vevfl2DSBs01','yxuUyw50AhjVCgLJlMnSyxvKzs1VChvZltqTnI12mq','AgfWChLOB3jZzs0XlJeTDdj2','D29YA2vYCY1HAs9ay2yVCgLWzwnHDc1HAs9ZBwfYDc10DxjUlxyY','CgvYCgXLEgL0Es9ZB25HCI1KzwvWlxjLC2vHCMnO','z2XVyMfSlMfUDgHYB3bPyY5JBgf1zguTB3b1CY01','AhvUExvHBI0YlJaTDgHPBMTPBMC','y2XHDwrLltmTAgfPA3uTmJaYndaZmdC','yw1HEM9Uls1UB3zHlwXPDgu','BwLZDhjHBc1HAs9TAxn0CMfSlxnTywXSlti1mdm','B3bLBMfPl2DWDc01lJqTChjV','yMDLlxjLCMfUA2vYlxyYlw0Z','zwjJBg91za','yw50AhjVCgLJl2nSyxvKzs1VChvZltqUnq','Bwv0ys9SBgfTys0ZlJeTnZbIlwLUC3rYDwn0','z3b0ltrVltiWmJqTmdGTmdy','z2vTBweTmY0XmMi','BM9YDgGTBwLUAs1JB2rLlwzYzwu','ywnJB3vUDhmVzMLYzxDVCMTZl21VzgvSCY9NBg0TnxaY','BM92yq','zgvLChnLzwSVzgvLChnLzwSTCJeTzgLZDgLSBc1SBgfTys03mgi','z2vTAw5PltmUms1MBgfZAc1SAxzLlxbYzxzPzxC','yNL0zwrHBMnLlxnLzwqVC2vLzc0YlJaTBgL0zq','vgHLrhj1Bw1LCI9bBNvIAxmTnZbclxyX','Aw5Jzxb0Aw9U','yMfPzhuVzxjUAwuTnc41ltiXqI1Hm2i','r2vTBweTnc0ZmuiTr2vTB3b1CW','B3bLBMfPlMDWDc1VC3mTC2fMzwD1yxjKltiWyG','BwLUAw1HEc1TmI01','Bwv0ys9SBgfTys00lw1HDMvYAwnR','Bw9KzwWTDw5PCxvL','ANaUyw50AhjVCgLJlMnSyxvKzs1ZB25UzxqTnc02','z29Vz2XLlwDLBw1HltmTmJDIlwL0','zhvVlwnOyxqTz3b0ltuTnq','z2vTBweTnc11BMnLBNnVCMvK','yxjJzwuTDhjPBML0Es1SyxjNzs10AgLUA2LUzW','zxjUAwuTEdeTmZjR','C2fYDMfTl3nHCNzHBs0XmdvI','z2vTAw5PltiUns1MBgfZAc1UB3rOAw5RAw5N','BwLUAw1HEc1TmY1WCMv2Awv3','DxmUyw50AhjVCgLJlMnSyxvKzs1VChvZltu','BgXHBweTnc1Zy291Da','BNzPzgLHl05LBw90CM9UltmTtMfUBY1pBw5P','BNzPzgLHl05wsurjqs1ozw1VDhjVBI0Zlu5HBM8TmZbclueZqG','Bwv0ys9TzxrHlwXSyw1HltmUms04yI1PBNn0CNvJDa','EgLHB21Plw1PBw8TDJiTnq','CxDLBI9XD2vUmY1JB2rLCI0ZmgiTytnIlwLUC3rYDwn0','BwLUAw1HEc1TmJu','yw50AhjVCgLJl2nSyxvKzs1VChvZltqUnJP0AgLUA2LUzZPSB3C','CxDLBJmTBwf4lxbYzxzPzxC','Cg9VBhnPzguVBgfNDw5HlxmTmI4XlwzYzwu','yw50AhjVCgLJl2nSyxvKzs1VChvZlwXHDgvZDa','AMfTyMeTBgfYz2u','zgv2C3rYywWTBgf0zxn0','zgf0ywjYAwnRCY1NChqTns0X','uxDLBI9rD2vUmY1wtc0ZmKiTsw5ZDhj1y3q','Bwv0yq','zgf0ywjYAwnRCY1JBgf1zguTB3b1CY00ltu','Bwv0ys9LC20Ylty1mg0','B3bLBMfPlwDWDc01mG','EMfPlw9YzY9NBg0Tnc43oNrOAw5RAw5N','zgf0ywjYAwnRCW','zgvLChnLzwSTDJqTzMXHC2G6zNjLzq','BwLZDhjHBgfPl21PC3rYywWTBgfYz2uTmJuXmG','zg91yMfVlxnLzwqTmI0WlxbYBY0YnJaYmtu','C3rLywX0Ac9JBgf1zguTC29UBMv0ltqUnG','Bwv0ys9SBgfTys0ZlJiTotbIlxzPC2LVBI1PBNn0CNvJDa','C2fVmtbRl2WZlJeTnZbIlwHHBMfTAs14mq','BNzPzgLHlw5LBw90CM9UltmTBMfUBY0ZmgiTytnI','C3rLCc0XltmYAW','EI1HAs9NBg0Tnc43lwzSyxnO','zgvLChnLzwSTywKVzgvLChnLzwSTDJmUmI1LEha','AMfTyMeTBwLUAs0XlJy','B3bLBMfPl2DWDc01lJeTDgHPBMTPBMC','BNzPzgLHl25LBw90CM9UltmTC3vWzxiTmtiWyI1HmtjIoNrOAw5RAw5N','zgvLChnLzwSTmY4Y','EgLHB21Plw1PBw8TDJiUns1WCM8TzNjLzq','z3b0ltqTmZjR','ChjVDMLKzxiTBw9KzwW','z3b0ltuUntPMCMvL','CxDLBJmUnI0ZnwiTzMfZDa','zhvVlwnOyxqTB3b1CY00ltC','B3bLBMfPl2DWDc00BY0Ymdi0lteXltiW','yw50AhjVCgLJl2nSyxvKzs1OywLRDs00lJu','vevfl2DLBw1Hnc0Zmwi6DgHPBMTPBMC','Dg9Uz3LPlwLUDgvUDc1KzxrLy3qTDJm','yNL0zwrHBMnLlxnLzwqVC2vLzc0XlJyTzMXHC2G','EMfPlw9YzY9NBg0Tnc43lwzSyxnOlw9YAwDPBMfSoNrOAw5RAw5N','mZaYywK','Bw9KzwXZlMrLDG','z29Vz2XLl2DLBw1HltqTrtjclwL0','y29TBwfUzc1HlxbSDxmTmduTmJaYnG','wMHPChvbss9hte0Tnc41','Bw9VBNnOB3rHAs1JBG','yw50AhjVCgLJlMnSyxvKzs1VChvZltqTns0Ymdi1mteWms12mtOW','yw1IAwvUDc9SyxjNzq','qgnMl2DVB2DSzs9Nzw1Tys00lti2yI1HngiTAxq','uxDLBJmUns0Yn0iTtwfYDMLUlvyYlurLCMvZDhjPy3rLza','y2XHDwrLlw9WDxmTnq','z29Vz2XLl2DLBwLUAs0YlJuTChjVlxbYzxzPzxC','BM92AxrHl2rLzxbZzwvRlxyZlJi','CxDLBJmTns0XmJjIlweXmgi','yxuUyw50AhjVCgLJlMnSyxvKzs1ZB25UzxqTnq','B3bLBMfPlwDWDc01na','y2H1DgvZ','BM90AgLUz2LPC3jLywWVtdmUms03meiTq2vSzxn0zs1wmc4Xlujgmty','ChjVDMLKzxjZ','BgXHBweTmY4YltnIlwLUC3rYDwn0','r2vTBweTnc0ZmuiTq29NBML0AxzLlvvUC2HHy2TSzwq','zgvLChnLzwSTywKVrgvLCfnLzwSTvJmUmI1uruu','BgXHBweTnc1Zy291Dc0Xn2iTmtzLlwLUC3rYDwn0','BNzPzgLHl2XSyw1Hlw5LBw90CM9UlxjLCMfUAY12Bc0XyI12mG','zg91yMfVlxnLzwqTmI0WlwnVzguTChjLDMLLDW','AhKZlxbYzxzPzxCTzNjLzq','B3bLBMfPl2DWDc0ZlJuTDhvYyM8TAw5ZDhj1y3q','CxDLBI9XD2vUmY1TyxG','yMfPzhuVy29IDwrKEtPMCMvL','uhjPBwvjBNrLBgXLy3qVsu5uruXmrunultm','z3b0ltqTDhvYyM8TDMLZAw9U','z2XTltqTnY1MBgfZAa','ywjHy3vZ','BNzPzgLHl25LBw90CM9UltmTBMfUBY0ZmgiTytnI','BwLUAw1HEc9TAw5PBwf4lwXHDgvZDa','CxDLBI9XD2vUmY41lteYmMiTyteWyG','CxDLBI9XD2vUlwLTywDL','z29Vz2XLl25HBM8TyMfUyw5H','ywXPy2XVDwqTz2XTltuUmq','B3bLBMfPl2DWDc00BY1TAw5PltiWmJqTmdCTmtG','Bw9VBNnOB3rHAs9RAw1PlwSYlJy','BwvNyw5VDMeTywKVBwfUDgeTChjVlteUma','C3rLCc0ZlJCTzMXHC2G','zgvLChnLzwSTDJqTChjVoMzYzwu','Aw8TBMv0','BMfUB2DWDc9JB2rPBMCTCM91DgvYoM1HEa','BM92AxrHlwfP','B3bLBMfPl2DWDc1JAgf0lwXHDgvZDa','BNzPzgLHl05wsurjqs1ozw1VDhjVBI0ZlvvSDhjHltu1meiTqtu1qI1crJe2','BNzPzgLHlw5LBw90CM9UltmTDwX0CMeTntuWyI1HntvI','y2XHDwrLlxnVBM5LDc00qdiWmJuWnte0','CxDLBI1WBhvZlwXHDgvZDa','BwLZDhjHBgfPl21PC3rYywWTBgfYz2u','DgHLzhj1Bw1LCI91BNnSB3bUzw1VlteYyG','Bwv0ys1SBgfTys0ZxZmTnZbIlwLUC3rYDwn0','rgvLCfnLzwSTvJqTuhjV','BNzPzgLHl3vZzhzHBgLKyxrL','EMfPlw9YzY9hte0Tns4Ylvrfrq','EgfPl2DYB2STy29Kzs1Myxn0lte','zgvLChnLzwSTDJmUms10zxjTAw51CW','y2XHDwrLlw9WDxmTnc01qdiWmJuXmtaX','y29TBwfUzc1Yn2iTyxjHyMLJltaYltiWmJu','ChvIBgLJl21PBMLTyxGTBti1','BwLZDhjHBc9TAxn0CMfSlw1LzgL1Bs1SyxrLC3q','B3bLBMfPl2DWDc01lJmTy29KzxGTC3bHCMS','yw50AhjVCgLJlwnSyxvKzs0ZlJCTC29UBMv0','DgHPBMTPBMDTywnOAw5LCY9jBMTSAw5NoNbLzNq6mJyYmtq0','DMvYy2vS','AhvPAhvPlwfPl0rLzxbtzwvRlviXlurPC3rPBgWTtgXHBweTnZbclwfIBgL0zxjHDgvK','zgf0ywjYAwnRCY1NBg0Tns0Y','A2LTAs1RmI41lwzYzwu','vevfl2DSBs01lJeTDgHPBMTPBMC','vevfl2TPBwKTAZiUnq','CxDLBJmUnY1WBhvZ','z3b0ltuTmY1JB2rLEa','zgvLChnLzwSVzgvLChnLzwSTDJqTzMXHC2G','zg91yMfVlxnLzwqTmI0Wlw1PBMKTmJyWndi4','Bwv0ys1SBgfTys9nzxrHluXSyw1HltmUms04qI1jBNn0CNvJDa','BwLUAw1HEc5TAw5PBwf4lw0Y','ywXPyMfIys9XD2vUmY1JB2rLCI0ZmgiTytnI','z3b0ltmUns10DxjIBY1PBNn0CNvJDa','zgvLChnLzwSVzgvLChnLzwSTB2nYlti','DNvSDhi','DgvUy2vUDc9OEtmTChjLDMLLDW','tM91C1jLC2vHCMnOl0HLCM1LCY00ltqWnui','EI1HAs9NBg0Tnc41DG','z3jVAY00lJiWlwjLDgeTmdmWos1YzwfZB25PBMC','EMfPlw9YzY1NBg0Tnc42','BhvJAwrXDwvYEs1Hz2KTmdeTzNjVBNrPzxi','Agy6Bw9VBNnOB3rHAs9lAw1PluSYlJCTq29Kzq','EMfPlw9YzY9NBg0Tnc43lwzSyxnOlw9YAwDPBMfS','vgHLrhj1Bw1LCI9bBNvIAxmTnZbclxyXlJe','CxDLBI9XD2vUmY42ltm1yI1Hm2iTzNa4','zg91yMfVlxnLzwqTms02lxrOAw5RAw5Nlti1mdCXnq','zNvNDs11BhrYys0Ymdi2mdyXnq','yw50AhjVCgLJlMnSyxvKzs1MywjSzs01','y29TBwfUzc1Yn2iTmtiTmJaYna','tgLUzY0Xva','zgf0ywjYAwnRCY1JBgf1zguTC29UBMv0ltqTnG','C2fVmtbRl2WZlwv1CNLHBguTnZbI','CxDLBJmUns1MBgfZAdP0AgLUA2LUzW','BZmTChjV','B3bLBMfPl2DWDc00lxr1CMjVlxbYzxzPzxC','CxDLBI9XD2vUmY1JB2rLCI1WBhvZ','EMfPlwDSBs01lte','z2XVyMfSlMfUDgHYB3bPyY5JBgf1zguTB3b1CY00ltC','B3bLBMfPl2DWDc01lJiTAw5ZDgfUDa','yw1HEM9Ul25VDMeTmI1SAxrLlxyX','z2XTltqTywLY','CxDLBI9XD2vUmY0ZmgiTytnIlxrOAw5RAw5Nlti1mdC','BwLTBY12mI41lxr0CY12B2LJzwnSB25L','y2XHDwrLlwHHAwT1ltqTns0Ymdi1mtaWmq','y29OzxjLl2nVAgvYzs1JB21Tyw5KlxiTCgX1CY0Woc0Ymdi0','y2XHDwrLlw9WDxmTnc04qgrLzMf1Bhq','Bwv0ys1SBgfTys0ZltmTnZbIlwLUC3rYDwn0','z2XVyMfSlMfUDgHYB3bPyY5JBgf1zguTzMfIBguTnq','BNzPzgLHl3n0CMvHBxbLDhi','y29OzxjLl2nVAgvYzs1JB21Tyw5Klxi','EI1HAs9NBg0Tns4X','BwLZDhjHBc5TAw5PC3rYywWTmY04yI1PBNn0CNvJDa','BwLZDhjHBc9TywDPC3rYywWTBwvKAxvT','vevfl21PBMLTyxGTBtiUnq','BwLZDhjHBgfPl21PEhrYywWTohG3yI1PBNn0CNvJDa','CxDLBI9XD2vUmY0ZmgiTytnIlwLUC3rYDwn0lti1mdC','EMfPlw9YzY9hte0Tns1gudG','Bw9VBNnOB3qUA2LTAs1RmI10AgLUA2LUzW','y29KAw5NlxHPyw9TAs1TAw1VlxyYlJuTChjV'];_0x4cd2=function(){return _0x325a74;};return _0x4cd2();}function resolvePricing(_0xe1b8c1,_0x2f6d37){const _0x267d58={_0xa716ea:0x247,_0x241d0c:0xd,_0x41327e:0x64d,_0x128989:0x511,_0x454d45:0x489,_0x458349:0x2fa,_0xa1ca51:0x56e,_0x5031ff:0x603,_0x4466f6:0x8a6,_0x512ea5:0xaa7,_0x217500:0x6d1,_0xdb0faa:0x3da,_0x2bacbc:0x683,_0x43d16a:0x75f,_0x495df8:0x3ed,_0x260227:0xd3},_0x581cba={_0x349793:0x78,_0x22254c:0x218},_0x58311e={_0x1bf96c:0x1ee,_0x4558ff:0x94},_0x5ab338=_0xe1b8c1[_0x54e1f3(0x16b,0x5e2,_0x267d58._0xa716ea,-_0x267d58._0x241d0c)][_0x54e1f3(_0x267d58._0x41327e,_0x267d58._0x128989,_0x267d58._0x454d45,_0x267d58._0x458349)],_0x5ed73d=_0x5ab338!==void 0x0?_0x2f6d37[_0x54e1f3(0x624,0x422,_0x267d58._0xa1ca51,_0x267d58._0x5031ff)][_0x5ab338]?.[_0x3bd93d(_0x267d58._0x4466f6,_0x267d58._0x4466f6,_0x267d58._0x512ea5,0x87f)][_0xe1b8c1[_0x54e1f3(_0x267d58._0x217500,_0x267d58._0xdb0faa,_0x267d58._0x2bacbc,_0x267d58._0x43d16a)]]:void 0x0;function _0x3bd93d(_0xf09f88,_0x2e7f77,_0x27fd96,_0x32fc68){return _0x5a09f8(_0xf09f88-_0x58311e._0x1bf96c,_0xf09f88-0x35f,_0x2e7f77,_0x32fc68-_0x58311e._0x4558ff);}if(_0x5ed73d!==void 0x0&&_0x5ab338!==void 0x0)return{'model':_0x5ed73d,'pricingProviderIds':[_0x5ab338],'matchKind':_0x54e1f3(0x3b7,0x1d7,0x552,0x39d)};function _0x54e1f3(_0x4cbf73,_0x3f019e,_0x539328,_0x18c0ba){return _0x5a09f8(_0x4cbf73-_0x581cba._0x349793,_0x539328-_0x581cba._0x22254c,_0x18c0ba,_0x18c0ba-0x8f);}const _0x51baa4=_0x2f6d37[_0x54e1f3(-0x221,_0x267d58._0x495df8,_0x267d58._0x260227,-0x2ea)][_0xe1b8c1['model']];if(_0x51baa4===void 0x0)return void 0x0;return{'model':_0x51baa4,'pricingProviderIds':_0x51baa4['pricingProviderIds'],'matchKind':_0x51baa4['matchKind']};}function _0x5a09f8(_0x45a8f9,_0xe1660,_0x2564b8,_0x530eb6){const _0x2f87cc={_0x622911:0x2e9};return _0x5a6e(_0xe1660- -_0x2f87cc._0x622911,_0x2564b8);}function bucketTicks(_0xd2ab0d,_0x1df15a){const _0x2a33e5={_0x2b293f:0x4c0},_0x10196f={_0x1c7264:0x51,_0x401a8b:0x54};function _0x401457(_0x31e03a,_0x553f12,_0x28156e,_0x47d045){return _0x16b4a2(_0x31e03a-_0x10196f._0x1c7264,_0x47d045,_0x31e03a- -0x8b,_0x47d045-_0x10196f._0x401a8b);}if(!isValidRate(_0x1df15a))return void 0x0;const _0x106c7c=Math['round'](_0xd2ab0d*_0x1df15a*USD_TICKS_PER_TOKEN_AT_ONE_DOLLAR_PER_MILLION);if(!Number[_0x401457(_0x2a33e5._0x2b293f,0x68b,0x764,0x733)](_0x106c7c)||_0x106c7c<0x0)return void 0x0;return _0x106c7c;}function _0x5a6e(_0x292338,_0x25d511){_0x292338=_0x292338-0x112;const _0x4cd28f=_0x4cd2();let _0x5a6eea=_0x4cd28f[_0x292338];if(_0x5a6e['jExpZq']===undefined){var _0x17a484=function(_0x4d25d1){const _0x5c4cf1='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x21863c='',_0x4d74dd='';for(let _0x52528d=0x0,_0x3ba176,_0x596376,_0x30d9c1=0x0;_0x596376=_0x4d25d1['charAt'](_0x30d9c1++);~_0x596376&&(_0x3ba176=_0x52528d%0x4?_0x3ba176*0x40+_0x596376:_0x596376,_0x52528d++%0x4)?_0x21863c+=String['fromCharCode'](0xff&_0x3ba176>>(-0x2*_0x52528d&0x6)):0x0){_0x596376=_0x5c4cf1['indexOf'](_0x596376);}for(let _0xe1b8c1=0x0,_0x2f6d37=_0x21863c['length'];_0xe1b8c1<_0x2f6d37;_0xe1b8c1++){_0x4d74dd+='%'+('00'+_0x21863c['charCodeAt'](_0xe1b8c1)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x4d74dd);};_0x5a6e['PlxCmt']=_0x17a484,_0x5a6e['HrPFKV']={},_0x5a6e['jExpZq']=!![];}const _0x4a16c8=_0x4cd28f[0x0],_0x20f43d=_0x292338+_0x4a16c8,_0x3aef71=_0x5a6e['HrPFKV'][_0x20f43d];return!_0x3aef71?(_0x5a6eea=_0x5a6e['PlxCmt'](_0x5a6eea),_0x5a6e['HrPFKV'][_0x20f43d]=_0x5a6eea):_0x5a6eea=_0x3aef71,_0x5a6eea;}function _0x16b4a2(_0x4c8a00,_0x327020,_0x34f6c8,_0x31dcbb){return _0x5a6e(_0x34f6c8- -0x28a,_0x327020);}function addTicks(_0x5e3d46,_0x3f051e){const _0x46b713={_0x4fa8be:0x77b,_0x4a1249:0x740,_0x59d26f:0x5a8},_0x9ef642={_0x4945b4:0xe3,_0x2f9dff:0xbc},_0x2d8fb3=_0x5e3d46+_0x3f051e;if(!Number[_0x3b64ab(0x6da,_0x46b713._0x4fa8be,_0x46b713._0x4a1249,_0x46b713._0x59d26f)](_0x2d8fb3)||_0x2d8fb3<0x0)return void 0x0;function _0x3b64ab(_0x22a328,_0x3286f9,_0xd4f126,_0x1c384c){return _0x5a09f8(_0x22a328-_0x9ef642._0x4945b4,_0x1c384c-_0x9ef642._0x2f9dff,_0xd4f126,_0x1c384c-0xc0);}return _0x2d8fb3;}function estimateResolvedCost(_0x3f0ee7,_0x505f85){const _0x1228f5={_0x783fbc:0xac4,_0x2e3b3c:0x705,_0x3e8be9:0x943,_0x51ebfe:0x7c6,_0x426c82:0x441,_0xc59c5e:0x7d4,_0xe28f58:0xb2d,_0x197381:0xa77,_0xcd4cdd:0x805,_0x30cd5a:0x4dc,_0x137278:0x616,_0xde8d81:0x64d,_0x301ae9:0x943,_0x71699e:0xb43,_0x464f25:0xc14,_0x5611ef:0xd42,_0x137039:0xaf2,_0x582f25:0xab0,_0x45de56:0x9c6,_0x53f609:0xa06,_0x4789e2:0x7a5,_0x5c4a89:0x28f,_0x309036:0xc3c,_0x43c13f:0xa88,_0x56aa46:0x9d9,_0x1e84f9:0x8b2,_0x28f01a:0x943,_0x5a0f93:0xc23,_0x15b686:0xd04,_0x391b0f:0x9d7,_0x2ed264:0x991,_0x2f2ce5:0xce4,_0xd5c29e:0xdda,_0x1ce542:0xa56,_0xca6b9c:0x497,_0x149209:0x4e1,_0x82506a:0xb35,_0x4bab26:0xa76,_0x50110e:0x4fb,_0x1f1123:0x453,_0xbf0fbd:0x699,_0x554233:0x64b,_0x599b57:0x9f2},_0x8c200b={_0x3ab8ec:0xa4,_0x29c662:0x52b},_0x1fe4bc={_0x1bcd85:0xa2,_0x547ac9:0x109};if(!isNonNegativeSafeInteger(_0x3f0ee7[_0x4941f9(_0x1228f5._0x783fbc,0x9df,_0x1228f5._0x2e3b3c,_0x1228f5._0x3e8be9)])||!isNonNegativeSafeInteger(_0x3f0ee7[_0x4941f9(_0x1228f5._0x51ebfe,_0x1228f5._0x426c82,0x95d,_0x1228f5._0xc59c5e)]))return void 0x0;const _0x471815=_0x3f0ee7[_0x5138f3(_0x1228f5._0xe28f58,_0x1228f5._0x197381,0xe0c,0xd7e)],_0x5193ef=_0x3f0ee7[_0x5138f3(_0x1228f5._0xcd4cdd,_0x1228f5._0x30cd5a,0x3ba,0x12b)],_0x4aba20=_0x3f0ee7[_0x5138f3(0x2b8,_0x1228f5._0x137278,0x93c,0x831)];if(_0x471815!==void 0x0&&!isNonNegativeSafeInteger(_0x471815))return void 0x0;function _0x4941f9(_0x14bf62,_0x4eaac6,_0x443875,_0x384eb8){return _0x5a09f8(_0x14bf62-_0x1fe4bc._0x1bcd85,_0x384eb8-0x52b,_0x443875,_0x384eb8-_0x1fe4bc._0x547ac9);}if(_0x5193ef!==void 0x0&&!isNonNegativeSafeInteger(_0x5193ef))return void 0x0;if(_0x4aba20!==void 0x0&&!isNonNegativeSafeInteger(_0x4aba20))return void 0x0;const _0x191853=_0x471815??0x0,_0x57286e=_0x5193ef??0x0;function _0x5138f3(_0x9f39a5,_0x54968b,_0x54289e,_0x414f8e){return _0x5a09f8(_0x9f39a5-_0x8c200b._0x3ab8ec,_0x54968b-_0x8c200b._0x29c662,_0x54289e,_0x414f8e-0xa1);}const _0x2acccf=_0x3f0ee7[_0x5138f3(_0x1228f5._0xde8d81,_0x1228f5._0x301ae9,_0x1228f5._0x71699e,0x7c2)]-_0x191853-_0x57286e;if(!isNonNegativeSafeInteger(_0x2acccf))return void 0x0;const _0x1e95dc=_0x505f85[_0x5138f3(0xb9e,0x9f2,0x9ff,_0x1228f5._0x464f25)]===void 0x0?0x0:_0x4aba20;if(_0x505f85[_0x4941f9(0xcee,_0x1228f5._0x5611ef,_0x1228f5._0x137039,0x9f2)]!==void 0x0&&_0x1e95dc===void 0x0)return void 0x0;const _0xd1eb45=_0x1e95dc??0x0,_0x8dd013=_0x3f0ee7[_0x4941f9(_0x1228f5._0x582f25,_0x1228f5._0x45de56,_0x1228f5._0x53f609,0x7d4)]-_0xd1eb45;if(!isNonNegativeSafeInteger(_0x8dd013))return void 0x0;if(_0x191853>0x0&&_0x505f85[_0x4941f9(0x62a,_0x1228f5._0x4789e2,_0x1228f5._0x5c4a89,0x4e1)]===void 0x0)return void 0x0;if(_0x57286e>0x0&&_0x505f85[_0x5138f3(_0x1228f5._0x309036,_0x1228f5._0x43c13f,0xc9c,_0x1228f5._0x56aa46)]===void 0x0)return void 0x0;if(_0x3f0ee7[_0x5138f3(_0x1228f5._0x1e84f9,_0x1228f5._0x28f01a,_0x1228f5._0x5a0f93,_0x1228f5._0x15b686)]===0x0&&_0x3f0ee7[_0x4941f9(0x562,0xa15,_0x1228f5._0x391b0f,0x7d4)]===0x0&&_0x3f0ee7[_0x4941f9(0x870,0xbec,0xb1d,_0x1228f5._0x2ed264)]===void 0x0)return void 0x0;let _0x268b40=0x0;const _0x15d4ad=bucketTicks(_0x2acccf,_0x505f85[_0x4941f9(_0x1228f5._0x2f2ce5,_0x1228f5._0xd5c29e,0x8ba,_0x1228f5._0x1ce542)]);if(_0x15d4ad===void 0x0)return void 0x0;const _0x23d266=addTicks(_0x268b40,_0x15d4ad);if(_0x23d266===void 0x0)return void 0x0;_0x268b40=_0x23d266;if(_0x191853>0x0){const _0x45d4d2=_0x505f85[_0x4941f9(_0x1228f5._0xca6b9c,0x4b9,0x6fd,_0x1228f5._0x149209)];if(_0x45d4d2===void 0x0)return void 0x0;const _0x2c0845=bucketTicks(_0x191853,_0x45d4d2);if(_0x2c0845===void 0x0)return void 0x0;const _0x2f47b0=addTicks(_0x268b40,_0x2c0845);if(_0x2f47b0===void 0x0)return void 0x0;_0x268b40=_0x2f47b0;}if(_0x57286e>0x0){const _0x281618=_0x505f85[_0x4941f9(_0x1228f5._0x82506a,0xa5a,_0x1228f5._0x4bab26,_0x1228f5._0x43c13f)];if(_0x281618===void 0x0)return void 0x0;const _0x328599=bucketTicks(_0x57286e,_0x281618);if(_0x328599===void 0x0)return void 0x0;const _0x5e3aa4=addTicks(_0x268b40,_0x328599);if(_0x5e3aa4===void 0x0)return void 0x0;_0x268b40=_0x5e3aa4;}const _0x44f89d=bucketTicks(_0x8dd013,_0x505f85[_0x4941f9(_0x1228f5._0x50110e,_0x1228f5._0x1f1123,0x7d6,0x46b)]);if(_0x44f89d===void 0x0)return void 0x0;const _0x5313ed=addTicks(_0x268b40,_0x44f89d);if(_0x5313ed===void 0x0)return void 0x0;_0x268b40=_0x5313ed;if(_0xd1eb45>0x0){const _0x600ac=_0x505f85[_0x4941f9(0xd99,_0x1228f5._0xbf0fbd,_0x1228f5._0x554233,_0x1228f5._0x599b57)];if(_0x600ac===void 0x0)return void 0x0;const _0x2efe67=bucketTicks(_0xd1eb45,_0x600ac);if(_0x2efe67===void 0x0)return void 0x0;const _0x15526c=addTicks(_0x268b40,_0x2efe67);if(_0x15526c===void 0x0)return void 0x0;_0x268b40=_0x15526c;}return _0x268b40;}function estimateModelCost(_0x5d21ed,_0x4c48c4,_0x495259=MODEL_PRICING){const _0x512d7f={_0x2233cb:0xc97,_0x3d20a0:0xc4a,_0x212ba8:0xd02,_0x31b677:0x9d5,_0x411544:0x8d9,_0x541dd6:0x7d9,_0x5b70d5:0xc8c,_0x2dec24:0xace,_0x32a9a5:0x56d,_0x3c408c:0x45c,_0x5ec77e:0x152,_0x54032a:0xa53,_0x14d206:0xa4e,_0x2d9aa9:0x6c5},_0x35f6fc={_0xd9f667:0xd3,_0x116a7e:0x55e,_0x381975:0x62},_0x478a8a={_0x374499:0x5fc};function _0x3fa173(_0x22bdec,_0x12f436,_0xae21ff,_0x405927){return _0x5a09f8(_0x22bdec-0x51,_0x22bdec-_0x478a8a._0x374499,_0xae21ff,_0x405927-0x197);}function _0x45b5d1(_0x598e5b,_0x3a223d,_0x13e199,_0x2167d8){return _0x16b4a2(_0x598e5b-_0x35f6fc._0xd9f667,_0x3a223d,_0x13e199-_0x35f6fc._0x116a7e,_0x2167d8-_0x35f6fc._0x381975);}try{const _0x54e6d6=resolvePricing(_0x5d21ed,_0x495259);if(_0x54e6d6===void 0x0)return void 0x0;const _0x2ec9c3=selectRates(_0x54e6d6[_0x3fa173(0xa67,_0x512d7f._0x2233cb,0x8cd,_0x512d7f._0x3d20a0)],_0x4c48c4[_0x45b5d1(_0x512d7f._0x212ba8,0xa38,_0x512d7f._0x31b677,0xb67)]),_0x2a1446=estimateResolvedCost(_0x4c48c4,_0x2ec9c3);if(_0x2a1446===void 0x0)return void 0x0;return{'amountUsdTicks':_0x2a1446,'source':_0x3fa173(0x941,0x8a8,_0x512d7f._0x411544,0x701),'pricingSnapshotId':_0x495259['snapshotId'],'pricingProviderIds':_0x54e6d6[_0x3fa173(0xa0d,_0x512d7f._0x541dd6,_0x512d7f._0x5b70d5,0x9c2)],'pricingModelId':_0x54e6d6[_0x3fa173(0xa67,0xb98,_0x512d7f._0x2dec24,0xc53)][_0x45b5d1(0x509,_0x512d7f._0x32a9a5,_0x512d7f._0x3c408c,_0x512d7f._0x5ec77e)],'matchKind':_0x54e6d6[_0x3fa173(_0x512d7f._0x54032a,_0x512d7f._0x14d206,0xb8f,_0x512d7f._0x2d9aa9)]};}catch{return void 0x0;}}function withEstimatedModelCost(_0x576124,_0x11c8bb,_0x3eb80d=MODEL_PRICING){const _0x393a17={_0x1ca23e:0x5c0,_0x2c45b0:0xa2,_0x5b86de:0x3bb,_0x411ede:0x2f3},_0x1b05ae={_0x3269ff:0x32e};function _0x2ca7c4(_0x1e70ca,_0x527be4,_0x5f2be7,_0x21a14f){return _0x5a09f8(_0x1e70ca-0x7,_0x5f2be7-_0x1b05ae._0x3269ff,_0x21a14f,_0x21a14f-0x95);}try{const _0x47a8b6=estimateModelCost(_0x576124,_0x11c8bb['usage'],_0x3eb80d);if(_0x47a8b6===void 0x0)return _0x11c8bb;return{..._0x11c8bb,'usage':{..._0x11c8bb[_0x2ca7c4(_0x393a17._0x1ca23e,_0x393a17._0x2c45b0,_0x393a17._0x5b86de,_0x393a17._0x411ede)],'estimatedCost':_0x47a8b6}};}catch{return _0x11c8bb;}}export{USD_TICKS_PER_TOKEN_AT_ONE_DOLLAR_PER_MILLION,estimateModelCost,withEstimatedModelCost};