diff --git a/components/Connected.tsx b/components/Connected.tsx
index 6ef1602..89ef4ba 100644
--- a/components/Connected.tsx
+++ b/components/Connected.tsx
@@ -26,7 +26,9 @@ const Connected: FC = () => {
metaplex
.candyMachines()
.findByAddress({
- address: new PublicKey("2AVdQdNsR1tgehsWoUXX98tBuiHupciJGq2mgGxpgdeC"),
+ address: new PublicKey(
+ process.env.NEXT_PUBLIC_CANDY_MACHINE_ADDRESS ?? ""
+ ),
})
.run()
.then((candyMachine) => {
@@ -68,13 +70,15 @@ const Connected: FC = () => {
- Welcome Wonderer.
+ Welcome Nomad.
- Each Nomad is randomly generated and can be staked to receive
- $TRVL. Use your $TRVL to
- upgrade your wonderlust Nomad and receive perks within the community!
+ Each NoMad is randomly generated and can be staked to receive
+ $TRVL.
+
+
Use your $TRVL to enhance your NoMadic experience
+
and unlock exclusive experiences!
diff --git a/components/ItemBox.tsx b/components/ItemBox.tsx
new file mode 100644
index 0000000..afb18aa
--- /dev/null
+++ b/components/ItemBox.tsx
@@ -0,0 +1,22 @@
+import { Center } from "@chakra-ui/react"
+import { ReactNode } from "react"
+
+
+export const ItemBox = ({
+ children,
+ bgColor,
+}: {
+ children: ReactNode,
+ bgColor?: string
+}) => {
+ return(
+
+ {children}
+
+ )
+}
\ No newline at end of file
diff --git a/components/MainLayout.tsx b/components/MainLayout.tsx
index f46d7a1..d69407b 100644
--- a/components/MainLayout.tsx
+++ b/components/MainLayout.tsx
@@ -7,12 +7,13 @@ import { useWallet } from '@solana/wallet-adapter-react'
const MainLayout: FC<{ children: ReactNode }> = ({ children}) => {
const { connected } = useWallet()
+
return (
-
CoinPad
-
-
+
WAGMI.Travel
+
+
= ({ children}) => {
+
+
{ children }
+
+
- {/*
Built by @BlockFather
- */}
+
diff --git a/components/StakeOptionsDisplay.tsx b/components/StakeOptionsDisplay.tsx
new file mode 100644
index 0000000..9f0b1f3
--- /dev/null
+++ b/components/StakeOptionsDisplay.tsx
@@ -0,0 +1,58 @@
+import{ VStack, Text, Button } from "@chakra-ui/react"
+import { useCallback } from "react"
+
+export const StakeOptionsDisplay = ({
+ isStaking,
+ daysStaked,
+ totalEarned,
+ claimable
+}: {
+ isStaking: boolean,
+ daysStaked: number,
+ totalEarned: number,
+ claimable: number
+}) => {
+ const handleStake = useCallback(() => {}, [])
+
+ const handleUnstake = useCallback(() => {}, [])
+
+ const handleClaim = useCallback(() => {}, [])
+
+ return (
+
+
+ {isStaking ? `STAKING ${daysStaked} DAY${daysStaked === 1 ? "" : "S"}` : "READY TO STAKE"}
+
+
+
+ {isStaking ? `${totalEarned} $TRVL` : "0 $TRVL"}
+
+
+ {isStaking ? `${claimable} $TRVL earned` : "earn $TRVL by staking"}
+
+
+
+ {isStaking ? : null}
+
+ )
+}
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
index 2b1d2ef..b2cd21c 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -65,30 +65,30 @@
}
},
"node_modules/@babel/compat-data": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.0.tgz",
- "integrity": "sha512-y5rqgTTPTmaF5e2nVhOxw+Ur9HDJLsWb6U/KpgUzRZEdPfE6VOubXBKLdbcUTijzRptednSBDQbYZBOSqJxpJw==",
+ "version": "7.19.4",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.4.tgz",
+ "integrity": "sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw==",
"peer": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.19.0.tgz",
- "integrity": "sha512-reM4+U7B9ss148rh2n1Qs9ASS+w94irYXga7c2jaQv9RVzpS7Mv1a9rnYYwuDa45G+DkORt9g6An2k/V4d9LbQ==",
+ "version": "7.19.6",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.19.6.tgz",
+ "integrity": "sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==",
"peer": true,
"dependencies": {
"@ampproject/remapping": "^2.1.0",
"@babel/code-frame": "^7.18.6",
- "@babel/generator": "^7.19.0",
- "@babel/helper-compilation-targets": "^7.19.0",
- "@babel/helper-module-transforms": "^7.19.0",
- "@babel/helpers": "^7.19.0",
- "@babel/parser": "^7.19.0",
+ "@babel/generator": "^7.19.6",
+ "@babel/helper-compilation-targets": "^7.19.3",
+ "@babel/helper-module-transforms": "^7.19.6",
+ "@babel/helpers": "^7.19.4",
+ "@babel/parser": "^7.19.6",
"@babel/template": "^7.18.10",
- "@babel/traverse": "^7.19.0",
- "@babel/types": "^7.19.0",
+ "@babel/traverse": "^7.19.6",
+ "@babel/types": "^7.19.4",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
@@ -103,25 +103,13 @@
"url": "https://opencollective.com/babel"
}
},
- "node_modules/@babel/core/node_modules/json5": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz",
- "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==",
- "peer": true,
- "bin": {
- "json5": "lib/cli.js"
- },
- "engines": {
- "node": ">=6"
- }
- },
"node_modules/@babel/generator": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.0.tgz",
- "integrity": "sha512-S1ahxf1gZ2dpoiFgA+ohK9DIpz50bJ0CWs7Zlzb54Z4sG8qmdIrGrVqmy1sAtTVRb+9CU6U8VqT9L0Zj7hxHVg==",
+ "version": "7.19.6",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.6.tgz",
+ "integrity": "sha512-oHGRUQeoX1QrKeJIKVe0hwjGqNnVYsM5Nep5zo0uE0m42sLH+Fsd2pStJ5sRM1bNyTUUoz0pe2lTeMJrb/taTA==",
"peer": true,
"dependencies": {
- "@babel/types": "^7.19.0",
+ "@babel/types": "^7.19.4",
"@jridgewell/gen-mapping": "^0.3.2",
"jsesc": "^2.5.1"
},
@@ -144,14 +132,14 @@
}
},
"node_modules/@babel/helper-compilation-targets": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.0.tgz",
- "integrity": "sha512-Ai5bNWXIvwDvWM7njqsG3feMlL9hCVQsPYXodsZyLwshYkZVJt59Gftau4VrE8S9IT9asd2uSP1hG6wCNw+sXA==",
+ "version": "7.19.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz",
+ "integrity": "sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==",
"peer": true,
"dependencies": {
- "@babel/compat-data": "^7.19.0",
+ "@babel/compat-data": "^7.19.3",
"@babel/helper-validator-option": "^7.18.6",
- "browserslist": "^4.20.2",
+ "browserslist": "^4.21.3",
"semver": "^6.3.0"
},
"engines": {
@@ -207,19 +195,19 @@
}
},
"node_modules/@babel/helper-module-transforms": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.0.tgz",
- "integrity": "sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==",
+ "version": "7.19.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.6.tgz",
+ "integrity": "sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw==",
"peer": true,
"dependencies": {
"@babel/helper-environment-visitor": "^7.18.9",
"@babel/helper-module-imports": "^7.18.6",
- "@babel/helper-simple-access": "^7.18.6",
+ "@babel/helper-simple-access": "^7.19.4",
"@babel/helper-split-export-declaration": "^7.18.6",
- "@babel/helper-validator-identifier": "^7.18.6",
+ "@babel/helper-validator-identifier": "^7.19.1",
"@babel/template": "^7.18.10",
- "@babel/traverse": "^7.19.0",
- "@babel/types": "^7.19.0"
+ "@babel/traverse": "^7.19.6",
+ "@babel/types": "^7.19.4"
},
"engines": {
"node": ">=6.9.0"
@@ -234,12 +222,12 @@
}
},
"node_modules/@babel/helper-simple-access": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz",
- "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==",
+ "version": "7.19.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz",
+ "integrity": "sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==",
"peer": true,
"dependencies": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.19.4"
},
"engines": {
"node": ">=6.9.0"
@@ -258,17 +246,17 @@
}
},
"node_modules/@babel/helper-string-parser": {
- "version": "7.18.10",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz",
- "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==",
+ "version": "7.19.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz",
+ "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz",
- "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==",
+ "version": "7.19.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
+ "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==",
"engines": {
"node": ">=6.9.0"
}
@@ -283,14 +271,14 @@
}
},
"node_modules/@babel/helpers": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.0.tgz",
- "integrity": "sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==",
+ "version": "7.19.4",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.4.tgz",
+ "integrity": "sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw==",
"peer": true,
"dependencies": {
"@babel/template": "^7.18.10",
- "@babel/traverse": "^7.19.0",
- "@babel/types": "^7.19.0"
+ "@babel/traverse": "^7.19.4",
+ "@babel/types": "^7.19.4"
},
"engines": {
"node": ">=6.9.0"
@@ -309,74 +297,10 @@
"node": ">=6.9.0"
}
},
- "node_modules/@babel/highlight/node_modules/ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dependencies": {
- "color-convert": "^1.9.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@babel/highlight/node_modules/chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dependencies": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@babel/highlight/node_modules/color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "dependencies": {
- "color-name": "1.1.3"
- }
- },
- "node_modules/@babel/highlight/node_modules/color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
- },
- "node_modules/@babel/highlight/node_modules/escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
- "engines": {
- "node": ">=0.8.0"
- }
- },
- "node_modules/@babel/highlight/node_modules/has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/@babel/highlight/node_modules/supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dependencies": {
- "has-flag": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/@babel/parser": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.0.tgz",
- "integrity": "sha512-74bEXKX2h+8rrfQUfsBfuZZHzsEs6Eql4pqy/T4Nn6Y9wNPggQOqD6z6pn5Bl8ZfysKouFZT/UXEH94ummEeQw==",
+ "version": "7.19.6",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.6.tgz",
+ "integrity": "sha512-h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA==",
"peer": true,
"bin": {
"parser": "bin/babel-parser.js"
@@ -400,10 +324,9 @@
}
},
"node_modules/@babel/runtime": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz",
- "integrity": "sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==",
- "license": "MIT",
+ "version": "7.19.4",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.4.tgz",
+ "integrity": "sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==",
"dependencies": {
"regenerator-runtime": "^0.13.4"
},
@@ -412,13 +335,12 @@
}
},
"node_modules/@babel/runtime-corejs3": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.0.tgz",
- "integrity": "sha512-JyXXoCu1N8GLuKc2ii8y5RGma5FMpFeO2nAQIe0Yzrbq+rQnN+sFj47auLblR5ka6aHNGPDgv8G/iI2Grb0ldQ==",
+ "version": "7.19.6",
+ "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.6.tgz",
+ "integrity": "sha512-oWNn1ZlGde7b4i/3tnixpH9qI0bOAACiUs+KEES4UUCnsPjVWFlWdLV/iwJuPC2qp3EowbAqsm+0XqNwnwYhxA==",
"dev": true,
- "license": "MIT",
"dependencies": {
- "core-js-pure": "^3.20.2",
+ "core-js-pure": "^3.25.1",
"regenerator-runtime": "^0.13.4"
},
"engines": {
@@ -440,19 +362,19 @@
}
},
"node_modules/@babel/traverse": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.0.tgz",
- "integrity": "sha512-4pKpFRDh+utd2mbRC8JLnlsMUii3PMHjpL6a0SZ4NMZy7YFP9aXORxEhdMVOc9CpWtDF09IkciQLEhK7Ml7gRA==",
+ "version": "7.19.6",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.6.tgz",
+ "integrity": "sha512-6l5HrUCzFM04mfbG09AagtYyR2P0B71B1wN7PfSPiksDPz2k5H9CBC1tcZpz2M8OxbKTPccByoOJ22rUKbpmQQ==",
"peer": true,
"dependencies": {
"@babel/code-frame": "^7.18.6",
- "@babel/generator": "^7.19.0",
+ "@babel/generator": "^7.19.6",
"@babel/helper-environment-visitor": "^7.18.9",
"@babel/helper-function-name": "^7.19.0",
"@babel/helper-hoist-variables": "^7.18.6",
"@babel/helper-split-export-declaration": "^7.18.6",
- "@babel/parser": "^7.19.0",
- "@babel/types": "^7.19.0",
+ "@babel/parser": "^7.19.6",
+ "@babel/types": "^7.19.4",
"debug": "^4.1.0",
"globals": "^11.1.0"
},
@@ -460,22 +382,13 @@
"node": ">=6.9.0"
}
},
- "node_modules/@babel/traverse/node_modules/globals": {
- "version": "11.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
- "peer": true,
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/@babel/types": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.0.tgz",
- "integrity": "sha512-YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA==",
+ "version": "7.19.4",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.4.tgz",
+ "integrity": "sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==",
"dependencies": {
- "@babel/helper-string-parser": "^7.18.10",
- "@babel/helper-validator-identifier": "^7.18.6",
+ "@babel/helper-string-parser": "^7.19.4",
+ "@babel/helper-validator-identifier": "^7.19.1",
"to-fast-properties": "^2.0.0"
},
"engines": {
@@ -496,6 +409,22 @@
"@solana/web3.js": "^1.30.2"
}
},
+ "node_modules/@blocto/sdk/node_modules/base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/@blocto/sdk/node_modules/bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "dependencies": {
+ "base-x": "^3.0.2"
+ }
+ },
"node_modules/@bundlr-network/client": {
"version": "0.7.17",
"resolved": "https://registry.npmjs.org/@bundlr-network/client/-/client-0.7.17.tgz",
@@ -525,33 +454,33 @@
"bundlr": "build/node/cli.js"
}
},
- "node_modules/@bundlr-network/client/node_modules/axios": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz",
- "integrity": "sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==",
+ "node_modules/@bundlr-network/client/node_modules/base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
"dependencies": {
- "follow-redirects": "^1.14.7"
+ "safe-buffer": "^5.0.1"
}
},
- "node_modules/@bundlr-network/client/node_modules/commander": {
- "version": "8.3.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
- "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
- "engines": {
- "node": ">= 12"
+ "node_modules/@bundlr-network/client/node_modules/bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "dependencies": {
+ "base-x": "^3.0.2"
}
},
"node_modules/@chakra-ui/accordion": {
- "version": "2.0.12",
- "resolved": "https://registry.npmjs.org/@chakra-ui/accordion/-/accordion-2.0.12.tgz",
- "integrity": "sha512-O3qq8mILo1QODjCGr2xwxC5LNFakBoMzTjEgpvpIMynxWc/1RKfGuFLis3IDfpHIicXmBTK6sNiZXewmna88CQ==",
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/accordion/-/accordion-2.1.2.tgz",
+ "integrity": "sha512-Jf7A6I0eIGk34zO5TiTW8orJOFQb5A/D1ekNYbaukNccoUPKJg/xdQ/b00oIR6LT93nJxggkoP/vszfmmTHuFg==",
"dependencies": {
- "@chakra-ui/descendant": "3.0.9",
- "@chakra-ui/icon": "3.0.9",
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/react-use-controllable-state": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/transition": "2.0.9"
+ "@chakra-ui/descendant": "3.0.10",
+ "@chakra-ui/icon": "3.0.11",
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/react-use-controllable-state": "2.0.5",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/transition": "2.0.11"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -560,13 +489,13 @@
}
},
"node_modules/@chakra-ui/alert": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/alert/-/alert-2.0.9.tgz",
- "integrity": "sha512-hFRIh6ZzQJ0sAESRym15mW/mcZE/yu4z6lFtdToBhpfSlhZLuE7gDdOTxqGkg417hY//48NiNXOCoQ2dUUuHKw==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/alert/-/alert-2.0.11.tgz",
+ "integrity": "sha512-n40KHU3j1H6EbIdgptjEad92V7Fpv7YD++ZBjy2g1h4w9ay9nw4kGHib3gaIkBupLf52CfLqySEc8w0taoIlXQ==",
"dependencies": {
- "@chakra-ui/icon": "3.0.9",
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/spinner": "2.0.9"
+ "@chakra-ui/icon": "3.0.11",
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/spinner": "2.0.10"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -574,18 +503,18 @@
}
},
"node_modules/@chakra-ui/anatomy": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/@chakra-ui/anatomy/-/anatomy-2.0.6.tgz",
- "integrity": "sha512-Vgop2FFdhVtX7BydjZdJWZAWy+DdXBU1IMaBppz6COaH+/7OXxoI2ec2bs17ehJyBO0M+ud3OLj5UCFQ79YsoQ=="
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/anatomy/-/anatomy-2.0.7.tgz",
+ "integrity": "sha512-vzcB2gcsGCxhrKbldQQV6LnBPys4eSSsH2UA2mLsT+J3WlXw0aodZw0eE/nH7yLxe4zaQ4Gnc0KjkFW4EWNKSg=="
},
"node_modules/@chakra-ui/avatar": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/@chakra-ui/avatar/-/avatar-2.1.0.tgz",
- "integrity": "sha512-SRQeH6NNvIBgUc4OsO14ypvcn8I66ndw7r4piIkm+R2zqbYnrzpp1d2zNPNHkChc4xQY71/GenenYO5Fhsi2DA==",
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/avatar/-/avatar-2.2.0.tgz",
+ "integrity": "sha512-mpAkfr/JG+BNBw2WvU55CSRFYKeFBUyAQAu3YulznLzi2U3e7k3IA0J8ofbrDYlSH/9KqkDuuSrxqGZgct+Nug==",
"dependencies": {
- "@chakra-ui/image": "2.0.10",
- "@chakra-ui/react-children-utils": "2.0.1",
- "@chakra-ui/react-context": "2.0.3"
+ "@chakra-ui/image": "2.0.11",
+ "@chakra-ui/react-children-utils": "2.0.3",
+ "@chakra-ui/react-context": "2.0.4"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -593,12 +522,12 @@
}
},
"node_modules/@chakra-ui/breadcrumb": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/breadcrumb/-/breadcrumb-2.0.9.tgz",
- "integrity": "sha512-cc3WbxrJNRUph4v45qCdcIKJI0xECeV9VikQNIactBB+iexN4d+5P66xZABAkD8wWGmyH5KuSZcd9sFYNmC13w==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/breadcrumb/-/breadcrumb-2.1.0.tgz",
+ "integrity": "sha512-khBR579SLDEo6Wuo3tETRY6m0yJD/WCvSR7Res2g1B6OJgc9OQGM7yIMu4OdLUTwfXsCnlHTDoSQPUxFOVAMIQ==",
"dependencies": {
- "@chakra-ui/react-children-utils": "2.0.1",
- "@chakra-ui/react-context": "2.0.3"
+ "@chakra-ui/react-children-utils": "2.0.3",
+ "@chakra-ui/react-context": "2.0.4"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -606,18 +535,18 @@
}
},
"node_modules/@chakra-ui/breakpoint-utils": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/breakpoint-utils/-/breakpoint-utils-2.0.3.tgz",
- "integrity": "sha512-smi41ZtaiPw4mXaCgicyAh5M45Drt20wypThP+qQUT2CQ51UFZhYlItRA2lCXKQ9QB83POcHPC/oAwIsNOAfTg=="
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/breakpoint-utils/-/breakpoint-utils-2.0.4.tgz",
+ "integrity": "sha512-SUUEYnA/FCIKYDHMuEXcnBMwet+6RAAjQ+CqGD1hlwKPTfh7EK9fS8FoVAJa9KpRKAc/AawzPkgwvorzPj8NSg=="
},
"node_modules/@chakra-ui/button": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/button/-/button-2.0.9.tgz",
- "integrity": "sha512-4BuDBiBlChHW1rQ9iod9MKs87AY3IyvZQwjV3DZTU4IG0KcDDfLQf++jj4dkg9Ttu+pIWhwF42pzA40JxW1oNg==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/button/-/button-2.0.11.tgz",
+ "integrity": "sha512-J6iMRITqxTxa0JexHUY9c7BXUrTZtSkl3jZ2hxiFybB4MQL8J2wZ24O846B6M+WTYqy7XVuHRuVURnH4czWesw==",
"dependencies": {
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/spinner": "2.0.9"
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/spinner": "2.0.10"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -625,19 +554,19 @@
}
},
"node_modules/@chakra-ui/checkbox": {
- "version": "2.1.8",
- "resolved": "https://registry.npmjs.org/@chakra-ui/checkbox/-/checkbox-2.1.8.tgz",
- "integrity": "sha512-HhRs3nwTFoIE/UpX4N2AZxxW39Xm/Vw01HjwP/59X60kdKs3RBXlm52cODkfUDfveyT9o5ezLhU/jRf0qA909Q==",
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/checkbox/-/checkbox-2.2.2.tgz",
+ "integrity": "sha512-Y6Zbkkk5VNoe0RzqU6F+rKlFVPlubz1KIgYcb7CCNHGOM97dLtRm78eAvJ+7Xmpitr+7zZ4hJLLjfAz+e1X7rA==",
"dependencies": {
- "@chakra-ui/form-control": "2.0.9",
- "@chakra-ui/react-context": "2.0.3",
+ "@chakra-ui/form-control": "2.0.11",
+ "@chakra-ui/react-context": "2.0.4",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-callback-ref": "2.0.3",
- "@chakra-ui/react-use-controllable-state": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/react-use-safe-layout-effect": "2.0.1",
- "@chakra-ui/react-use-update-effect": "2.0.3",
- "@chakra-ui/visually-hidden": "2.0.9",
+ "@chakra-ui/react-use-callback-ref": "2.0.4",
+ "@chakra-ui/react-use-controllable-state": "2.0.5",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/react-use-safe-layout-effect": "2.0.2",
+ "@chakra-ui/react-use-update-effect": "2.0.4",
+ "@chakra-ui/visually-hidden": "2.0.11",
"@zag-js/focus-visible": "0.1.0"
},
"peerDependencies": {
@@ -647,22 +576,22 @@
}
},
"node_modules/@chakra-ui/clickable": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/clickable/-/clickable-2.0.9.tgz",
- "integrity": "sha512-tGXYM6M6I954fif98QkNu5M76oBZmksCTj2mILOan9/BSimpFpu06aPGX3ZIkNsz300nIObn0FdtMvKpIEQueA==",
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/clickable/-/clickable-2.0.10.tgz",
+ "integrity": "sha512-G6JdR6yAMlXpfjOJ70W2FL7aUwNuomiMFtkneeTpk7Q42bJ5iGHfYlbZEx5nJd8iB+UluXVM4xlhMv2MyytjGw==",
"dependencies": {
- "@chakra-ui/react-use-merge-refs": "2.0.3"
+ "@chakra-ui/react-use-merge-refs": "2.0.4"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/close-button": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/close-button/-/close-button-2.0.9.tgz",
- "integrity": "sha512-0RI/zLR+/mycGbYCCwDAc9hAVG7IIVmdikmo1ET7+rYip4TN94aWR0hA4dYtWqqghG1oW/pYQ9Yja6fEY90V5w==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/close-button/-/close-button-2.0.11.tgz",
+ "integrity": "sha512-9WF/nwwK9BldS89WQ5PtXK2nFS4r8QOgKls2BOwXfE+rGmOUZtOsu8ne/drXRjgkiBRETR6CxdyUjm7EPzXllw==",
"dependencies": {
- "@chakra-ui/icon": "3.0.9"
+ "@chakra-ui/icon": "3.0.11"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -670,76 +599,77 @@
}
},
"node_modules/@chakra-ui/color-mode": {
- "version": "2.1.7",
- "resolved": "https://registry.npmjs.org/@chakra-ui/color-mode/-/color-mode-2.1.7.tgz",
- "integrity": "sha512-GAoKJzVRQeuEfCa2i0BZdMwxuOoaGknU3+5wgvLuaSpwlov4OyqpjKMRdSdpjr4IFiqqHK47dsr3H4LQsbO+9w==",
+ "version": "2.1.9",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/color-mode/-/color-mode-2.1.9.tgz",
+ "integrity": "sha512-0kx0I+AQon8oS23/X+qMtnhsv/1BUulyJvU56p3Uh8CRaBfgJ7Ly9CerShoUL+5kadu6hN1M9oty4cugaCwv2w==",
"dependencies": {
- "@chakra-ui/react-use-safe-layout-effect": "2.0.1"
+ "@chakra-ui/react-use-safe-layout-effect": "2.0.2"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/control-box": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/control-box/-/control-box-2.0.9.tgz",
- "integrity": "sha512-/viS9OBah1wCLNZbgfwkoQOnVRUYgp8Gypjqk9QNQwnNdFUTEgWc1RWN+1RYO85esJzHLkA2hZFIrYu1TZeZ6g==",
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/control-box/-/control-box-2.0.10.tgz",
+ "integrity": "sha512-sHmZanFLEv4IDATl19ZTxq8Bi8PtjfvnsN6xF4k7JGSYUnk1YXUf1coyW7WKdcsczOASrMikfsLc3iEVAzx4Ng==",
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
"react": ">=18"
}
},
"node_modules/@chakra-ui/counter": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/counter/-/counter-2.0.9.tgz",
- "integrity": "sha512-LuqtpyxCOZM19gAmV0vtVeaFd9ccPmEjoGJQ0NoO8CFheltgLC/7m/8YpDbgWiG4+BAkTUfIG+5nLg5hwvvQxw==",
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/counter/-/counter-2.0.10.tgz",
+ "integrity": "sha512-MZK8UKUZp4nFMd+GlV/cq0NIARS7UdlubTuCx+wockw9j2JI5OHzsyK0XiWuJiq5psegSTzpbtT99QfAUm3Yiw==",
"dependencies": {
- "@chakra-ui/number-utils": "2.0.3",
- "@chakra-ui/react-use-callback-ref": "2.0.3"
+ "@chakra-ui/number-utils": "2.0.4",
+ "@chakra-ui/react-use-callback-ref": "2.0.4"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/css-reset": {
- "version": "2.0.7",
- "resolved": "https://registry.npmjs.org/@chakra-ui/css-reset/-/css-reset-2.0.7.tgz",
- "integrity": "sha512-ztGdFQ6U1hX2k6a3HZ8D3A/dZWVxlGe2F5mvUrRU554mFWBYmsq0ydZ7UBEPlykv9NoCz4nN8VCkIxcKJ3p29Q==",
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/css-reset/-/css-reset-2.0.8.tgz",
+ "integrity": "sha512-VuDD1rk1pFc+dItk4yUcstyoC9D2B35hatHDBtlPMqTczFAzpbgVJJYgEHANatXGfulM5SdckmYEIJ3Tac1Rtg==",
"peerDependencies": {
"@emotion/react": ">=10.0.35",
"react": ">=18"
}
},
"node_modules/@chakra-ui/descendant": {
- "version": "3.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/descendant/-/descendant-3.0.9.tgz",
- "integrity": "sha512-30E5yMWvxgBx43PoI/67r9h9OhbpDfLb/MLOCjtEwebSbD0V5+fmnmCoUELScQbhozQVjA9t195X6UP0VQWj8w==",
+ "version": "3.0.10",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/descendant/-/descendant-3.0.10.tgz",
+ "integrity": "sha512-MHH0Qdm0fGllGP2xgx4WOycmrpctyyEdGw6zxcfs2VqZNlrwmjG3Yb9eVY+Q7UmEv5rwAq6qRn7BhQxgSPn3Cg==",
"dependencies": {
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3"
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/react-use-merge-refs": "2.0.4"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/dom-utils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/dom-utils/-/dom-utils-2.0.1.tgz",
- "integrity": "sha512-sbob9AHQq1+KIQ3XKslafislwtC8pYcpwM0S1SLzgyZumHRwhDimKwdi4MtRQfOCenub0E3diRjp4RpGRL0JuQ=="
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/dom-utils/-/dom-utils-2.0.3.tgz",
+ "integrity": "sha512-aeGlRmTxcv0cvW44DyeZHru1i68ZDQsXpfX2dnG1I1yBlT6GlVx1xYjCULis9mjhgvd2O3NfcYPRTkjNWTDUbA=="
},
"node_modules/@chakra-ui/editable": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/editable/-/editable-2.0.9.tgz",
- "integrity": "sha512-s5F3UMR09s6ga3eVhw0UBMGmegtxg6jCp29VLqaEwP5BuWIEOjcJz358gTlnFr3dhvb31e3rcr+B1XiYv4wxqg==",
+ "version": "2.0.13",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/editable/-/editable-2.0.13.tgz",
+ "integrity": "sha512-GM3n8t3/TOFFcDOWF/tuKsnqn66isZLsU+FkMRY2o0E8XjLBGjCKuXInPW5SRBqhje7EHC+kwViLE780PfwXbw==",
"dependencies": {
- "@chakra-ui/react-context": "2.0.3",
+ "@chakra-ui/react-context": "2.0.4",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-controllable-state": "2.0.3",
- "@chakra-ui/react-use-focus-on-pointer-down": "2.0.1",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/react-use-safe-layout-effect": "2.0.1",
- "@chakra-ui/react-use-update-effect": "2.0.3",
- "@chakra-ui/shared-utils": "2.0.1"
+ "@chakra-ui/react-use-callback-ref": "2.0.4",
+ "@chakra-ui/react-use-controllable-state": "2.0.5",
+ "@chakra-ui/react-use-focus-on-pointer-down": "2.0.3",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/react-use-safe-layout-effect": "2.0.2",
+ "@chakra-ui/react-use-update-effect": "2.0.4",
+ "@chakra-ui/shared-utils": "2.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -747,16 +677,16 @@
}
},
"node_modules/@chakra-ui/event-utils": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/@chakra-ui/event-utils/-/event-utils-2.0.4.tgz",
- "integrity": "sha512-J2YgAM5Dw9hMkwfMsWhsiAG848GfTMxNclUIUcgV9RQhLEs0eTFhelzNiKVOMA3vBxlT6lOARuRun/ESiFZgGg=="
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/event-utils/-/event-utils-2.0.5.tgz",
+ "integrity": "sha512-VXoOAIsM0PFKDlhm+EZxkWlUXd5UFTb/LTux3y3A+S9G5fDxLRvpiLWByPUgTFTCDFcgTCF+YnQtdWJB4DLyxg=="
},
"node_modules/@chakra-ui/focus-lock": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/focus-lock/-/focus-lock-2.0.10.tgz",
- "integrity": "sha512-LeRZYzwfJp0eq84oO8e1pC2qC8v8fJw/P4nYDrCDjuJU753DV6nVjp5MKMRqbkp+6IAElPc+ojy/sp2a9GCocw==",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/focus-lock/-/focus-lock-2.0.12.tgz",
+ "integrity": "sha512-NvIP59A11ZNbxXZ3qwxSiQ5npjABkpSbTIjK0uZ9bZm5LMfepRnuuA19VsVlq31/BYV9nHFAy6xzIuG+Qf9xMA==",
"dependencies": {
- "@chakra-ui/dom-utils": "2.0.1",
+ "@chakra-ui/dom-utils": "2.0.3",
"react-focus-lock": "^2.9.1"
},
"peerDependencies": {
@@ -764,14 +694,14 @@
}
},
"node_modules/@chakra-ui/form-control": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/form-control/-/form-control-2.0.9.tgz",
- "integrity": "sha512-P8Tr45z/XSAa1m6uAma0eKf1h7Ltg2sLj2jK5YhaXJER9VUUY18iGe96D4JrAXlgEWDhTyWMb63nB+eYO1tKtw==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/form-control/-/form-control-2.0.11.tgz",
+ "integrity": "sha512-MVhIe0xY4Zn06IXRXFmS9tCa93snppK1SdUQb1P99Ipo424RrL5ykzLnJ8CAkQrhoVP3sxF7z3eOSzk8/iRfow==",
"dependencies": {
- "@chakra-ui/icon": "3.0.9",
- "@chakra-ui/react-context": "2.0.3",
+ "@chakra-ui/icon": "3.0.11",
+ "@chakra-ui/react-context": "2.0.4",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3"
+ "@chakra-ui/react-use-merge-refs": "2.0.4"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -779,12 +709,12 @@
}
},
"node_modules/@chakra-ui/hooks": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/hooks/-/hooks-2.0.9.tgz",
- "integrity": "sha512-0JRgEPtsBaXr9nQW1xEKlWGA7WwFbLNqac7fQXp9zQvoHOWTfNJkK/NJaVBvyFPgfTLxy37WKHooVSwNG/Lwmg==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/hooks/-/hooks-2.1.0.tgz",
+ "integrity": "sha512-4H6BDITq/YrStW99LXurgPkcz4qHSVy9V/QWXCvt1pCuiDTqNztiW4r508H3ApAOsL9NEbyXcM/zWYD7r5VDjA==",
"dependencies": {
- "@chakra-ui/react-utils": "2.0.6",
- "@chakra-ui/utils": "2.0.9",
+ "@chakra-ui/react-utils": "2.0.8",
+ "@chakra-ui/utils": "2.0.11",
"compute-scroll-into-view": "1.0.14",
"copy-to-clipboard": "3.3.1"
},
@@ -793,11 +723,11 @@
}
},
"node_modules/@chakra-ui/icon": {
- "version": "3.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-3.0.9.tgz",
- "integrity": "sha512-P2Pwm/za6m1W1oqL2kGHH6XrrymsBjqYAFwOW2lB5Q6mI1e+RYe/iMxDoPSLHMYhqdfH7vyib/ffE3Vv3a5oTA==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-3.0.11.tgz",
+ "integrity": "sha512-RG4jf/XmBdaxOYI5J5QstEtTCPoVlmrQ/XiWhvN0LTgAnmZIqVwFl3Uw+satArdStHAs0GmJZg/E/soFTWuFmw==",
"dependencies": {
- "@chakra-ui/shared-utils": "2.0.1"
+ "@chakra-ui/shared-utils": "2.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -805,11 +735,11 @@
}
},
"node_modules/@chakra-ui/icons": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/icons/-/icons-2.0.9.tgz",
- "integrity": "sha512-6xvV2rC8wATgfnRH+fC9mi0nLcgKjhHKO29lV1pGioVI0yWK0dqc//zjcyBhMMpW5ABnSfig7ujVBf3op/Syzg==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/icons/-/icons-2.0.11.tgz",
+ "integrity": "sha512-WjxrFMt9hHpuZlnBh4fhtGOkIVlwYwHNmwq4sJGxYWlg8UnEhVJMoOojheJDy/d3Gp9+ApetlK3vt8fV/rZamg==",
"dependencies": {
- "@chakra-ui/icon": "3.0.9"
+ "@chakra-ui/icon": "3.0.11"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -817,11 +747,11 @@
}
},
"node_modules/@chakra-ui/image": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/image/-/image-2.0.10.tgz",
- "integrity": "sha512-Atc1bdog4V5xv7IbpF2F2UkKWfgG/TD74cIac09JuSpQcYyh7lrJ7iVvhTkeP+LDdCs+QCD7SnTUM4Y0ZlaHbA==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/image/-/image-2.0.11.tgz",
+ "integrity": "sha512-S6NqAprPcbHnck/J+2wg06r9SSol62v5A01O8Kke2PnAyjalMcS+6P59lDRO7wvPqsdxq4PPbSTZP6Dww2CvcA==",
"dependencies": {
- "@chakra-ui/react-use-safe-layout-effect": "2.0.1"
+ "@chakra-ui/react-use-safe-layout-effect": "2.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -829,15 +759,15 @@
}
},
"node_modules/@chakra-ui/input": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/input/-/input-2.0.9.tgz",
- "integrity": "sha512-6MKydxTyF7JV7PtQHircQ5HBTd6Ik9Vn7p8fCLeAieT0TK8UQTxMWZVPminS7TRWMutrq8W99DcQOBlMz0cKrw==",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/input/-/input-2.0.12.tgz",
+ "integrity": "sha512-lJ5necu+Wt698HdCTC7L/ErA2nNVJAra7+knPe0qMR+AizGEL7LKCV/bdQe7eggjvKsDGD4alJIEczUvm3JVUQ==",
"dependencies": {
- "@chakra-ui/form-control": "2.0.9",
- "@chakra-ui/object-utils": "2.0.3",
- "@chakra-ui/react-children-utils": "2.0.1",
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/shared-utils": "2.0.1"
+ "@chakra-ui/form-control": "2.0.11",
+ "@chakra-ui/object-utils": "2.0.4",
+ "@chakra-ui/react-children-utils": "2.0.3",
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/shared-utils": "2.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -845,16 +775,16 @@
}
},
"node_modules/@chakra-ui/layout": {
- "version": "2.1.6",
- "resolved": "https://registry.npmjs.org/@chakra-ui/layout/-/layout-2.1.6.tgz",
- "integrity": "sha512-QDNaVu44UI46c+YlSF1KrzJkiwua0UtRXNTnR3jBE1uzcuqRow7xgr3E60dLphY2cPFqAljfQZUNlP3sgvCLww==",
+ "version": "2.1.9",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/layout/-/layout-2.1.9.tgz",
+ "integrity": "sha512-ztsavtirtdtjxdqIkGR6fVcrffHp6hs1twRFO/dK14FGXrX3Nn9mi3J1fr1ITBHJq6y5B3yFEj0LHN2fO8dYyw==",
"dependencies": {
- "@chakra-ui/breakpoint-utils": "2.0.3",
- "@chakra-ui/icon": "3.0.9",
- "@chakra-ui/object-utils": "2.0.3",
- "@chakra-ui/react-children-utils": "2.0.1",
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/shared-utils": "2.0.1"
+ "@chakra-ui/breakpoint-utils": "2.0.4",
+ "@chakra-ui/icon": "3.0.11",
+ "@chakra-ui/object-utils": "2.0.4",
+ "@chakra-ui/react-children-utils": "2.0.3",
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/shared-utils": "2.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -862,25 +792,25 @@
}
},
"node_modules/@chakra-ui/lazy-utils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/lazy-utils/-/lazy-utils-2.0.1.tgz",
- "integrity": "sha512-986YjYq+hEzHDLZiqYlYbdqfiKdC3h2g896Eoe5K2UXtAVxqZI3UOnMH781X6N1R7rGJWquskzG681qFigW/BA=="
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/lazy-utils/-/lazy-utils-2.0.2.tgz",
+ "integrity": "sha512-MTxutBJZvqNNqrrS0722cI7qrnGu0yUQpIebmTxYwI+F3cOnPEKf5Ni+hrA8hKcw4XJhSY4npAPPYu1zJbOV4w=="
},
"node_modules/@chakra-ui/live-region": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/live-region/-/live-region-2.0.9.tgz",
- "integrity": "sha512-ilbo/C5wcUoSHDU5owFPQP3KsabPYGzDEbwV+Z76BlyNdFN2PD0j13RGEH+sBNNZ3HzLyyuuc1YmkVcJi7ycQg==",
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/live-region/-/live-region-2.0.10.tgz",
+ "integrity": "sha512-eQ2ZIreR/plzi/KGszDYTi1TvIyGEBcPiWP52BQOS7xwpzb1vsoR1FgFAIELxAGJvKnMUs+9qVogfyRBX8PdOg==",
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/media-query": {
- "version": "3.2.5",
- "resolved": "https://registry.npmjs.org/@chakra-ui/media-query/-/media-query-3.2.5.tgz",
- "integrity": "sha512-V+Dngi/r7u/uj7JhsZerM1RI597Oo4wED2ojNfclnnEVb/IoqktiuFy6RQgbo3HmE7M/E5B1i4yYzt7tQJhXlg==",
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/media-query/-/media-query-3.2.7.tgz",
+ "integrity": "sha512-hbgm6JCe0kYU3PAhxASYYDopFQI26cW9kZnbp+5tRL1fykkVWNMPwoGC8FEZPur9JjXp7aoL6H4Jk7nrxY/XWw==",
"dependencies": {
- "@chakra-ui/breakpoint-utils": "2.0.3",
- "@chakra-ui/react-env": "2.0.9"
+ "@chakra-ui/breakpoint-utils": "2.0.4",
+ "@chakra-ui/react-env": "2.0.10"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -888,24 +818,24 @@
}
},
"node_modules/@chakra-ui/menu": {
- "version": "2.0.13",
- "resolved": "https://registry.npmjs.org/@chakra-ui/menu/-/menu-2.0.13.tgz",
- "integrity": "sha512-XZYoq9k/txAELUgn5OokyxfXEpVZwBueVYXiT9ji0XvMuzXVxeHd40klJEkiJUctNsOahZf10t5yxlT4B00pwA==",
- "dependencies": {
- "@chakra-ui/clickable": "2.0.9",
- "@chakra-ui/descendant": "3.0.9",
- "@chakra-ui/lazy-utils": "2.0.1",
- "@chakra-ui/popper": "3.0.7",
- "@chakra-ui/react-children-utils": "2.0.1",
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/react-use-animation-state": "2.0.3",
- "@chakra-ui/react-use-controllable-state": "2.0.3",
- "@chakra-ui/react-use-disclosure": "2.0.3",
- "@chakra-ui/react-use-focus-effect": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/react-use-outside-click": "2.0.3",
- "@chakra-ui/react-use-update-effect": "2.0.3",
- "@chakra-ui/transition": "2.0.9"
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/menu/-/menu-2.1.2.tgz",
+ "integrity": "sha512-6Z7ecXjp6BtZ1ExbFggfxsAj1hwtcathXekmCTxHpXOD+BdjAC/13+oLclwXeuBO85aoTmQrQ2ovfTkO31bzRQ==",
+ "dependencies": {
+ "@chakra-ui/clickable": "2.0.10",
+ "@chakra-ui/descendant": "3.0.10",
+ "@chakra-ui/lazy-utils": "2.0.2",
+ "@chakra-ui/popper": "3.0.8",
+ "@chakra-ui/react-children-utils": "2.0.3",
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/react-use-animation-state": "2.0.5",
+ "@chakra-ui/react-use-controllable-state": "2.0.5",
+ "@chakra-ui/react-use-disclosure": "2.0.5",
+ "@chakra-ui/react-use-focus-effect": "2.0.5",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/react-use-outside-click": "2.0.4",
+ "@chakra-ui/react-use-update-effect": "2.0.4",
+ "@chakra-ui/transition": "2.0.11"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -914,17 +844,17 @@
}
},
"node_modules/@chakra-ui/modal": {
- "version": "2.1.7",
- "resolved": "https://registry.npmjs.org/@chakra-ui/modal/-/modal-2.1.7.tgz",
- "integrity": "sha512-A+CbvhQYpmLH3SrqJ1wJysUCGm0mNoSDxRjP4wX98j56nMTDAsMYlzttpuLmKaSzvbJ7uEQDLtQV8lZjB0gUuw==",
- "dependencies": {
- "@chakra-ui/close-button": "2.0.9",
- "@chakra-ui/focus-lock": "2.0.10",
- "@chakra-ui/portal": "2.0.9",
- "@chakra-ui/react-context": "2.0.3",
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/modal/-/modal-2.2.2.tgz",
+ "integrity": "sha512-cCYuqLZO4QqFUI1H+uEqixDk6UiCP3yC+sxkhFTXHIApSG9Z44v5np7BVTd6LKdmAN8pAWcc8Oxf14RvD6LWLw==",
+ "dependencies": {
+ "@chakra-ui/close-button": "2.0.11",
+ "@chakra-ui/focus-lock": "2.0.12",
+ "@chakra-ui/portal": "2.0.10",
+ "@chakra-ui/react-context": "2.0.4",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/transition": "2.0.9",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/transition": "2.0.11",
"aria-hidden": "^1.1.1",
"react-remove-scroll": "^2.5.4"
},
@@ -936,21 +866,21 @@
}
},
"node_modules/@chakra-ui/number-input": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/number-input/-/number-input-2.0.9.tgz",
- "integrity": "sha512-RsDzoNvSBZMgyXjN543AtQ2v99U1p/0xnGWZy4NCkgCDWMBn3kIXqSzQq5CB9Ot0MD8nnKF5VYdVdXWguXExEQ==",
- "dependencies": {
- "@chakra-ui/counter": "2.0.9",
- "@chakra-ui/form-control": "2.0.9",
- "@chakra-ui/icon": "3.0.9",
- "@chakra-ui/react-context": "2.0.3",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/number-input/-/number-input-2.0.12.tgz",
+ "integrity": "sha512-3owLjl01sCYpTd3xbq//fJo9QJ0Q3PVYSx9JeOzlXnnTW8ws+yHPrqQzPe7G+tO4yOYynWuUT+NJ9oyCeAJIxA==",
+ "dependencies": {
+ "@chakra-ui/counter": "2.0.10",
+ "@chakra-ui/form-control": "2.0.11",
+ "@chakra-ui/icon": "3.0.11",
+ "@chakra-ui/react-context": "2.0.4",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-callback-ref": "2.0.3",
- "@chakra-ui/react-use-event-listener": "2.0.3",
- "@chakra-ui/react-use-interval": "2.0.1",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/react-use-safe-layout-effect": "2.0.1",
- "@chakra-ui/react-use-update-effect": "2.0.3"
+ "@chakra-ui/react-use-callback-ref": "2.0.4",
+ "@chakra-ui/react-use-event-listener": "2.0.4",
+ "@chakra-ui/react-use-interval": "2.0.2",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/react-use-safe-layout-effect": "2.0.2",
+ "@chakra-ui/react-use-update-effect": "2.0.4"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -958,25 +888,25 @@
}
},
"node_modules/@chakra-ui/number-utils": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/number-utils/-/number-utils-2.0.3.tgz",
- "integrity": "sha512-oN03kYAUCCp/FNtpLr5mh+cvd/sRTzZWTBoFydmxc955psXq/X950gzs6o5kzoeFCpgXaxMmHAXQm3ReEK2NsQ=="
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/number-utils/-/number-utils-2.0.4.tgz",
+ "integrity": "sha512-MdYd29GboBoKaXY9jhbY0Wl+0NxG1t/fa32ZSIbU6VrfMsZuAMl4NEJsz7Xvhy50fummLdKn5J6HFS7o5iyIgw=="
},
"node_modules/@chakra-ui/object-utils": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/object-utils/-/object-utils-2.0.3.tgz",
- "integrity": "sha512-36prckrqTynVD/JTzyCr8OCWVOrMs/awZo3djVbIiNxRIcJ5iEwUVy26h3MWN4ENSopipBtxNfAwPNTLU5Si/g=="
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/object-utils/-/object-utils-2.0.4.tgz",
+ "integrity": "sha512-sY98L4v2wcjpwRX8GCXqT+WzpL0i5FHVxT1Okxw0360T2tGnZt7toAwpMfIOR3dzkemP9LfXMCyBmWR5Hi2zpQ=="
},
"node_modules/@chakra-ui/pin-input": {
- "version": "2.0.12",
- "resolved": "https://registry.npmjs.org/@chakra-ui/pin-input/-/pin-input-2.0.12.tgz",
- "integrity": "sha512-gaMRp5AFW+qAJCUj93V1WluuYBBZ/5A3Wy5q796g8Auvw7vufgkVtl6EBznwvtynZN8gJwbRFpMtJxQyXCkUiw==",
+ "version": "2.0.15",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/pin-input/-/pin-input-2.0.15.tgz",
+ "integrity": "sha512-Ha8siSZm9gyjHHBK8ejwhKT6+75U12I/hNiYFvl2JHhc+Uh8tdi7+N+9SILO5vqbIv9kb+WGitvZ67I0cHjSfw==",
"dependencies": {
- "@chakra-ui/descendant": "3.0.9",
- "@chakra-ui/react-children-utils": "2.0.1",
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/react-use-controllable-state": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3"
+ "@chakra-ui/descendant": "3.0.10",
+ "@chakra-ui/react-children-utils": "2.0.3",
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/react-use-controllable-state": "2.0.5",
+ "@chakra-ui/react-use-merge-refs": "2.0.4"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -984,18 +914,20 @@
}
},
"node_modules/@chakra-ui/popover": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/popover/-/popover-2.0.9.tgz",
- "integrity": "sha512-+7tH4RVuheFQOyAZ5KT9x+qsLvz7rGuKaHtb0427+5bhUzLaSAghtr/afzOKHDwUVBwF2tTUNanR23ipW1fXDg==",
- "dependencies": {
- "@chakra-ui/close-button": "2.0.9",
- "@chakra-ui/hooks": "2.0.9",
- "@chakra-ui/lazy-utils": "2.0.1",
- "@chakra-ui/popper": "3.0.7",
- "@chakra-ui/react-context": "2.0.3",
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/popover/-/popover-2.1.1.tgz",
+ "integrity": "sha512-j09NsesfT+eaYITkITYJXDlRcPoOeQUM80neJZKOBgul2iHkVsEoii8dwS5Ip5ONeu4ane1b6zEOlYvYj2SrkA==",
+ "dependencies": {
+ "@chakra-ui/close-button": "2.0.11",
+ "@chakra-ui/lazy-utils": "2.0.2",
+ "@chakra-ui/popper": "3.0.8",
+ "@chakra-ui/react-context": "2.0.4",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-disclosure": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3"
+ "@chakra-ui/react-use-animation-state": "2.0.5",
+ "@chakra-ui/react-use-disclosure": "2.0.5",
+ "@chakra-ui/react-use-focus-effect": "2.0.5",
+ "@chakra-ui/react-use-focus-on-pointer-down": "2.0.3",
+ "@chakra-ui/react-use-merge-refs": "2.0.4"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -1004,12 +936,12 @@
}
},
"node_modules/@chakra-ui/popper": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/@chakra-ui/popper/-/popper-3.0.7.tgz",
- "integrity": "sha512-xLYhuNsk1gOjymtek1ZdZlG21hmg2a7Iu2KsD9Hi7+aUxc2K5/XxX+/vyjjz8u4s0gmj83pTqnauQRynb/TCXA==",
+ "version": "3.0.8",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/popper/-/popper-3.0.8.tgz",
+ "integrity": "sha512-246eUwuCRsLpTPxn5T8D8T9/6ODqmmz6pRRJAjGnLlUB0gNHgjisBn0UDBic5Gbxcg0sqKvxOMY3uurbW5lXTA==",
"dependencies": {
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
"@popperjs/core": "^2.9.3"
},
"peerDependencies": {
@@ -1017,12 +949,12 @@
}
},
"node_modules/@chakra-ui/portal": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/portal/-/portal-2.0.9.tgz",
- "integrity": "sha512-9e9S0MLbkpofPGlyYA12jNYSdndugy6ylPi5pC9nr3/VqG2Kn+8VcBChAeXW8K4ms7WFc74rNX1pBY/UVwr4qg==",
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/portal/-/portal-2.0.10.tgz",
+ "integrity": "sha512-VRYvVAggIuqIZ3IQ6XZ1b5ujjjOUgPk9PPdc9jssUngZa7RG+5NXNhgoM8a5TsXv6aPEolBOlDNWuxzRQ4RSSg==",
"dependencies": {
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/react-use-safe-layout-effect": "2.0.1"
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/react-use-safe-layout-effect": "2.0.2"
},
"peerDependencies": {
"react": ">=18",
@@ -1030,11 +962,11 @@
}
},
"node_modules/@chakra-ui/progress": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/progress/-/progress-2.0.10.tgz",
- "integrity": "sha512-my0Pi3NG1PYhlvCav4fybg3gL5HBNe+7lO4PVdri4QHEyfJlrDeBWID+1GgqlpUWdTj3sOf7ysku+FEgkeOeSA==",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/progress/-/progress-2.0.12.tgz",
+ "integrity": "sha512-9qtZimZosTliI7siAZkLeCVdCpXCTxmSETCudHcCUsC+FtcFacmA65+We8qij1nOIqmsbm+NYU6PP89TU2n4Hg==",
"dependencies": {
- "@chakra-ui/react-context": "2.0.3"
+ "@chakra-ui/react-context": "2.0.4"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -1042,15 +974,15 @@
}
},
"node_modules/@chakra-ui/provider": {
- "version": "2.0.16",
- "resolved": "https://registry.npmjs.org/@chakra-ui/provider/-/provider-2.0.16.tgz",
- "integrity": "sha512-4t/PmjJ7WXPPaPfoYgw8F1/rVtorZuvknugHfOZcOtAPGQmOPotSv28qjKpu/mCvc1GMGV0swMsvCeInYz7g0w==",
+ "version": "2.0.20",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/provider/-/provider-2.0.20.tgz",
+ "integrity": "sha512-mNNfsgm05G4x1VzvHVR9+PNEiuxNnn9xUKDuEwoaO7+IHCMzCRMtPbSJjwmv0xvHUGB9+JChjPpZI5RuHQziJQ==",
"dependencies": {
- "@chakra-ui/css-reset": "2.0.7",
- "@chakra-ui/portal": "2.0.9",
- "@chakra-ui/react-env": "2.0.9",
- "@chakra-ui/system": "2.2.9",
- "@chakra-ui/utils": "2.0.9"
+ "@chakra-ui/css-reset": "2.0.8",
+ "@chakra-ui/portal": "2.0.10",
+ "@chakra-ui/react-env": "2.0.10",
+ "@chakra-ui/system": "2.3.0",
+ "@chakra-ui/utils": "2.0.11"
},
"peerDependencies": {
"@emotion/react": "^11.0.0",
@@ -1060,14 +992,14 @@
}
},
"node_modules/@chakra-ui/radio": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/radio/-/radio-2.0.10.tgz",
- "integrity": "sha512-LhAWsY22cmb+M/iyhFgkzf2+V9TJmAC77Cd+GbP3M3sxDSEUDtq08KOc3JjoYc3GzeZml3JL1yssbxh+liY3xA==",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/radio/-/radio-2.0.12.tgz",
+ "integrity": "sha512-871hqAGQaufxyUzPP3aautPBIRZQmpi3fw5XPZ6SbY62dV61M4sjcttd46HfCf5SrAonoOADFQLMGQafznjhaA==",
"dependencies": {
- "@chakra-ui/form-control": "2.0.9",
- "@chakra-ui/react-context": "2.0.3",
+ "@chakra-ui/form-control": "2.0.11",
+ "@chakra-ui/react-context": "2.0.4",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
"@zag-js/focus-visible": "0.1.0"
},
"peerDependencies": {
@@ -1076,57 +1008,59 @@
}
},
"node_modules/@chakra-ui/react": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react/-/react-2.3.2.tgz",
- "integrity": "sha512-qOcDLbA1x4pnpJPtF4YJ7pZzK/ki6SoQl9Vj7fsR+hJw1lt3y1475NSyYGiA6qgho/8twUgYLhcdrTbQPcmOHg==",
- "dependencies": {
- "@chakra-ui/accordion": "2.0.12",
- "@chakra-ui/alert": "2.0.9",
- "@chakra-ui/avatar": "2.1.0",
- "@chakra-ui/breadcrumb": "2.0.9",
- "@chakra-ui/button": "2.0.9",
- "@chakra-ui/checkbox": "2.1.8",
- "@chakra-ui/close-button": "2.0.9",
- "@chakra-ui/control-box": "2.0.9",
- "@chakra-ui/counter": "2.0.9",
- "@chakra-ui/css-reset": "2.0.7",
- "@chakra-ui/editable": "2.0.9",
- "@chakra-ui/form-control": "2.0.9",
- "@chakra-ui/hooks": "2.0.9",
- "@chakra-ui/icon": "3.0.9",
- "@chakra-ui/image": "2.0.10",
- "@chakra-ui/input": "2.0.9",
- "@chakra-ui/layout": "2.1.6",
- "@chakra-ui/live-region": "2.0.9",
- "@chakra-ui/media-query": "3.2.5",
- "@chakra-ui/menu": "2.0.13",
- "@chakra-ui/modal": "2.1.7",
- "@chakra-ui/number-input": "2.0.9",
- "@chakra-ui/pin-input": "2.0.12",
- "@chakra-ui/popover": "2.0.9",
- "@chakra-ui/popper": "3.0.7",
- "@chakra-ui/portal": "2.0.9",
- "@chakra-ui/progress": "2.0.10",
- "@chakra-ui/provider": "2.0.16",
- "@chakra-ui/radio": "2.0.10",
- "@chakra-ui/react-env": "2.0.9",
- "@chakra-ui/select": "2.0.10",
- "@chakra-ui/skeleton": "2.0.15",
- "@chakra-ui/slider": "2.0.10",
- "@chakra-ui/spinner": "2.0.9",
- "@chakra-ui/stat": "2.0.9",
- "@chakra-ui/switch": "2.0.11",
- "@chakra-ui/system": "2.2.9",
- "@chakra-ui/table": "2.0.9",
- "@chakra-ui/tabs": "2.1.1",
- "@chakra-ui/tag": "2.0.9",
- "@chakra-ui/textarea": "2.0.10",
- "@chakra-ui/theme": "2.1.11",
- "@chakra-ui/toast": "3.0.10",
- "@chakra-ui/tooltip": "2.0.10",
- "@chakra-ui/transition": "2.0.9",
- "@chakra-ui/utils": "2.0.9",
- "@chakra-ui/visually-hidden": "2.0.9"
+ "version": "2.3.6",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react/-/react-2.3.6.tgz",
+ "integrity": "sha512-xo43UU+yMqRGHZLU4fSgzojeRl5stlIfT+GLbT9CUVEm0HMJCt2m8RsNPBvGOMzANdC+bzwSiOm+MNzQBi9IBQ==",
+ "dependencies": {
+ "@chakra-ui/accordion": "2.1.2",
+ "@chakra-ui/alert": "2.0.11",
+ "@chakra-ui/avatar": "2.2.0",
+ "@chakra-ui/breadcrumb": "2.1.0",
+ "@chakra-ui/button": "2.0.11",
+ "@chakra-ui/checkbox": "2.2.2",
+ "@chakra-ui/close-button": "2.0.11",
+ "@chakra-ui/control-box": "2.0.10",
+ "@chakra-ui/counter": "2.0.10",
+ "@chakra-ui/css-reset": "2.0.8",
+ "@chakra-ui/editable": "2.0.13",
+ "@chakra-ui/form-control": "2.0.11",
+ "@chakra-ui/hooks": "2.1.0",
+ "@chakra-ui/icon": "3.0.11",
+ "@chakra-ui/image": "2.0.11",
+ "@chakra-ui/input": "2.0.12",
+ "@chakra-ui/layout": "2.1.9",
+ "@chakra-ui/live-region": "2.0.10",
+ "@chakra-ui/media-query": "3.2.7",
+ "@chakra-ui/menu": "2.1.2",
+ "@chakra-ui/modal": "2.2.2",
+ "@chakra-ui/number-input": "2.0.12",
+ "@chakra-ui/pin-input": "2.0.15",
+ "@chakra-ui/popover": "2.1.1",
+ "@chakra-ui/popper": "3.0.8",
+ "@chakra-ui/portal": "2.0.10",
+ "@chakra-ui/progress": "2.0.12",
+ "@chakra-ui/provider": "2.0.20",
+ "@chakra-ui/radio": "2.0.12",
+ "@chakra-ui/react-env": "2.0.10",
+ "@chakra-ui/select": "2.0.12",
+ "@chakra-ui/skeleton": "2.0.17",
+ "@chakra-ui/slider": "2.0.12",
+ "@chakra-ui/spinner": "2.0.10",
+ "@chakra-ui/stat": "2.0.11",
+ "@chakra-ui/styled-system": "2.3.4",
+ "@chakra-ui/switch": "2.0.14",
+ "@chakra-ui/system": "2.3.0",
+ "@chakra-ui/table": "2.0.11",
+ "@chakra-ui/tabs": "2.1.4",
+ "@chakra-ui/tag": "2.0.11",
+ "@chakra-ui/textarea": "2.0.12",
+ "@chakra-ui/theme": "2.1.14",
+ "@chakra-ui/theme-utils": "2.0.1",
+ "@chakra-ui/toast": "4.0.0",
+ "@chakra-ui/tooltip": "2.2.0",
+ "@chakra-ui/transition": "2.0.11",
+ "@chakra-ui/utils": "2.0.11",
+ "@chakra-ui/visually-hidden": "2.0.11"
},
"peerDependencies": {
"@emotion/react": "^11.0.0",
@@ -1137,22 +1071,25 @@
}
},
"node_modules/@chakra-ui/react-children-utils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-children-utils/-/react-children-utils-2.0.1.tgz",
- "integrity": "sha512-sEgpuh/vWSt2+W0F49EGYXXUyjmg0lbosjVg6qUKHv9sAyx5tbrOrZ6df/TaMUSAe9m3AUOMGqUIPLpxno0DjA=="
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-children-utils/-/react-children-utils-2.0.3.tgz",
+ "integrity": "sha512-tPQjLEEuAw/DYLRw0cNs/g8tcdhZ3r21Sr9dTAzoyvfk0vbZ24gCXRElltW2GZLiFA63mAidzhPmc+yQF3Wtgg==",
+ "peerDependencies": {
+ "react": ">=18"
+ }
},
"node_modules/@chakra-ui/react-context": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-context/-/react-context-2.0.3.tgz",
- "integrity": "sha512-KmPq6sb1y05WsOUqXZtBBC4LsNKZIFrp2thTsLBwcuH7lkXZwPMHmJGKa9K980P+SWEgfH2s2PY2z+QrIuqWGg==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-context/-/react-context-2.0.4.tgz",
+ "integrity": "sha512-eBITFkf7fLSiMZrSdhweK4fYr41WUNMEeIEOP2dCWolE7WgKxNYaYleC+iRGY0GeXkFM2KYywUtixjJe29NuVA==",
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/react-env": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-env/-/react-env-2.0.9.tgz",
- "integrity": "sha512-4AJHNUGBR19hzVyOILYpZZgq8jGrpEcbhvR++CppbvPH7vfPZpoz6L/cBtHxS07YwDtUeBL8yCNiLlTxctV//Q==",
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-env/-/react-env-2.0.10.tgz",
+ "integrity": "sha512-3Yab5EbFcCGYzEsoijy4eA3354Z/JoXyk9chYIuW7Uwd+K6g/R8C0mUSAHeTmfp6Fix9kzDgerO5MWNM87b8cA==",
"peerDependencies": {
"react": ">=18"
}
@@ -1166,118 +1103,127 @@
}
},
"node_modules/@chakra-ui/react-use-animation-state": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-animation-state/-/react-use-animation-state-2.0.3.tgz",
- "integrity": "sha512-sjGgzMMmxurwKDSFhDLpLNn3SWUERI5iAZOOa0pYnyOLGVXMowgIjK6jpZxre1vc3A+unjJk5P4qeiyY+C4uwQ==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-animation-state/-/react-use-animation-state-2.0.5.tgz",
+ "integrity": "sha512-8gZIqZpMS5yTGlC+IqYoSrV13joiAYoeI0YR2t68WuDagcZ459OrjE57+gF04NLxfdV7eUgwqnpuv7IOLbJX/A==",
"dependencies": {
- "@chakra-ui/dom-utils": "2.0.1",
- "@chakra-ui/react-use-event-listener": "2.0.3"
+ "@chakra-ui/dom-utils": "2.0.3",
+ "@chakra-ui/react-use-event-listener": "2.0.4"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/react-use-callback-ref": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-callback-ref/-/react-use-callback-ref-2.0.3.tgz",
- "integrity": "sha512-kdYlhgnQKWWLNwl3WSv/Oq3+mlnu2p3y4Xc1AqKVHVcBOdQE9lpW3d7ZaOoK2aIXXWq1rocscOiXBUtM0Vqd2A==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-callback-ref/-/react-use-callback-ref-2.0.4.tgz",
+ "integrity": "sha512-he7EQfwMA4mwiDDKvX7cHIJaboCqf7UD3KYHGUcIjsF4dSc2Y8X5Ze4w+hmVZoJWIe4DWUzb3ili2SUm8eTgPg==",
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/react-use-controllable-state": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-controllable-state/-/react-use-controllable-state-2.0.3.tgz",
- "integrity": "sha512-su8efwCWWnY2LQUU6PEnYwSGJX8kvPSO2KyUKuymx8q3fNWuyhzAZriG/TbeeCxESLp70+wuniUlSGRa4vxylQ==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-controllable-state/-/react-use-controllable-state-2.0.5.tgz",
+ "integrity": "sha512-JrZZpMX24CUyfDuyqDczw9Z9IMvjH8ujETHK0Zu4M0SIsX/q4EqOwwngUFL03I2gx/O38HfSdeX8hMu4zbTAGA==",
"dependencies": {
- "@chakra-ui/react-use-callback-ref": "2.0.3"
+ "@chakra-ui/react-use-callback-ref": "2.0.4"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/react-use-disclosure": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-disclosure/-/react-use-disclosure-2.0.3.tgz",
- "integrity": "sha512-3IdrzvQZcgjqSx5wTVffInOyhMU+d3ZlIE26JmqejMyN/B+qAs932iKfm0A1mTMPTz38ZnNtuaKazmzyfR1ePg==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-disclosure/-/react-use-disclosure-2.0.5.tgz",
+ "integrity": "sha512-kPLB9oxImASRhAbKfvfc03/lbAJbsXndEVRzd+nvvL+QZm2RRfnel3k6OIkWvGFOXXYOPE2+slLe8ZPwbTGg9g==",
"dependencies": {
- "@chakra-ui/react-use-callback-ref": "2.0.3"
+ "@chakra-ui/react-use-callback-ref": "2.0.4"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/react-use-event-listener": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-event-listener/-/react-use-event-listener-2.0.3.tgz",
- "integrity": "sha512-m3ZdJjo3QQ1HcQGnehlBTgHaCVewz5fwIRTXVzbZTraVJr4k589Zf87eagW57tT4dyv656lSmdhaFGZ8p5Snww==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-event-listener/-/react-use-event-listener-2.0.4.tgz",
+ "integrity": "sha512-VqmalfKWMO8D21XuZO19WUtcP5xhbHXKzkggApTChZUN02UC5TC4pe0pYbDygoeUuNBhY+9lJKHeS08vYsljRg==",
"dependencies": {
- "@chakra-ui/react-use-callback-ref": "2.0.3"
+ "@chakra-ui/react-use-callback-ref": "2.0.4"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/react-use-focus-effect": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-focus-effect/-/react-use-focus-effect-2.0.3.tgz",
- "integrity": "sha512-N0rho7P+rH5cn13dbS8GUOye+6RYXAmXhmlS+WW/3lWidGH3HAbMoOVf56UiuSnE1+2or8/U7qRshUryj2H1nA==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-focus-effect/-/react-use-focus-effect-2.0.5.tgz",
+ "integrity": "sha512-sbe1QnsXXfjukM+laxbKnT0UnMpHe/7kTzEPG/BYM6/ZDUUmrC1Nz+8l+3H/52iWIaruikDBdif/Xd37Yvu3Kg==",
"dependencies": {
- "@chakra-ui/dom-utils": "2.0.1",
- "@chakra-ui/react-use-event-listener": "2.0.3",
- "@chakra-ui/react-use-update-effect": "2.0.3"
+ "@chakra-ui/dom-utils": "2.0.3",
+ "@chakra-ui/react-use-event-listener": "2.0.4",
+ "@chakra-ui/react-use-update-effect": "2.0.4"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/react-use-focus-on-pointer-down": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-focus-on-pointer-down/-/react-use-focus-on-pointer-down-2.0.1.tgz",
- "integrity": "sha512-f0qL2iWvajUo+0jwDZyJpUMJ6J6BH3WjDZE2Rp6cns4pgI6uYuv2gj+FqQ5jnoYdXkeER6lBI56a+aIW/1RYiA==",
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-focus-on-pointer-down/-/react-use-focus-on-pointer-down-2.0.3.tgz",
+ "integrity": "sha512-8cKmpv26JnblexNaekWxEDI7M+MZnJcp1PJUz6lByjfQ1m4YjFr1cdbdhG4moaqzzYs7vTmO/qL8KVq8ZLUwyQ==",
"dependencies": {
- "@chakra-ui/react-use-event-listener": "2.0.3"
+ "@chakra-ui/react-use-event-listener": "2.0.4"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/react-use-interval": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-interval/-/react-use-interval-2.0.1.tgz",
- "integrity": "sha512-6ZLzKA7Ga894UZcXO3bbGYThlhviiau1oxZ1UcJG5pUXNM9Up7O/4Joq31sL+KcpteCN45vd1etomilsv/blxw==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-interval/-/react-use-interval-2.0.2.tgz",
+ "integrity": "sha512-5U1c0pEB5n0Yri0E4RdFXWx2RVBZBBhD8Uu49dM33jkIguCbIPmZ+YgVry5DDzCHyz4RgDg4yZKOPK0PI8lEUg==",
"dependencies": {
- "@chakra-ui/react-use-callback-ref": "2.0.3"
+ "@chakra-ui/react-use-callback-ref": "2.0.4"
},
"peerDependencies": {
"react": ">=18"
}
},
+ "node_modules/@chakra-ui/react-use-latest-ref": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-latest-ref/-/react-use-latest-ref-2.0.2.tgz",
+ "integrity": "sha512-Ra/NMV+DSQ3n0AdKsyIqdgnFzls5UntabtIRfDXLrqmJ4tI0a1tDdop2qop0Ue87AcqD9P1KtQue4KPx7wCElw==",
+ "peerDependencies": {
+ "react": ">=18"
+ }
+ },
"node_modules/@chakra-ui/react-use-merge-refs": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-merge-refs/-/react-use-merge-refs-2.0.3.tgz",
- "integrity": "sha512-n35BmVbasy5Esa6qxznWmiV3NaRxGpqMpZH0n+X7aXt8VkGAJzRpAVjUmKCLNYyCLpqsQceCmAEK8a5SR6vxqw==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-merge-refs/-/react-use-merge-refs-2.0.4.tgz",
+ "integrity": "sha512-aoWvtE5tDQNaLCiNUI6WV+MA2zVcCLR5mHSCISmowlTXyXOqOU5Fo9ZoUftzrmgCJpDu5x1jfUOivxuHUueb0g==",
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/react-use-outside-click": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-outside-click/-/react-use-outside-click-2.0.3.tgz",
- "integrity": "sha512-r5OohM8lOuZTz6e3vVHvfm/3sEkd06nUPBNU+r3rWh1I7bR9z5Gia/BOQD6GE4jUTanDkHcH76Pf9qJ45kpibQ==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-outside-click/-/react-use-outside-click-2.0.4.tgz",
+ "integrity": "sha512-uerJKS8dqg2kHs1xozA5vcCqW0UInuwrfCPb+rDWBTpu7aEqxABMw9W3e4gfOABrAjhKz2I0a/bu2i8zbVwdLw==",
"dependencies": {
- "@chakra-ui/react-use-callback-ref": "2.0.3"
+ "@chakra-ui/react-use-callback-ref": "2.0.4"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/react-use-pan-event": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-pan-event/-/react-use-pan-event-2.0.4.tgz",
- "integrity": "sha512-lcEjngfCgIjE5qZeJiaDx+aJzZPLjbjUmbWumi8pIgWOnDL8Ffjh7AMKW4CddP5OgcRnDDb+7aqJbb55wraboA==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-pan-event/-/react-use-pan-event-2.0.5.tgz",
+ "integrity": "sha512-nhE3b85++EEmBD2v6m46TLoA4LehSCZ349P8kvEjw/RC0K6XDOZndaBucIeAlnpEENSSUpczFfMSOLxSHdu0oA==",
"dependencies": {
- "@chakra-ui/event-utils": "2.0.4",
+ "@chakra-ui/event-utils": "2.0.5",
+ "@chakra-ui/react-use-latest-ref": "2.0.2",
"framesync": "5.3.0"
},
"peerDependencies": {
@@ -1285,25 +1231,25 @@
}
},
"node_modules/@chakra-ui/react-use-previous": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-previous/-/react-use-previous-2.0.1.tgz",
- "integrity": "sha512-ROi+/puVd8D1QaxBSOcGlJNqV2x02ppSgmXzZZJhM8ryFLZjY9ojV3HhamB2IJ/7SIb1rMSSV1GPedFw7YMCwA==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-previous/-/react-use-previous-2.0.2.tgz",
+ "integrity": "sha512-ap/teLRPKopaHYD80fnf0TR/NpTWHJO5VdKg6sPyF1y5ediYLAzPT1G2OqMCj4QfJsYDctioT142URDYe0Nn7w==",
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/react-use-safe-layout-effect": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-safe-layout-effect/-/react-use-safe-layout-effect-2.0.1.tgz",
- "integrity": "sha512-H+ZOjkPqv3KBPEoP68JKpQBNdLOI0mwzEiTT397UdvBVCCJ+1/ijWVUT+Ub/pYic60O6xUghy5ORaWqJHhnKDA==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-safe-layout-effect/-/react-use-safe-layout-effect-2.0.2.tgz",
+ "integrity": "sha512-gl5HDq9RVeDJiT8udtpx12KRV8JPLJHDIUX8f/yZcKpXow0C7FFGg5Yy5I9397NQog5ZjKMuOg+AUq9TLJxsyQ==",
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/react-use-size": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-size/-/react-use-size-2.0.3.tgz",
- "integrity": "sha512-hr4hKepPUmM2paXseSZiOTK2y+ZqnSzYNusDEB01f+cDerFjdN1jSfNJKXpiKF0+hNESXfOPQb3Zt0eDusRdoA==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-size/-/react-use-size-2.0.4.tgz",
+ "integrity": "sha512-W6rgTLuoSC4ovZtqYco8cG+yBadH3bhlg92T5lgpKDakSDr0mXcZdbGx6g0AOkgxXm0V1jWNGO1743wudtF7ew==",
"dependencies": {
"@zag-js/element-size": "0.1.0"
},
@@ -1312,41 +1258,41 @@
}
},
"node_modules/@chakra-ui/react-use-timeout": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-timeout/-/react-use-timeout-2.0.1.tgz",
- "integrity": "sha512-zXh9RH+GciKr8hvaOADHOoHP72B7UZUEymA8CWCV4WEs/9s/PfQJH7X1bwvaj43CcOmfVQg4oODWqCYQM1lSsg==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-timeout/-/react-use-timeout-2.0.2.tgz",
+ "integrity": "sha512-n6zb3OmxtDmRMxYkDgILqKh15aDOa8jNLHBlqHzmlL6mEGNKmMFPW9j/KvpAqSgKjUTDRnnXcpneprTMKy/yrw==",
"dependencies": {
- "@chakra-ui/react-use-callback-ref": "2.0.3"
+ "@chakra-ui/react-use-callback-ref": "2.0.4"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/react-use-update-effect": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-update-effect/-/react-use-update-effect-2.0.3.tgz",
- "integrity": "sha512-8hkP1o/UUUA49w/R+XyAlPiCjxXTCWCNsHWUOEhAitjJfoCNUjgaNKOD52hT07kc5ACJEcJQHA5327LnwtiIlg==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-update-effect/-/react-use-update-effect-2.0.4.tgz",
+ "integrity": "sha512-F/I9LVnGAQyvww+x7tQb47wCwjhMYjpxtM1dTg1U3oCEXY0yF1Ts3NJLUAlsr3nAW6epJIwWx61niC7KWpam1w==",
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/react-utils": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-utils/-/react-utils-2.0.6.tgz",
- "integrity": "sha512-ZL0FPaolovXOxMzYRSLHgBYtvxIkA/c5GTSYpXL8DcC+TBLZnAmQ8BPTS2b6xys6xvwdQjkZRUeQ0cBNFaryJg==",
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-utils/-/react-utils-2.0.8.tgz",
+ "integrity": "sha512-OSHHBKZlJWTi2NZcPnBx1PyZvLQY+n5RPBtcri7/89EDdAwz2NdEhp2Dz1yQRctOSCF1kB/rnCYDP1U0oRk9RQ==",
"dependencies": {
- "@chakra-ui/utils": "2.0.9"
+ "@chakra-ui/utils": "2.0.11"
},
"peerDependencies": {
"react": ">=18"
}
},
"node_modules/@chakra-ui/select": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/select/-/select-2.0.10.tgz",
- "integrity": "sha512-7AslBWwI/JyczjMMGtPuN34M/C38koVd+N/pb6swHoIP9TRkkdvDlonIakcmtO1oLEzlNIFKmt4FQ7bUp9ea5Q==",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/select/-/select-2.0.12.tgz",
+ "integrity": "sha512-NCDMb0w48GYCHmazVSQ7/ysEpbnri+Up6n+v7yytf6g43TPRkikvK5CsVgLnAEj0lIdCJhWXTcZer5wG5KOEgA==",
"dependencies": {
- "@chakra-ui/form-control": "2.0.9"
+ "@chakra-ui/form-control": "2.0.11"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -1354,17 +1300,17 @@
}
},
"node_modules/@chakra-ui/shared-utils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/shared-utils/-/shared-utils-2.0.1.tgz",
- "integrity": "sha512-NXDBl/u4wrSNp0ON5R3r3evkRurrAz2yuO7neooaG+O5HEenVouGqm4CsXd6lUAPmjwiGzA0LQFNCt0Hj92dXg=="
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/shared-utils/-/shared-utils-2.0.2.tgz",
+ "integrity": "sha512-wC58Fh6wCnFFQyiebVZ0NI7PFW9+Vch0QE6qN7iR+bLseOzQY9miYuzPJ1kMYiFd6QTOmPJkI39M3wHqrPYiOg=="
},
"node_modules/@chakra-ui/skeleton": {
- "version": "2.0.15",
- "resolved": "https://registry.npmjs.org/@chakra-ui/skeleton/-/skeleton-2.0.15.tgz",
- "integrity": "sha512-QVMkXwrH9jLfim8uJTZcjHeGjzoquNcHGXD5wapd7eDqp9BygvmMXAHBxFm8eEJLHuvIqLX94P6DLeiieYwX7Q==",
+ "version": "2.0.17",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/skeleton/-/skeleton-2.0.17.tgz",
+ "integrity": "sha512-dL7viXEKDEzmAJGbHMj+QbGl9PAd0VWztEcWcz5wOGfmAcJllA0lVh6NmG/yqLb6iXPCX4Y1Y0Yurm459TEYWg==",
"dependencies": {
- "@chakra-ui/media-query": "3.2.5",
- "@chakra-ui/react-use-previous": "2.0.1"
+ "@chakra-ui/media-query": "3.2.7",
+ "@chakra-ui/react-use-previous": "2.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -1372,19 +1318,20 @@
}
},
"node_modules/@chakra-ui/slider": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/slider/-/slider-2.0.10.tgz",
- "integrity": "sha512-F0RGl2ruADbXO/GnoBUiTEl+przxhZo2e0tfw9VTtS+RsJZ22uHrTNVvVJHNmjK7/E3++kBfaLCacoJFz/io+g==",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/slider/-/slider-2.0.12.tgz",
+ "integrity": "sha512-Cna04J7e4+F3tJNb7tRNfPP+koicbDsKJBp+f1NpR32JbRzIfrf2Vdr4hfD5/uOfC4RGxnVInNZzZLGBelLtLw==",
"dependencies": {
- "@chakra-ui/number-utils": "2.0.3",
- "@chakra-ui/react-context": "2.0.3",
+ "@chakra-ui/number-utils": "2.0.4",
+ "@chakra-ui/react-context": "2.0.4",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-callback-ref": "2.0.3",
- "@chakra-ui/react-use-controllable-state": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/react-use-pan-event": "2.0.4",
- "@chakra-ui/react-use-size": "2.0.3",
- "@chakra-ui/react-use-update-effect": "2.0.3"
+ "@chakra-ui/react-use-callback-ref": "2.0.4",
+ "@chakra-ui/react-use-controllable-state": "2.0.5",
+ "@chakra-ui/react-use-latest-ref": "2.0.2",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/react-use-pan-event": "2.0.5",
+ "@chakra-ui/react-use-size": "2.0.4",
+ "@chakra-ui/react-use-update-effect": "2.0.4"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -1392,21 +1339,21 @@
}
},
"node_modules/@chakra-ui/spinner": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/spinner/-/spinner-2.0.9.tgz",
- "integrity": "sha512-9ALl51fiVWptDu2J2xcv0TSfGf4buumpHrEXHvV2Qy+HZ6rYnUmSThBSb/VgoQS+rASG8bAbLUPlQTQ+v9ibFg==",
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/spinner/-/spinner-2.0.10.tgz",
+ "integrity": "sha512-SwId1xPaaFAaEYrR9eHkQHAuB66CbxwjWaQonEjeEUSh9ecxkd5WbXlsQSyf2hVRIqXJg0m3HIYblcKUsQt9Rw==",
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
"react": ">=18"
}
},
"node_modules/@chakra-ui/stat": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/stat/-/stat-2.0.9.tgz",
- "integrity": "sha512-C9cytqegWSGJ/hh3/qwsgGlerXLYHrU0iQcJQ+pKSRFJhshXsv3go5IR6kVL72Yf2s4Gs5c3GsMZrLM22ePpDg==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/stat/-/stat-2.0.11.tgz",
+ "integrity": "sha512-ZPFK2fKufDSHD8bp/KhO3jLgW/b3PzdG4zV+7iTO7OYjxm5pkBfBAeMqfXGx4cl51rtWUKzsY0HV4vLLjcSjHw==",
"dependencies": {
- "@chakra-ui/icon": "3.0.9",
- "@chakra-ui/react-context": "2.0.3"
+ "@chakra-ui/icon": "3.0.11",
+ "@chakra-ui/react-context": "2.0.4"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -1414,20 +1361,20 @@
}
},
"node_modules/@chakra-ui/styled-system": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/styled-system/-/styled-system-2.3.1.tgz",
- "integrity": "sha512-jyR9s2yk5TEyq4HUfjrgUeaOzd9ZTZrbjK96UjtiTCZGO/q4j2RXtYvfheUjUyW1UnzI2A1ffHOJca8tBMDjpA==",
+ "version": "2.3.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/styled-system/-/styled-system-2.3.4.tgz",
+ "integrity": "sha512-Lozbedu+GBj4EbHB/eGv475SFDLApsIEN9gNKiZJBJAE1HIhHn3Seh1iZQSrHC/Beq+D5cQq3Z+yPn3bXtFU7w==",
"dependencies": {
"csstype": "^3.0.11",
"lodash.mergewith": "4.6.2"
}
},
"node_modules/@chakra-ui/switch": {
- "version": "2.0.11",
- "resolved": "https://registry.npmjs.org/@chakra-ui/switch/-/switch-2.0.11.tgz",
- "integrity": "sha512-gY8OGBnoPosZpq7dDNVf432t67pTc/cz5VkGhbtER7bbjXSoXe0DAiAYL+HT2kD7mbTJQzzHK/y0St0WimR1Mw==",
+ "version": "2.0.14",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/switch/-/switch-2.0.14.tgz",
+ "integrity": "sha512-6lzhCkJq7vbD3yGaorGLp0ZZU4ewdKwAu0e62qR8TfYZwbcbpkXbBKloIHbA2XKOduISzS2WYqjmoP6jSKIxrA==",
"dependencies": {
- "@chakra-ui/checkbox": "2.1.8"
+ "@chakra-ui/checkbox": "2.2.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -1436,14 +1383,15 @@
}
},
"node_modules/@chakra-ui/system": {
- "version": "2.2.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/system/-/system-2.2.9.tgz",
- "integrity": "sha512-SyTeIGm+goyYK8vqX4dU6oeLhxUAeGI3Cl+mxA+aiKIX01YTALhTWhpbrsuMYBevV+l9EGK12egPUQE+Mo3WlQ==",
- "dependencies": {
- "@chakra-ui/color-mode": "2.1.7",
- "@chakra-ui/react-utils": "2.0.6",
- "@chakra-ui/styled-system": "2.3.1",
- "@chakra-ui/utils": "2.0.9",
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/system/-/system-2.3.0.tgz",
+ "integrity": "sha512-BxikahglBI0uU8FE3anEorDTU5oKTUuBIEKVcQrEVnrbNuRJEy1OVYyCNXfqW3MpruRO9ypYV2bWt02AZZWEaQ==",
+ "dependencies": {
+ "@chakra-ui/color-mode": "2.1.9",
+ "@chakra-ui/react-utils": "2.0.8",
+ "@chakra-ui/styled-system": "2.3.4",
+ "@chakra-ui/theme-utils": "2.0.1",
+ "@chakra-ui/utils": "2.0.11",
"react-fast-compare": "3.2.0"
},
"peerDependencies": {
@@ -1453,11 +1401,11 @@
}
},
"node_modules/@chakra-ui/table": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/table/-/table-2.0.9.tgz",
- "integrity": "sha512-XRz6+x4dMeQX3xyViyG2H/P1STI/2vwvgU2cjzzwS+5fZ2JdGaTgYzBb+IZoH9agEq1Ma3rlKMUPDrRCFb7kLQ==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/table/-/table-2.0.11.tgz",
+ "integrity": "sha512-zQTiqPKEgjdeO/PG0FByn0fH4sPF7dLJF+YszrIzDc6wvpD96iY6MYLeV+CSelbH1g0/uibcJ10PSaFStfGUZg==",
"dependencies": {
- "@chakra-ui/react-context": "2.0.3"
+ "@chakra-ui/react-context": "2.0.4"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -1465,18 +1413,18 @@
}
},
"node_modules/@chakra-ui/tabs": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/tabs/-/tabs-2.1.1.tgz",
- "integrity": "sha512-xA+vwqpAHb0nBLrkiO5Lea2UDGROyAIBqsyp/8XXXEr6eKxtNe1I6WJPbDQy0aazB2ToAA0R6fT34HjLaXP8MQ==",
- "dependencies": {
- "@chakra-ui/clickable": "2.0.9",
- "@chakra-ui/descendant": "3.0.9",
- "@chakra-ui/lazy-utils": "2.0.1",
- "@chakra-ui/react-children-utils": "2.0.1",
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/react-use-controllable-state": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/react-use-safe-layout-effect": "2.0.1"
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/tabs/-/tabs-2.1.4.tgz",
+ "integrity": "sha512-/CQGj1lC9lvruT5BCYZH6Ok64W4CDSysDXuR2XPZXIih9kVOdXQEMXxG8+3vc63WqTBjHuURtZI0g8ouOy84ew==",
+ "dependencies": {
+ "@chakra-ui/clickable": "2.0.10",
+ "@chakra-ui/descendant": "3.0.10",
+ "@chakra-ui/lazy-utils": "2.0.2",
+ "@chakra-ui/react-children-utils": "2.0.3",
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/react-use-controllable-state": "2.0.5",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/react-use-safe-layout-effect": "2.0.2"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -1484,12 +1432,12 @@
}
},
"node_modules/@chakra-ui/tag": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/tag/-/tag-2.0.9.tgz",
- "integrity": "sha512-NKARwhsZ04t2vkrdRhNcakEiVtg1q44yUUsDw2Jwdu4idAWQupZGGochQI2Ac4T2MI1b66zQUkaGnm3l1mhTtg==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/tag/-/tag-2.0.11.tgz",
+ "integrity": "sha512-iJJcX+4hl+6Se/8eCRzG+xxDwZfiYgc4Ly/8s93M0uW2GLb+ybbfSE2DjeKSyk3mQVeGzuxGkBfDHH2c2v26ew==",
"dependencies": {
- "@chakra-ui/icon": "3.0.9",
- "@chakra-ui/react-context": "2.0.3"
+ "@chakra-ui/icon": "3.0.11",
+ "@chakra-ui/react-context": "2.0.4"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -1497,11 +1445,11 @@
}
},
"node_modules/@chakra-ui/textarea": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/textarea/-/textarea-2.0.10.tgz",
- "integrity": "sha512-HSo0EPsY8XKGA+Af6jTob1oe1T6NKZwgjLmX0binK3MMM9pDTXsUTw8GD0g971lxw9oktVMLK/O9QVAgVAm5mw==",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/textarea/-/textarea-2.0.12.tgz",
+ "integrity": "sha512-msR9YMynRXwZIqR6DgjQ2MogA/cW1syBx/R0v3es+9Zx8zlbuKdoLhYqajHteCup8dUzTeIH2Vs2vAwgq4wu5A==",
"dependencies": {
- "@chakra-ui/form-control": "2.0.9"
+ "@chakra-ui/form-control": "2.0.11"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -1509,59 +1457,70 @@
}
},
"node_modules/@chakra-ui/theme": {
- "version": "2.1.11",
- "resolved": "https://registry.npmjs.org/@chakra-ui/theme/-/theme-2.1.11.tgz",
- "integrity": "sha512-gI0NLU6wO/5cRq8gbDHuy24Y/ZhJxN4D/2uucNN9is3h+d58/En5jV3fwzZW8PLiLKW/T2CmbYWEZWV2YkcUVA==",
+ "version": "2.1.14",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/theme/-/theme-2.1.14.tgz",
+ "integrity": "sha512-6EYJCQlrjSjNAJvZmw1un50F8+sQDFsdwu/7UzWe+TeANpKlz4ZcHbh0gkl3PD62lGis+ehITUwqRm8htvDOjw==",
"dependencies": {
- "@chakra-ui/anatomy": "2.0.6",
- "@chakra-ui/theme-tools": "2.0.11"
+ "@chakra-ui/anatomy": "2.0.7",
+ "@chakra-ui/theme-tools": "2.0.12"
},
"peerDependencies": {
"@chakra-ui/styled-system": ">=2.0.0"
}
},
"node_modules/@chakra-ui/theme-tools": {
- "version": "2.0.11",
- "resolved": "https://registry.npmjs.org/@chakra-ui/theme-tools/-/theme-tools-2.0.11.tgz",
- "integrity": "sha512-0Juf98bAyOgnBeQ39nMKWqRsOxZDw75BbAB8o0oVyjhYVS1wJh7tFX1ZRV8N/+AN6fuRXEznZPpyUh3J+ZTiRg==",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/theme-tools/-/theme-tools-2.0.12.tgz",
+ "integrity": "sha512-mnMlKSmXkCjHUJsKWmJbgBTGF2vnLaMLv1ihkBn5eQcCubMQrBLTiMAEFl5pZdzuHItU6QdnLGA10smcXbNl0g==",
"dependencies": {
- "@chakra-ui/anatomy": "2.0.6",
+ "@chakra-ui/anatomy": "2.0.7",
"@ctrl/tinycolor": "^3.4.0"
},
"peerDependencies": {
"@chakra-ui/styled-system": ">=2.0.0"
}
},
+ "node_modules/@chakra-ui/theme-utils": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/theme-utils/-/theme-utils-2.0.1.tgz",
+ "integrity": "sha512-NDwzgTPxm+v3PAJlSSU1MORHLMqO9vsRJ+ObELD5wpvE9aEyRziN/AZSoK2oLwCQMPEiU7R99K5ij1E6ptMt7w==",
+ "dependencies": {
+ "@chakra-ui/styled-system": "2.3.4",
+ "@chakra-ui/theme": "2.1.14",
+ "lodash.mergewith": "4.6.2"
+ }
+ },
"node_modules/@chakra-ui/toast": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/toast/-/toast-3.0.10.tgz",
- "integrity": "sha512-i/oEtzmarO0hM6fxa55OmA8ZGkZv9b+vIC2xs5kQ/C0rJaC0ycibok8srq2Stjq9309fZNezyzThQp6e9acUYQ==",
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/toast/-/toast-4.0.0.tgz",
+ "integrity": "sha512-abeeloJac5T9WK2IN76fEM5FSRH+erNXln2HqDf5wLBn33avSBXWyTiUL8riVSUqto0lrIn6FuK/MmKo0DH4og==",
"dependencies": {
- "@chakra-ui/alert": "2.0.9",
- "@chakra-ui/close-button": "2.0.9",
- "@chakra-ui/portal": "2.0.9",
- "@chakra-ui/react-use-timeout": "2.0.1",
- "@chakra-ui/react-use-update-effect": "2.0.3",
- "@chakra-ui/theme": "2.1.11"
+ "@chakra-ui/alert": "2.0.11",
+ "@chakra-ui/close-button": "2.0.11",
+ "@chakra-ui/portal": "2.0.10",
+ "@chakra-ui/react-use-timeout": "2.0.2",
+ "@chakra-ui/react-use-update-effect": "2.0.4",
+ "@chakra-ui/styled-system": "2.3.4",
+ "@chakra-ui/theme": "2.1.14"
},
"peerDependencies": {
- "@chakra-ui/system": "2.2.9",
+ "@chakra-ui/system": "2.3.0",
"framer-motion": ">=4.0.0",
"react": ">=18",
"react-dom": ">=18"
}
},
"node_modules/@chakra-ui/tooltip": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/tooltip/-/tooltip-2.0.10.tgz",
- "integrity": "sha512-pBILBdZoux2K3EW9V6JuyZYUWz2/Y7oYCVO6AwNOesiEBGAONyzoDwFV728EzPEHe9e+YBcKOSZ9tEpDdrzHMA==",
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/tooltip/-/tooltip-2.2.0.tgz",
+ "integrity": "sha512-oB97aQJBW+U3rRIt1ct7NaDRMnbW16JQ5ZBCl3BzN1VJWO3djiNuscpjVdZSceb+FdGSFo+GoDozp1ZwqdfFeQ==",
"dependencies": {
- "@chakra-ui/popper": "3.0.7",
- "@chakra-ui/portal": "2.0.9",
+ "@chakra-ui/popper": "3.0.8",
+ "@chakra-ui/portal": "2.0.10",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-disclosure": "2.0.3",
- "@chakra-ui/react-use-event-listener": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3"
+ "@chakra-ui/react-use-disclosure": "2.0.5",
+ "@chakra-ui/react-use-event-listener": "2.0.4",
+ "@chakra-ui/react-use-merge-refs": "2.0.4"
},
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
@@ -1571,18 +1530,18 @@
}
},
"node_modules/@chakra-ui/transition": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/transition/-/transition-2.0.9.tgz",
- "integrity": "sha512-cVfKdZl128AEj0LDS8M9dzXao4wmTVj3gRJBnm91Qcg243Pm8OlgIBNbHEwsq/Fps+PsN431BtEGfL4w79wQEA==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/transition/-/transition-2.0.11.tgz",
+ "integrity": "sha512-O0grc162LARPurjz1R+J+zr4AAKsVwN5+gaqLfZLMWg6TpvczJhwEA2fLCNAdkC/gomere390bJsy52xfUacUw==",
"peerDependencies": {
"framer-motion": ">=4.0.0",
"react": ">=18"
}
},
"node_modules/@chakra-ui/utils": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-2.0.9.tgz",
- "integrity": "sha512-7ct5562Jw6pZdtj63XfUkEUXXsCCVqdqIXyLtQ9VgOKtRQWwDxzc8uPI5Zjdw9AleEITZFUH8TNKWn75nm54kQ==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-2.0.11.tgz",
+ "integrity": "sha512-4ZQdK6tbOuTrUCsAQBHWo7tw5/Q6pBV93ZbVpats61cSWMFGv32AIQw9/hA4un2zDeSWN9ZMVLNjAY2Dq/KQOA==",
"dependencies": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
@@ -1591,9 +1550,9 @@
}
},
"node_modules/@chakra-ui/visually-hidden": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/visually-hidden/-/visually-hidden-2.0.9.tgz",
- "integrity": "sha512-PkNxrRGp9H3bdqEaoo8XGt/AL9UuGRTom0/9XJa+G/Dj8Cy1sDuamOWk3pN/ZQs46RokfK9Uh5LqPY5dwSDweg==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/visually-hidden/-/visually-hidden-2.0.11.tgz",
+ "integrity": "sha512-e+5amYvnsmEQdiWH4XMyvrtGTdwz//+48vwj5CsNWWcselzkwqodmciy5rIrT71/SCQDOtmgnL7ZWAUOffxfsQ==",
"peerDependencies": {
"@chakra-ui/system": ">=2.0.0",
"react": ">=18"
@@ -1775,11 +1734,10 @@
"integrity": "sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg=="
},
"node_modules/@eslint/eslintrc": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.2.tgz",
- "integrity": "sha512-AXYd23w1S/bv3fTs3Lz0vjiYemS08jWkI3hYyS9I1ry+0f+Yjs1wm+sU0BS8qDOPrBIkp4qHYC16I8uVtpLajQ==",
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz",
+ "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==",
"dev": true,
- "license": "MIT",
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.3.2",
@@ -1798,6 +1756,33 @@
"url": "https://opencollective.com/eslint"
}
},
+ "node_modules/@eslint/eslintrc/node_modules/globals": {
+ "version": "13.17.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz",
+ "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==",
+ "dev": true,
+ "dependencies": {
+ "type-fest": "^0.20.2"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@eslint/eslintrc/node_modules/type-fest": {
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/@ethersproject/abi": {
"version": "5.7.0",
"resolved": "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.7.0.tgz",
@@ -2187,9 +2172,9 @@
}
},
"node_modules/@ethersproject/providers": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.7.1.tgz",
- "integrity": "sha512-vZveG/DLyo+wk4Ga1yx6jSEHrLPgmTt+dFv0dv8URpVCRf0jVhalps1jq/emN/oXnMRsC7cQgAF32DcXLL7BPQ==",
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.7.2.tgz",
+ "integrity": "sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==",
"funding": [
{
"type": "individual",
@@ -2508,11 +2493,10 @@
}
},
"node_modules/@humanwhocodes/config-array": {
- "version": "0.10.4",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.4.tgz",
- "integrity": "sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==",
+ "version": "0.10.7",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.7.tgz",
+ "integrity": "sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==",
"dev": true,
- "license": "Apache-2.0",
"dependencies": {
"@humanwhocodes/object-schema": "^1.2.1",
"debug": "^4.1.1",
@@ -2527,7 +2511,6 @@
"resolved": "https://registry.npmjs.org/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz",
"integrity": "sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==",
"dev": true,
- "license": "Apache-2.0",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/nzakas"
@@ -2538,7 +2521,6 @@
"resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
"dev": true,
- "license": "Apache-2.0",
"engines": {
"node": ">=12.22"
},
@@ -2551,36 +2533,22 @@
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
"integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==",
- "dev": true,
- "license": "BSD-3-Clause"
+ "dev": true
},
"node_modules/@jnwng/walletconnect-solana": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/@jnwng/walletconnect-solana/-/walletconnect-solana-0.1.1.tgz",
- "integrity": "sha512-i84711Ln9XLvKRTfhbv9MjXjKJzog4NVccZGwyGN0z96T+QMJuppX3+eyLdzLyNie/3S2xw7bL87NAAbdUto2g==",
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/@jnwng/walletconnect-solana/-/walletconnect-solana-0.1.4.tgz",
+ "integrity": "sha512-tdVMeH9IlLHV7SxG81oD+HXmYEs/FR8D19BQJpE+7qsus4kO0yn9y/kQ3m6wsdHQr22L5KL10VDIKSWQ+8pyJg==",
"dependencies": {
"@walletconnect/qrcode-modal": "1.8.0",
- "@walletconnect/sign-client": "2.0.0-rc.2",
- "@walletconnect/utils": "2.0.0-rc.2",
+ "@walletconnect/sign-client": "2.0.0-rc.3",
+ "@walletconnect/utils": "2.0.0-rc.3",
"bs58": "^5.0.0"
},
"peerDependencies": {
"@solana/web3.js": "^1.52.0"
}
},
- "node_modules/@jnwng/walletconnect-solana/node_modules/base-x": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz",
- "integrity": "sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw=="
- },
- "node_modules/@jnwng/walletconnect-solana/node_modules/bs58": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz",
- "integrity": "sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==",
- "dependencies": {
- "base-x": "^4.0.0"
- }
- },
"node_modules/@jridgewell/gen-mapping": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz",
@@ -2617,13 +2585,13 @@
"integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
},
"node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.15",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz",
- "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==",
+ "version": "0.3.17",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz",
+ "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==",
"peer": true,
"dependencies": {
- "@jridgewell/resolve-uri": "^3.0.3",
- "@jridgewell/sourcemap-codec": "^1.4.10"
+ "@jridgewell/resolve-uri": "3.1.0",
+ "@jridgewell/sourcemap-codec": "1.4.14"
}
},
"node_modules/@json-rpc-tools/provider": {
@@ -2637,6 +2605,14 @@
"ws": "^7.4.0"
}
},
+ "node_modules/@json-rpc-tools/provider/node_modules/axios": {
+ "version": "0.21.4",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
+ "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
+ "dependencies": {
+ "follow-redirects": "^1.14.0"
+ }
+ },
"node_modules/@json-rpc-tools/types": {
"version": "1.7.6",
"resolved": "https://registry.npmjs.org/@json-rpc-tools/types/-/types-1.7.6.tgz",
@@ -2665,9 +2641,9 @@
}
},
"node_modules/@keystonehq/bc-ur-registry-sol": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/@keystonehq/bc-ur-registry-sol/-/bc-ur-registry-sol-0.3.0.tgz",
- "integrity": "sha512-ldZmD13piImD5UXlt8ZIFq6+7NLWwAczJPbAUKnclP1EAfy5dbm6YWaJy4ozPU7kBgDMVS8RGDfmrZ/fr63hwQ==",
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/@keystonehq/bc-ur-registry-sol/-/bc-ur-registry-sol-0.3.1.tgz",
+ "integrity": "sha512-Okr5hwPxBZxB4EKLK1GSC9vsrh/tFMQ5dvs3EQ9NCOmCn7CXdXIMSeafrpGCHk484Jf5c6X0Wq0yf0VqY2A/8Q==",
"dependencies": {
"@keystonehq/bc-ur-registry": "^0.5.0",
"bs58check": "^2.1.2",
@@ -2675,9 +2651,9 @@
}
},
"node_modules/@keystonehq/sdk": {
- "version": "0.13.0",
- "resolved": "https://registry.npmjs.org/@keystonehq/sdk/-/sdk-0.13.0.tgz",
- "integrity": "sha512-oL9q12XWnT76gj0RIyS6tmVwwe5qMpdrzp85uIe8uoTreSMfdhL085e427iNwKI3TpNVp//HmkrghWHD4o7vJQ==",
+ "version": "0.13.1",
+ "resolved": "https://registry.npmjs.org/@keystonehq/sdk/-/sdk-0.13.1.tgz",
+ "integrity": "sha512-545l83TE5t1cyUZUaNqZOAh15ibWOg9QbK/YeLwnrxt+GOod+ATk3j9SpN6yTSLO8DNl2/x6dKRIFVtTEkZDAg==",
"dependencies": {
"@ngraveio/bc-ur": "^1.0.0",
"qrcode.react": "^1.0.1",
@@ -2753,29 +2729,16 @@
}
},
"node_modules/@keystonehq/sol-keyring": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/@keystonehq/sol-keyring/-/sol-keyring-0.3.0.tgz",
- "integrity": "sha512-CKCJFnfPjI6YGON0kP+oYTTH+Rlx6dD06zywphxqR0TquzFMBF52708gg8m8+mzSW9ngMiRlpI/cvRbpWyYx6Q==",
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/@keystonehq/sol-keyring/-/sol-keyring-0.3.1.tgz",
+ "integrity": "sha512-RU6I3HQrQ9NpRDP9TwlBIy5DftVcNcyk0NWfhkPy/YanhMcCB0cRPw68iQl1rMnR6n1G2+YrBHMxm6swCW+B4Q==",
"dependencies": {
"@keystonehq/bc-ur-registry": "^0.5.0",
- "@keystonehq/bc-ur-registry-sol": "^0.3.0",
- "@keystonehq/sdk": "^0.13.0",
+ "@keystonehq/bc-ur-registry-sol": "^0.3.1",
+ "@keystonehq/sdk": "^0.13.1",
"@solana/web3.js": "^1.36.0",
- "bs58": "^5.0.0",
- "uuid": "^8.3.2"
- }
- },
- "node_modules/@keystonehq/sol-keyring/node_modules/base-x": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz",
- "integrity": "sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw=="
- },
- "node_modules/@keystonehq/sol-keyring/node_modules/bs58": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz",
- "integrity": "sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==",
- "dependencies": {
- "base-x": "^4.0.0"
+ "bs58": "^5.0.0",
+ "uuid": "^8.3.2"
}
},
"node_modules/@ledgerhq/devices": {
@@ -2790,9 +2753,9 @@
}
},
"node_modules/@ledgerhq/devices/node_modules/semver": {
- "version": "7.3.7",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
- "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+ "version": "7.3.8",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz",
+ "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
"dependencies": {
"lru-cache": "^6.0.0"
},
@@ -2804,9 +2767,9 @@
}
},
"node_modules/@ledgerhq/errors": {
- "version": "6.10.2",
- "resolved": "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.10.2.tgz",
- "integrity": "sha512-iMfEJPWaan8QaZw87WMUnFFRJqveE3FpU2ObTE0ydTJLPJNOUJjjurGBklqdWM/j5BIQvpi3byGKFChfNg8CaQ=="
+ "version": "6.11.1",
+ "resolved": "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.11.1.tgz",
+ "integrity": "sha512-HT1PFvNrejcN5z3ba6xikacIdHWMkjBeE9U5FFoGHhaKBKGjC74mnCeEo0/oJunyuVId+9mhGnv6lrBl6Mkqdg=="
},
"node_modules/@ledgerhq/hw-transport": {
"version": "6.27.1",
@@ -2830,9 +2793,9 @@
}
},
"node_modules/@ledgerhq/logs": {
- "version": "6.10.0",
- "resolved": "https://registry.npmjs.org/@ledgerhq/logs/-/logs-6.10.0.tgz",
- "integrity": "sha512-lLseUPEhSFUXYTKj6q7s2O3s2vW2ebgA11vMAlKodXGf5AFw4zUoEbTz9CoFOC9jS6xY4Qr8BmRnxP/odT4Uuw=="
+ "version": "6.10.1",
+ "resolved": "https://registry.npmjs.org/@ledgerhq/logs/-/logs-6.10.1.tgz",
+ "integrity": "sha512-z+ILK8Q3y+nfUl43ctCPuR4Y2bIxk/ooCQFwZxhtci1EhAtMDzMAx2W25qx8G1PPL9UUOdnUax19+F0OjXoj4w=="
},
"node_modules/@metaplex-foundation/beet": {
"version": "0.4.0",
@@ -2855,19 +2818,6 @@
"debug": "^4.3.4"
}
},
- "node_modules/@metaplex-foundation/beet-solana/node_modules/base-x": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz",
- "integrity": "sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw=="
- },
- "node_modules/@metaplex-foundation/beet-solana/node_modules/bs58": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz",
- "integrity": "sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==",
- "dependencies": {
- "base-x": "^4.0.0"
- }
- },
"node_modules/@metaplex-foundation/cusper": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/@metaplex-foundation/cusper/-/cusper-0.0.2.tgz",
@@ -2917,19 +2867,6 @@
"node": ">= 14"
}
},
- "node_modules/@metaplex-foundation/js/node_modules/base-x": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz",
- "integrity": "sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw=="
- },
- "node_modules/@metaplex-foundation/js/node_modules/bs58": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz",
- "integrity": "sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==",
- "dependencies": {
- "base-x": "^4.0.0"
- }
- },
"node_modules/@metaplex-foundation/mpl-auction-house": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@metaplex-foundation/mpl-auction-house/-/mpl-auction-house-2.3.0.tgz",
@@ -2953,9 +2890,9 @@
}
},
"node_modules/@metaplex-foundation/mpl-candy-machine": {
- "version": "4.6.0",
- "resolved": "https://registry.npmjs.org/@metaplex-foundation/mpl-candy-machine/-/mpl-candy-machine-4.6.0.tgz",
- "integrity": "sha512-5H3q78Gum5GgClTx/7VTUZwf7+Nn/m755S/5to/vBD1cEAaIcsGCw3uUwzKauDfCTMjVce7WbfTQf1CS0n3C1A==",
+ "version": "4.7.1",
+ "resolved": "https://registry.npmjs.org/@metaplex-foundation/mpl-candy-machine/-/mpl-candy-machine-4.7.1.tgz",
+ "integrity": "sha512-tBNRAfBE/rYy9pe2aJD4gTFw+pgQ11o3AJjoYGB4+05ow0VjJMSt6kQGzHm2LRPgdLY4diKAq8qHvgsbV5ikNQ==",
"dependencies": {
"@metaplex-foundation/beet": "^0.4.0",
"@metaplex-foundation/beet-solana": "^0.3.0",
@@ -2973,10 +2910,26 @@
"bs58": "^4.0.1"
}
},
+ "node_modules/@metaplex-foundation/mpl-core/node_modules/base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/@metaplex-foundation/mpl-core/node_modules/bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "dependencies": {
+ "base-x": "^3.0.2"
+ }
+ },
"node_modules/@metaplex-foundation/mpl-token-metadata": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/@metaplex-foundation/mpl-token-metadata/-/mpl-token-metadata-2.3.0.tgz",
- "integrity": "sha512-LSqG1gME51ShR9Oh5dmVPNyN0gHR8R7XcEhjfBn44qKqa7gJGsqW0+uQTIGY4/ilb8J+DdZ01veHQ7gjMku5HA==",
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/@metaplex-foundation/mpl-token-metadata/-/mpl-token-metadata-2.3.3.tgz",
+ "integrity": "sha512-BUn95TWj1U9g91WEtn4z4oZdHOnrT7qgwzUaIZ6Im9l9V8G2prNVvQjkoD86WLXjtR0Dgu378Er0A3mVtPmlzg==",
"dependencies": {
"@metaplex-foundation/beet": "^0.4.0",
"@metaplex-foundation/beet-solana": "^0.3.0",
@@ -3062,40 +3015,17 @@
"node_modules/@next/env": {
"version": "12.3.0",
"resolved": "https://registry.npmjs.org/@next/env/-/env-12.3.0.tgz",
- "integrity": "sha512-PTJpjAFVbzBQ9xXpzMTroShvD5YDIIy46jQ7d4LrWpY+/5a8H90Tm8hE3Hvkc5RBRspVo7kvEOnqQms0A+2Q6w==",
- "license": "MIT"
+ "integrity": "sha512-PTJpjAFVbzBQ9xXpzMTroShvD5YDIIy46jQ7d4LrWpY+/5a8H90Tm8hE3Hvkc5RBRspVo7kvEOnqQms0A+2Q6w=="
},
"node_modules/@next/eslint-plugin-next": {
"version": "12.3.0",
"resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-12.3.0.tgz",
"integrity": "sha512-jVdq1qYTNDjUtulnE8/hkPv0pHILV4jMg5La99iaY/FFm20WxVnsAZtbNnMvlPbf8dc010oO304SX9yXbg5PAw==",
"dev": true,
- "license": "MIT",
"dependencies": {
"glob": "7.1.7"
}
},
- "node_modules/@next/eslint-plugin-next/node_modules/glob": {
- "version": "7.1.7",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
- "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
- "dev": true,
- "license": "ISC",
- "dependencies": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.0.4",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- },
- "engines": {
- "node": "*"
- },
- "funding": {
- "url": "https://github.com/sponsors/isaacs"
- }
- },
"node_modules/@next/swc-android-arm-eabi": {
"version": "12.3.0",
"resolved": "https://registry.npmjs.org/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.3.0.tgz",
@@ -3133,7 +3063,6 @@
"cpu": [
"arm64"
],
- "license": "MIT",
"optional": true,
"os": [
"darwin"
@@ -3318,9 +3247,9 @@
]
},
"node_modules/@noble/hashes": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.2.tgz",
- "integrity": "sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA==",
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.3.tgz",
+ "integrity": "sha512-CE0FCR57H2acVI5UOzIGSSIYxZ6v/HOhDR0Ro9VLyhnzLwx0o8W1mmgaqlEUx4049qJDlIBRztv5k+MM8vbO3A==",
"funding": [
{
"type": "individual",
@@ -3344,7 +3273,6 @@
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dev": true,
- "license": "MIT",
"dependencies": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
@@ -3358,7 +3286,6 @@
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
"dev": true,
- "license": "MIT",
"engines": {
"node": ">= 8"
}
@@ -3368,7 +3295,6 @@
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"dev": true,
- "license": "MIT",
"dependencies": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
@@ -3386,18 +3312,6 @@
"uuid": "^8.3.2"
}
},
- "node_modules/@particle-network/solana-wallet": {
- "version": "0.5.6",
- "resolved": "https://registry.npmjs.org/@particle-network/solana-wallet/-/solana-wallet-0.5.6.tgz",
- "integrity": "sha512-Ad0hwJsWRCbptp+mmLFsbrERDQbW+QhFQOmWRT8+6gGrY6qNTApwI9+jlpkxOzEI9rvSqFD1qKKMlqy1n+fJNA==",
- "dependencies": {
- "@particle-network/auth": "^0.5.5"
- },
- "peerDependencies": {
- "@solana/web3.js": "^1.50.1",
- "bs58": "^4.0.1"
- }
- },
"node_modules/@pedrouid/environment": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@pedrouid/environment/-/environment-1.0.1.tgz",
@@ -3427,6 +3341,22 @@
"@solana/web3.js": "^1.5.0"
}
},
+ "node_modules/@project-serum/sol-wallet-adapter/node_modules/base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/@project-serum/sol-wallet-adapter/node_modules/bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "dependencies": {
+ "base-x": "^3.0.2"
+ }
+ },
"node_modules/@randlabs/communication-bridge": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@randlabs/communication-bridge/-/communication-bridge-1.0.1.tgz",
@@ -3441,11 +3371,10 @@
}
},
"node_modules/@rushstack/eslint-patch": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.1.4.tgz",
- "integrity": "sha512-LwzQKA4vzIct1zNZzBmRKI9QuNpLgTQMEjsQLf3BXuGYb3QPTP4Yjf6mkdX+X1mYttZ808QpOwAzZjv28kq7DA==",
- "dev": true,
- "license": "MIT"
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz",
+ "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==",
+ "dev": true
},
"node_modules/@sideway/address": {
"version": "4.1.4",
@@ -3512,11 +3441,11 @@
}
},
"node_modules/@solana/wallet-adapter-alpha": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-alpha/-/wallet-adapter-alpha-0.1.3.tgz",
- "integrity": "sha512-LFMT4bD6ZQru28If8G5oMy7pau+7ratEbzPgRTsT6zu9EhhnZDws8S6/xW6nYecPruJINy7I/00+DXwLkd/TBg==",
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-alpha/-/wallet-adapter-alpha-0.1.5.tgz",
+ "integrity": "sha512-DyleMqm9ePVkYShTVfvzDTx/Xapzf1cEn0ckyBHX6R2jE9RKYMLsS51kC3MOE8uzA3AA/jlP67clw2vdvtStbg==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3526,11 +3455,11 @@
}
},
"node_modules/@solana/wallet-adapter-avana": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-avana/-/wallet-adapter-avana-0.1.7.tgz",
- "integrity": "sha512-dAMb3QUtj/IOcW6/D2s2TFXAm65LrUeDSKrz5Hq33o7Cqom4cZJHwbejjlNKL52x3BGVZesZMRO/Qrz67adiwA==",
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-avana/-/wallet-adapter-avana-0.1.8.tgz",
+ "integrity": "sha512-n1b/DbEUzWog9Iz4+Kjki9bMtqycsgqKFNKIdrRqq7iDpv5HxMM6xlFMiCIL8dUi5H1yUX2uWOdebZC2S0y6pA==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3540,11 +3469,11 @@
}
},
"node_modules/@solana/wallet-adapter-backpack": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-backpack/-/wallet-adapter-backpack-0.1.7.tgz",
- "integrity": "sha512-kyDQkm8S+SLI0ZRU8EyveA9Ov+kP9e9seHcxXMS6c8N0kaBJ/4Fgelxd3HVSHJf2ONMCtluAmBLHfLLfFEHm5A==",
+ "version": "0.1.9",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-backpack/-/wallet-adapter-backpack-0.1.9.tgz",
+ "integrity": "sha512-Xg+g/uiHyXAlUEy6CfKhIgqje9LVrA6/RjbpyqycMZg02wmuzS0+OoewdEznCNtzhOfAns54Wxms5lDJZA8Z+w==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3554,9 +3483,9 @@
}
},
"node_modules/@solana/wallet-adapter-base": {
- "version": "0.9.17",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-base/-/wallet-adapter-base-0.9.17.tgz",
- "integrity": "sha512-YEkO04QndfRXb6psznMuRsw2YBHqVGxmuJgQskCHp2DAkHWPDNbKlv+Q4mOD2gfkUNHUMP8sTnwORhsIR3fQjQ==",
+ "version": "0.9.18",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-base/-/wallet-adapter-base-0.9.18.tgz",
+ "integrity": "sha512-5HQFytLmb64j1Nzc6dwddZx+IUePN/PYqVMyf/ok7fN3z8Vw3EIFS8b+RFfBpj4HWbc2kqv5fpnLlaAH7q67pA==",
"dependencies": {
"eventemitter3": "^4.0.0"
},
@@ -3568,11 +3497,11 @@
}
},
"node_modules/@solana/wallet-adapter-bitkeep": {
- "version": "0.3.13",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-bitkeep/-/wallet-adapter-bitkeep-0.3.13.tgz",
- "integrity": "sha512-52+UMgPWTOnK97V1Ys3YJ4/muqdhJtaCZph5s71bXijL86Vm+/5UNT2qhAnenS2dqXHQ5sMJ5w6wiW6FCA9QyA==",
+ "version": "0.3.14",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-bitkeep/-/wallet-adapter-bitkeep-0.3.14.tgz",
+ "integrity": "sha512-qcufDj88fcoiDNtzno5Xzhi4JYQX7DiV4X9EyIcWBAKhdllmp9HKlZSIEfJ5xBV65qsPGvXzPr0mqaVq35eQig==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3582,11 +3511,11 @@
}
},
"node_modules/@solana/wallet-adapter-bitpie": {
- "version": "0.5.12",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-bitpie/-/wallet-adapter-bitpie-0.5.12.tgz",
- "integrity": "sha512-mlZp3ZNJrGrWp9+S2SJ+jM4SATXQLW5Mjz9TgAD1jYmM0Esv4uyuY4cdUpkB1lhjoCAQ9gRazfQcLo+4bxgH7g==",
+ "version": "0.5.13",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-bitpie/-/wallet-adapter-bitpie-0.5.13.tgz",
+ "integrity": "sha512-6/VFnwk0ElWc9gfyU21xzgJzKlgs2Fki9PW4ssU3IfPVlaw0aoElBFzL3WPUJfD18ltGeSOeYBWQ+qFUuj2MsA==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3596,12 +3525,12 @@
}
},
"node_modules/@solana/wallet-adapter-blocto": {
- "version": "0.5.16",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-blocto/-/wallet-adapter-blocto-0.5.16.tgz",
- "integrity": "sha512-kZ/KpvfhtKG0HuKiGIbmvRJshfVtEFEBjbzc6YvRm0XEmm9MhdGMeUMdWEbJyn4Jy2L3/GdkBSXa+pSFg514kQ==",
+ "version": "0.5.17",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-blocto/-/wallet-adapter-blocto-0.5.17.tgz",
+ "integrity": "sha512-l5CXmwlqc4P276CJMyFj/vjNiR3pWqqf4OXIHKcB7h+NA+KqZaaisBWLTHQ6dpFl+LGx72voAd6PcAiIdLk0YQ==",
"dependencies": {
"@blocto/sdk": "^0.2.21",
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3611,11 +3540,11 @@
}
},
"node_modules/@solana/wallet-adapter-brave": {
- "version": "0.1.11",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-brave/-/wallet-adapter-brave-0.1.11.tgz",
- "integrity": "sha512-j9ukING7K+svHNvhBk1yrACICgCSQTHLpqgatdvSmWfp+2dxDNZ9TjKWabstte1dVuKspk0s9vnO/977Hwlo9w==",
+ "version": "0.1.12",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-brave/-/wallet-adapter-brave-0.1.12.tgz",
+ "integrity": "sha512-SieX4YoJ1aEBKoJ2G9suljzQWtJew8TMtB2Fy107alQMYw560nxmyMMGSAh0Qx+QcHr5Tr1/KIgVugPErvHOlA==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3625,11 +3554,11 @@
}
},
"node_modules/@solana/wallet-adapter-clover": {
- "version": "0.4.13",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-clover/-/wallet-adapter-clover-0.4.13.tgz",
- "integrity": "sha512-HYNR+Xt7xO2DDiOMhIjseNBORE7TLVFLjbymnXFHeoLb/I3ioejcjqWyYxtqwfIoFphZaguYrmI1ay6W8P0GEA==",
+ "version": "0.4.14",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-clover/-/wallet-adapter-clover-0.4.14.tgz",
+ "integrity": "sha512-kqBfUJFl8dV7KsAjruyt+//h8s0S3sZTAT6PUAvIqRZN6wQHuchr/vF9WTgsMm/79xUW7jQPB6I40KfwnpZZnw==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3639,11 +3568,11 @@
}
},
"node_modules/@solana/wallet-adapter-coin98": {
- "version": "0.5.14",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-coin98/-/wallet-adapter-coin98-0.5.14.tgz",
- "integrity": "sha512-fO3g8I/6W9cgCt8DlXT4gqvDgGWZedDfSF/5Q42Q4rRfSFLbWnDd9uKYD5ohy6nTwRRBQNhlTnM31YtOFGtSZQ==",
+ "version": "0.5.15",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-coin98/-/wallet-adapter-coin98-0.5.15.tgz",
+ "integrity": "sha512-x4LofKB+ZPVqk8YuFMVJ2KUvvxLq79zNMA0/nEBZ38iNkMahvSZAk+P7YUdOhctKOooozypXL6cHt17WkeYQUQ==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17",
+ "@solana/wallet-adapter-base": "^0.9.18",
"bs58": "^4.0.1"
},
"engines": {
@@ -3653,12 +3582,28 @@
"@solana/web3.js": "^1.61.0"
}
},
+ "node_modules/@solana/wallet-adapter-coin98/node_modules/base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/@solana/wallet-adapter-coin98/node_modules/bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "dependencies": {
+ "base-x": "^3.0.2"
+ }
+ },
"node_modules/@solana/wallet-adapter-coinbase": {
- "version": "0.1.12",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-coinbase/-/wallet-adapter-coinbase-0.1.12.tgz",
- "integrity": "sha512-x8Ous/8A7WaEJApozhkh2/ywkaWHfquY3Wl2ivmQsVOzs6wE5rVqG0/6B/nlkYOVEZn5t0lCW9xhCAhdt6DWVw==",
+ "version": "0.1.13",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-coinbase/-/wallet-adapter-coinbase-0.1.13.tgz",
+ "integrity": "sha512-TUGVhoDvcWX20A8B81b0+NbdtThKeS23rxgRltPdbxbrbne20Pb+RRRpqCg0FX0bAJqDAujEOHPrctLdqHSVxQ==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3668,11 +3613,11 @@
}
},
"node_modules/@solana/wallet-adapter-coinhub": {
- "version": "0.3.12",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-coinhub/-/wallet-adapter-coinhub-0.3.12.tgz",
- "integrity": "sha512-EclKlfLqeAFpXgl4Kd78cyu227bjh868yYmGezL3zPvur/Nr9C/BC62HpfjHWyyBynAiUS5UYoNCHfCByaS8Qw==",
+ "version": "0.3.13",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-coinhub/-/wallet-adapter-coinhub-0.3.13.tgz",
+ "integrity": "sha512-wVRx8U5LfARfqqKVig5nmm6Q9oSCqYSs1bnu8Z5e4Feoi0LY3F/K+d/i9LSArjDwheN6tgeDAQ6P1ujYvaRDfg==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3682,11 +3627,11 @@
}
},
"node_modules/@solana/wallet-adapter-exodus": {
- "version": "0.1.12",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-exodus/-/wallet-adapter-exodus-0.1.12.tgz",
- "integrity": "sha512-mTBJpQVohih+pIT8RDAnQxBBUIp8osAfhNtPrl8nLm8dGygK4keUtajql+0xtWh7AH481I0RhcLbq8WCvkhcpQ==",
+ "version": "0.1.13",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-exodus/-/wallet-adapter-exodus-0.1.13.tgz",
+ "integrity": "sha512-171n1A9GxnFs9CNuGVYlKzd9NMoAfvzXRfF0WeyUbvbMg5XVGTV1bq9b6N076WnJUubtaiwIIlVJF04++g6hQA==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3710,11 +3655,11 @@
}
},
"node_modules/@solana/wallet-adapter-glow": {
- "version": "0.1.12",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-glow/-/wallet-adapter-glow-0.1.12.tgz",
- "integrity": "sha512-PKC/z80ErpwshEyabNOWzfSrtIm0kbn6SgOKYL7JPtWpQPl0KJsaAOZkju51YszGBunLVjtTF478Rs4v/ZYfgA==",
+ "version": "0.1.13",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-glow/-/wallet-adapter-glow-0.1.13.tgz",
+ "integrity": "sha512-xvXcYtSV+7oLCG+NcBvK/cn4bEaxXAo1wTf3ycK9jbeGlLQJOZxSk4XBTzTInJ9Ga6UO9uZTqE+JZ60CWPRrug==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3724,11 +3669,11 @@
}
},
"node_modules/@solana/wallet-adapter-huobi": {
- "version": "0.1.9",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-huobi/-/wallet-adapter-huobi-0.1.9.tgz",
- "integrity": "sha512-fzyH4IC8FQ3pIjRJ878SWb1lIb2WSNtr7AcDen6qx2dg4kO//WGKv/U6JmD+9Q6BHbo4lFvyGN1NziffwqQDUw==",
+ "version": "0.1.10",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-huobi/-/wallet-adapter-huobi-0.1.10.tgz",
+ "integrity": "sha512-quELQigB5B14ITps6yAxKUOCvY17HtlrnOsOjrzB5KwtAuPbCA46AIruocv3u+ATyultiTDq6PUQUnAlW5IrWw==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3738,11 +3683,11 @@
}
},
"node_modules/@solana/wallet-adapter-hyperpay": {
- "version": "0.1.8",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-hyperpay/-/wallet-adapter-hyperpay-0.1.8.tgz",
- "integrity": "sha512-yL8QxnL1LnOEdU8lLwqQ3goYNbyS8zvI+9bU0uChaakjbAyqTfaoUKRZTT+Cnb8i/08zHFmwuR7/P1usz/NSWQ==",
+ "version": "0.1.9",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-hyperpay/-/wallet-adapter-hyperpay-0.1.9.tgz",
+ "integrity": "sha512-ebeTAaSxjAK32wBOhfbR8dxoccMqxCsLNWEvy1J8NV0lBtm7jeYe2Vr6JzgjLZ/PiMpEzmdAOUMqzZohOvuuCg==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3752,12 +3697,12 @@
}
},
"node_modules/@solana/wallet-adapter-keystone": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-keystone/-/wallet-adapter-keystone-0.1.6.tgz",
- "integrity": "sha512-cdIS0cK5joaVW+4/Q1cnt5FKfCDpz0NILXaQP9CZYqgMBdnVFalK1zEhxNedivZr6thm3G4QrjTcsQFwcMJ4RQ==",
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-keystone/-/wallet-adapter-keystone-0.1.7.tgz",
+ "integrity": "sha512-Q6Eb+f0IxS58CU3TSfchKbHTrmL3eBiT70pNb2dmJCo8jeboVvKIunjZnF8eIPafxEZHHonVby0e3tNcTUxpcQ==",
"dependencies": {
"@keystonehq/sol-keyring": "^0.3.0",
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3767,11 +3712,11 @@
}
},
"node_modules/@solana/wallet-adapter-krystal": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-krystal/-/wallet-adapter-krystal-0.1.6.tgz",
- "integrity": "sha512-1DHa2kjPamKTVrkVqiWJjTi9X2sBYN1bJ4CsReQLBSHwpmqvDmx427oZ2FpRvfTIoXsM+IkLIwAPo3F281G2MQ==",
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-krystal/-/wallet-adapter-krystal-0.1.7.tgz",
+ "integrity": "sha512-qbNjm5tXg2YU4KTfAYx0TS9h5ZC/NzhXSMaQBKZkc9qg0vZwfuPJhMQlt6+teCoeBveB5fpXfw6Wap4ExfarYQ==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3781,14 +3726,14 @@
}
},
"node_modules/@solana/wallet-adapter-ledger": {
- "version": "0.9.19",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-ledger/-/wallet-adapter-ledger-0.9.19.tgz",
- "integrity": "sha512-qXsratrPjNXM6p7IuOM+6p3A7ChE9G3qHq/EQfKK1cRYaOlqwbYDCJ8EEGKYLHtZVHwkKGguarrnT8BzS+ikng==",
+ "version": "0.9.20",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-ledger/-/wallet-adapter-ledger-0.9.20.tgz",
+ "integrity": "sha512-puPGyVxf1z0oPxCdXhifzKhIiHUCwnUGC8rrQhoUGnyIDWN8lu/vuKA/m39z0kvA1Jw9NUcksVSTfAImUqUTiA==",
"dependencies": {
"@ledgerhq/devices": "6.27.1",
"@ledgerhq/hw-transport": "6.27.1",
"@ledgerhq/hw-transport-webhid": "6.27.1",
- "@solana/wallet-adapter-base": "^0.9.17",
+ "@solana/wallet-adapter-base": "^0.9.18",
"buffer": "^6.0.3"
},
"engines": {
@@ -3799,11 +3744,11 @@
}
},
"node_modules/@solana/wallet-adapter-magiceden": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-magiceden/-/wallet-adapter-magiceden-0.1.7.tgz",
- "integrity": "sha512-/vh3X49pv1BRXbbKMwxbRozl2RF0u0Bi3hoZiUzX8nuzNQ3tDtSkRv+v86MX3FCensBIcbPdBg93xINLP/dZXw==",
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-magiceden/-/wallet-adapter-magiceden-0.1.8.tgz",
+ "integrity": "sha512-3vbPAjzVMV71I8LOW3L2WnN9UE2EAg0rQzAJjQkidvogna7Kxg5MWl0GKBzDnQmv803zZYASuHzBuEBSV2si1A==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3813,11 +3758,11 @@
}
},
"node_modules/@solana/wallet-adapter-mathwallet": {
- "version": "0.9.12",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-mathwallet/-/wallet-adapter-mathwallet-0.9.12.tgz",
- "integrity": "sha512-DI4AnXoJwvN0Q5NF7Vn0fSwvhdZthB/mh1X7twwrqOsqSzZmHexzm/K5Gv0/YhX7oO9D2h7jMFhLvW7sTbdO9w==",
+ "version": "0.9.13",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-mathwallet/-/wallet-adapter-mathwallet-0.9.13.tgz",
+ "integrity": "sha512-3l6OXeESBbqC2HvUm21Ep7TcQppALhEVo0mDo5JzGC93r5u61hkQgmlO6Z/hOJHAWgMNlXLa9+9kPAHSieOUNg==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3827,11 +3772,11 @@
}
},
"node_modules/@solana/wallet-adapter-neko": {
- "version": "0.2.6",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-neko/-/wallet-adapter-neko-0.2.6.tgz",
- "integrity": "sha512-RtFaEAkIIyZwHSczcaHrbiFRzopNSOu+MphXmRoKLIiwitJNLXtYMxc2SaW2aaMzBhrM8gChbwe647pTm1y1Fg==",
+ "version": "0.2.7",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-neko/-/wallet-adapter-neko-0.2.7.tgz",
+ "integrity": "sha512-HQaLWLX4xqszA7T8WOCGVi6u+kmrOH/2ttSCMiJ7JS+E2XKcVHMKSP37kaFvfVErNINyxJq4ulfFgPmb/SWCZw==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3841,11 +3786,11 @@
}
},
"node_modules/@solana/wallet-adapter-nightly": {
- "version": "0.1.9",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-nightly/-/wallet-adapter-nightly-0.1.9.tgz",
- "integrity": "sha512-OD1PXU6Y0BM3eVsH6vLfHGl22ZvmJGslKtaig7MyjSbZvws4NMub3zWlgaLQGK3xjvIN58mM64DDj7tO/xoB2Q==",
+ "version": "0.1.10",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-nightly/-/wallet-adapter-nightly-0.1.10.tgz",
+ "integrity": "sha512-ubTiX957PJt+Fb8MzHMkg3TGC4LCg2eYKv+qxTTKpW7CQ1opAWktktsZeJqstUuqjyoYebevqlMGMtQwe3gEjw==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3855,11 +3800,11 @@
}
},
"node_modules/@solana/wallet-adapter-nufi": {
- "version": "0.1.10",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-nufi/-/wallet-adapter-nufi-0.1.10.tgz",
- "integrity": "sha512-Zstr82980KCqsfPgXyXuE2kQh7OH4HR8hjLd1Yo3SBfG8LPM3LzIsGD8me1toNHR2T47n1sznjxHPjkjRrIG2A==",
+ "version": "0.1.11",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-nufi/-/wallet-adapter-nufi-0.1.11.tgz",
+ "integrity": "sha512-PY9c7xIxVPmlq4lcwg8rdoYFPH0iLzaQ90X3vx/ZzP57FimI+jYhXwh2i/XO2AnNnn6G2USxTbmclBPIIUkC7A==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3869,11 +3814,11 @@
}
},
"node_modules/@solana/wallet-adapter-onto": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-onto/-/wallet-adapter-onto-0.1.1.tgz",
- "integrity": "sha512-DoXMa/B/2PLZhlLnDRB1gZLc6q0nXny+2w6/T7D6Sz199FMq1rfbpy1tRLnf6Cug586rL5ofX8jJiBKy41o/Pw==",
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-onto/-/wallet-adapter-onto-0.1.2.tgz",
+ "integrity": "sha512-nky71wE2lObFVio9NNaYajeCCCzD19V4t/7VDvVUU5lv/hpu37qq88p5efjMmNpyrrsWqJu1GJrCuYqLi4xyfQ==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3883,12 +3828,12 @@
}
},
"node_modules/@solana/wallet-adapter-particle": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-particle/-/wallet-adapter-particle-0.1.4.tgz",
- "integrity": "sha512-vE/zQJo2pLmCaP25q2NCYq89HOk4MzVpdPsGKNi91KT4EOfPskWSvtl5al33XX7ZsjSHJQLUmWFqsXQTuXUvnA==",
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-particle/-/wallet-adapter-particle-0.1.5.tgz",
+ "integrity": "sha512-BisV2yPu33u0aDpjwpCHB5DQiLJuge2kJJAfpQdk5yBRiXQRHn/3GwsN4Te9bjaYdAQBQw0UTAp/ajcD9h9BNA==",
"dependencies": {
"@particle-network/solana-wallet": "^0.5.0",
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3897,12 +3842,42 @@
"@solana/web3.js": "^1.61.0"
}
},
+ "node_modules/@solana/wallet-adapter-particle/node_modules/@particle-network/solana-wallet": {
+ "version": "0.5.6",
+ "resolved": "https://registry.npmjs.org/@particle-network/solana-wallet/-/solana-wallet-0.5.6.tgz",
+ "integrity": "sha512-Ad0hwJsWRCbptp+mmLFsbrERDQbW+QhFQOmWRT8+6gGrY6qNTApwI9+jlpkxOzEI9rvSqFD1qKKMlqy1n+fJNA==",
+ "dependencies": {
+ "@particle-network/auth": "^0.5.5"
+ },
+ "peerDependencies": {
+ "@solana/web3.js": "^1.50.1",
+ "bs58": "^4.0.1"
+ }
+ },
+ "node_modules/@solana/wallet-adapter-particle/node_modules/base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "peer": true,
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/@solana/wallet-adapter-particle/node_modules/bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "peer": true,
+ "dependencies": {
+ "base-x": "^3.0.2"
+ }
+ },
"node_modules/@solana/wallet-adapter-phantom": {
- "version": "0.9.16",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-phantom/-/wallet-adapter-phantom-0.9.16.tgz",
- "integrity": "sha512-AJmTmiE74G08XhPWfwJegP2mgLMLFSnvr/NfSS6ScMskHfTg01BEGApGwGdic2gKUgPRInDQgqgCToCOIxnsRA==",
+ "version": "0.9.17",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-phantom/-/wallet-adapter-phantom-0.9.17.tgz",
+ "integrity": "sha512-NgqObD9G2SojkKaLEz7RPC0izS0qPzHa94Da4le3xMErW7SKIEKjVfQ3fP/rIcD2jEwGW5qf9YqYPsPw8jaJ0Q==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3912,11 +3887,11 @@
}
},
"node_modules/@solana/wallet-adapter-react": {
- "version": "0.15.19",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-react/-/wallet-adapter-react-0.15.19.tgz",
- "integrity": "sha512-8MEiirK1Fp7apMGFQU6OMZBvppjHwr0uwzE3iYDlG7gPkMPVVR0pruy2oeexSN0fw+S7gnorZJehgOGbptyHHA==",
+ "version": "0.15.20",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-react/-/wallet-adapter-react-0.15.20.tgz",
+ "integrity": "sha512-lltCm44QdYuCeCdR60flu5KJyTz/K3TC9H9BB0MJdmUZwgZop8yejO351ISYJUZxqBuFdwuTtK1psjf/12jRiA==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3928,12 +3903,12 @@
}
},
"node_modules/@solana/wallet-adapter-react-ui": {
- "version": "0.9.17",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-react-ui/-/wallet-adapter-react-ui-0.9.17.tgz",
- "integrity": "sha512-KAbxH4MFc/rD/X/ts6jQ+IXeOS9SDXXI4eUkZgkE4wwsn368ssTlGU+PjOIAWmD0y1sn1MoUb9qfheyUTqHHmg==",
+ "version": "0.9.18",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-react-ui/-/wallet-adapter-react-ui-0.9.18.tgz",
+ "integrity": "sha512-nJc42WgV7o/nkXVrZOwlSu277HXtec9vSHF5P1/9n/R2lCS2hRftnn/9/lNKy1rhhBhV5xq+Cr+fPGh0tyVhsw==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17",
- "@solana/wallet-adapter-react": "^0.15.19"
+ "@solana/wallet-adapter-base": "^0.9.18",
+ "@solana/wallet-adapter-react": "^0.15.20"
},
"engines": {
"node": ">=16"
@@ -3945,11 +3920,11 @@
}
},
"node_modules/@solana/wallet-adapter-safepal": {
- "version": "0.5.12",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-safepal/-/wallet-adapter-safepal-0.5.12.tgz",
- "integrity": "sha512-XBad22a2lR04d95uY0CWiZvJKFOA7DIjs1y8NwGN1WGdoCmBbOMGN4NTwWAyr/HOLmmWtu6BTfGBHHLbklh+9w==",
+ "version": "0.5.13",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-safepal/-/wallet-adapter-safepal-0.5.13.tgz",
+ "integrity": "sha512-TBnJDQKEQZ9E/8xXyHrhOKflz9iUOwRoiQTTtbMHYyOdBVeKUjzyPjZ2fZNFZSMUMmqDDOjQZPJIqFxItrHVkA==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3959,11 +3934,11 @@
}
},
"node_modules/@solana/wallet-adapter-saifu": {
- "version": "0.1.9",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-saifu/-/wallet-adapter-saifu-0.1.9.tgz",
- "integrity": "sha512-vHfWXhy1Z913N1m+H+ImIgDARGvl6IvzLO4VF4Nvs68xhLpwyaftzfO2uY4lu12lqnHWBLmYQInHt3QZaB+v6A==",
+ "version": "0.1.10",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-saifu/-/wallet-adapter-saifu-0.1.10.tgz",
+ "integrity": "sha512-DbLdxbBv1dbQXOZbXJhpyDNHd3fdzxeseEvi6VO0XATWTQ5oqCaNXSmRye4U01wM2Oexd9rm/2DvxezPtQivQQ==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -3973,12 +3948,12 @@
}
},
"node_modules/@solana/wallet-adapter-salmon": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-salmon/-/wallet-adapter-salmon-0.1.6.tgz",
- "integrity": "sha512-6VXSSn6dEuwlN1e2NJnJpz7QHG75qB1pPG/WvQ6F/uhjgzZS8CwjE/AUzdjjsHBghLj8ZrstdP6jsxxiYjBixA==",
+ "version": "0.1.9",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-salmon/-/wallet-adapter-salmon-0.1.9.tgz",
+ "integrity": "sha512-jmLek/7Cjwqwhxs+dihuzyrYXdU2JPrqjK6cHlSkjYfzO3oLDRR2UavTrgbniyZY8FQhyRl9p+VZUpQX+XfPVw==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17",
- "salmon-adapter-sdk": "^1.0.0"
+ "@solana/wallet-adapter-base": "^0.9.18",
+ "salmon-adapter-sdk": "^1.1.0"
},
"engines": {
"node": ">=16"
@@ -3988,11 +3963,11 @@
}
},
"node_modules/@solana/wallet-adapter-sky": {
- "version": "0.1.9",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-sky/-/wallet-adapter-sky-0.1.9.tgz",
- "integrity": "sha512-cp6JP4nAJqz/Z3aAKvFRgVhY5II+s/+4beTQxbepQL2MlXxSv1Y6ogJdncLW9KHs8ag4cMhIgGqJsMNuO9Vodw==",
+ "version": "0.1.10",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-sky/-/wallet-adapter-sky-0.1.10.tgz",
+ "integrity": "sha512-4QJOr3NE7o732zq4Ov4+YSX37QLR39+2zJ6t4wAAhFO7LJtkDZneq768zjg7W/DgQPAg1+Cqh0LP5ZA96E4bQA==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -4002,11 +3977,11 @@
}
},
"node_modules/@solana/wallet-adapter-slope": {
- "version": "0.5.15",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-slope/-/wallet-adapter-slope-0.5.15.tgz",
- "integrity": "sha512-AckJ2pwrkESQkIHQCqUEiRy5sBD1L2QKiw2ojsSzCtwTp1FDeb+tJ3v0vGe7fAtVchV7qHUJu+e6azXREddggw==",
+ "version": "0.5.16",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-slope/-/wallet-adapter-slope-0.5.16.tgz",
+ "integrity": "sha512-0bZMcB9aMX4Kl2FWH7lj8HIPY5ph1LgOWl8wFCs/X+A4LyGmKqr2oKoc+kzRUqaVsIjF5CfQ0PePp/Aa4n1DmQ==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17",
+ "@solana/wallet-adapter-base": "^0.9.18",
"bs58": "^4.0.1"
},
"engines": {
@@ -4016,13 +3991,29 @@
"@solana/web3.js": "^1.61.0"
}
},
+ "node_modules/@solana/wallet-adapter-slope/node_modules/base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/@solana/wallet-adapter-slope/node_modules/bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "dependencies": {
+ "base-x": "^3.0.2"
+ }
+ },
"node_modules/@solana/wallet-adapter-solflare": {
- "version": "0.6.16",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-solflare/-/wallet-adapter-solflare-0.6.16.tgz",
- "integrity": "sha512-qvonqMq6QpzNhwFAPQ8U1x1dm+3BkDVFl3WG2AYjkCxOKetuZjV+e+IB3lSa5SEYqP/eH4EynRBwNf+a0YRrvg==",
+ "version": "0.6.18",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-solflare/-/wallet-adapter-solflare-0.6.18.tgz",
+ "integrity": "sha512-LF6V2MgM5+d3zuVioG4ZkpPIVXRHXXysjWfIhqpRW3n0lPFLQMk7agTnEgQU9tHy0WZiLvN6SYZamPK9dGfT0A==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17",
- "@solflare-wallet/sdk": "^1.0.11"
+ "@solana/wallet-adapter-base": "^0.9.18",
+ "@solflare-wallet/sdk": "^1.1.0"
},
"engines": {
"node": ">=16"
@@ -4032,12 +4023,12 @@
}
},
"node_modules/@solana/wallet-adapter-sollet": {
- "version": "0.11.11",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-sollet/-/wallet-adapter-sollet-0.11.11.tgz",
- "integrity": "sha512-LgMVr5+jm101mxEUn+aZN2c5m1iO/n4LFpuKDehJHXWu7e8Y8SCLDdoGjTwEVv0d/2q9bxAyiwGWi1md+IpUnw==",
+ "version": "0.11.12",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-sollet/-/wallet-adapter-sollet-0.11.12.tgz",
+ "integrity": "sha512-rXTPS28ZRHdErcWiNhadoumcQb3H544wmmWccsARgO4PW1eG/37hp9LIQjFT3c7uBjWPM3rVFfklbmlHQOrVmA==",
"dependencies": {
"@project-serum/sol-wallet-adapter": "^0.2.6",
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -4047,11 +4038,11 @@
}
},
"node_modules/@solana/wallet-adapter-solong": {
- "version": "0.9.12",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-solong/-/wallet-adapter-solong-0.9.12.tgz",
- "integrity": "sha512-e96hGEh1NW7Pr4dkLGeqOUSQpH/a4Lz6nkKwpyo88CtttZKF/zfttthB3Z525u9SR5lFBSaUEYhNT5hsh/kSbg==",
+ "version": "0.9.13",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-solong/-/wallet-adapter-solong-0.9.13.tgz",
+ "integrity": "sha512-zOwv6+bnKbyUB9TAgtq826WX4XtxTYq5ak83X2GboAuDsPlyYhGhQKiq7ZndKq5Wqd7cCwLRNV95n6YaAfavWw==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -4061,11 +4052,11 @@
}
},
"node_modules/@solana/wallet-adapter-spot": {
- "version": "0.1.9",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-spot/-/wallet-adapter-spot-0.1.9.tgz",
- "integrity": "sha512-P3N5yPgs3n9EACQkrT+X4xTPRlkscHaZi6dbijEy3dVWkPJDqme3iff5f4aCBFkSrrQAuf/NF4Fc+2MjmyYGFA==",
+ "version": "0.1.10",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-spot/-/wallet-adapter-spot-0.1.10.tgz",
+ "integrity": "sha512-f+BbIbvKR/1VeD/5SNcb86XDgTJ+w0md0t2VvnmPqndNKaHtSEkRBYhcggF4Y9lUQHqIDJ8CYdBzA5dkOL+Vng==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -4075,12 +4066,12 @@
}
},
"node_modules/@solana/wallet-adapter-strike": {
- "version": "0.1.5",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-strike/-/wallet-adapter-strike-0.1.5.tgz",
- "integrity": "sha512-CoVV7IOJC5+2H9Bhwgzlg+CMKE5Z7YTpYvgZ+ohnXTVCJUZYtAzhIOXD0t7Md31L+5svbyP6oq+b3B7s33Mung==",
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-strike/-/wallet-adapter-strike-0.1.7.tgz",
+ "integrity": "sha512-elDnALldwgep3P2fnlewQPyckfTjY6otiZG4xIgpoI/foXcOHTHVxiEspxaod9H6JYXjTTWj1EdH9Ix+2rpCKw==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17",
- "@strike-protocols/solana-wallet-adapter": "^0.1.4"
+ "@solana/wallet-adapter-base": "^0.9.18",
+ "@strike-protocols/solana-wallet-adapter": "^0.1.7"
},
"engines": {
"node": ">=16"
@@ -4090,11 +4081,11 @@
}
},
"node_modules/@solana/wallet-adapter-tokenary": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-tokenary/-/wallet-adapter-tokenary-0.1.6.tgz",
- "integrity": "sha512-Bi9RKhavSasA+HFVBRCCNrFd/iRGIxKqwG3bmCrn/iKV3l3lHSw5OMVx7qXrXvmoUVS9DuM5MX7bMxe6i4bu6A==",
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-tokenary/-/wallet-adapter-tokenary-0.1.7.tgz",
+ "integrity": "sha512-HuNieaWJDtxBmDE+h9+2E4uJ1TmkY6b0iHwD71joD50HwDqkOH7nZO8qwhdO2/3szYlW0w+gcPQVaq0hBAp2+g==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -4104,11 +4095,11 @@
}
},
"node_modules/@solana/wallet-adapter-tokenpocket": {
- "version": "0.4.13",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-tokenpocket/-/wallet-adapter-tokenpocket-0.4.13.tgz",
- "integrity": "sha512-4HJ9wqs1FLNxXIkiUIRYyCIXd1xZd+GFoIjzk42jjykJLtjz7MFGH0jOjDVWH3sEmLdJ3BIEQ7Z8t6wYjfiDhw==",
+ "version": "0.4.14",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-tokenpocket/-/wallet-adapter-tokenpocket-0.4.14.tgz",
+ "integrity": "sha512-tLmnc8wKNGFLCgNGZ/xDRLtNUa3KhKLIXWBltUm3GErnmhUezzZHy4h6UbP5tcvaDQ48eg8/KAUJPlF617/vhg==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -4118,11 +4109,11 @@
}
},
"node_modules/@solana/wallet-adapter-torus": {
- "version": "0.11.22",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-torus/-/wallet-adapter-torus-0.11.22.tgz",
- "integrity": "sha512-Hr9GfF2Lx2d+ezTObmP7K5uCun3lb4RgGWmrG7P9NwO+BVdL97fJC7qMfw0cZpAPQL63Dfwr/jegMVY5X1KFUw==",
+ "version": "0.11.23",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-torus/-/wallet-adapter-torus-0.11.23.tgz",
+ "integrity": "sha512-kh6ygm0/gxqSXJLNiGpw0gLqIpoXxeMpso0GsEP2FVbAtzknuhP7MLZ4K+1cHzMScPFkpp2CYAuYeDB0AprVjw==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17",
+ "@solana/wallet-adapter-base": "^0.9.18",
"@toruslabs/solana-embed": "^0.3.0",
"assert": "^2.0.0",
"crypto-browserify": "^3.12.0",
@@ -4137,11 +4128,11 @@
}
},
"node_modules/@solana/wallet-adapter-trust": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-trust/-/wallet-adapter-trust-0.1.7.tgz",
- "integrity": "sha512-eCgXzNtfksXmSo7lf7aH73rt9r4nd94EU8n4FNtFn2yCNOrG+PYTwaHmsnpWctSn8WAVsn/8a+woDZGjAAidng==",
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-trust/-/wallet-adapter-trust-0.1.8.tgz",
+ "integrity": "sha512-ES48UCN/C7FtGq2YYDEf6isTuahY6g4PAvljyt0uuBq8VV7hVNxWU4gfjtbwsvAY6FWRXyfNYUAEgHKUrqYvEQ==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -4151,18 +4142,18 @@
}
},
"node_modules/@solana/wallet-adapter-walletconnect": {
- "version": "0.1.5",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-walletconnect/-/wallet-adapter-walletconnect-0.1.5.tgz",
- "integrity": "sha512-jEgS6Gdc0010+NYows69JNee3lhlUO9gU19gLM4MqEndNMeG9wkXIql5wmefC0herRIxtmJG1XAZi+q3lI92rA==",
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-walletconnect/-/wallet-adapter-walletconnect-0.1.8.tgz",
+ "integrity": "sha512-793V0jkwzIqZuztE6yiY1Ig7j+2VTJenIaJzCZbeor9XbZQxF3orbCWY7/pGPY2FkoXyxQ6JKV3IJtqeE7NJDw==",
"dependencies": {
- "@jnwng/walletconnect-solana": "^0.1.0",
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@jnwng/walletconnect-solana": "^0.1.3",
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
},
"peerDependencies": {
- "@solana/web3.js": "^1.61.0"
+ "@solana/web3.js": "^1.58.0"
}
},
"node_modules/@solana/wallet-adapter-wallets": {
@@ -4222,11 +4213,11 @@
}
},
"node_modules/@solana/wallet-adapter-xdefi": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-xdefi/-/wallet-adapter-xdefi-0.1.1.tgz",
- "integrity": "sha512-RNpVc8roXNkO0/m+aIu2jp3N/qDp9zuPAMjwPJJLZiwbUxPTAsozbfbUSo+4LDWw8jg4210vpa15Y6v02UD4gQ==",
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-xdefi/-/wallet-adapter-xdefi-0.1.2.tgz",
+ "integrity": "sha512-fdjMsb3v1Q9qRC2lGbvQyZlMcDVtkeb35kxEi9Mf2HZOGEQaJjGnXWwioo0vbq7HzCsak77vTE97jKRsR9I9Xw==",
"dependencies": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
},
"engines": {
"node": ">=16"
@@ -4236,9 +4227,9 @@
}
},
"node_modules/@solana/web3.js": {
- "version": "1.62.0",
- "resolved": "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.62.0.tgz",
- "integrity": "sha512-rHnqJR5ECooUp8egurP9Qi1SKI1Q3pbF2ZkaHbEmFsSjBsyEe+Qqxa5h+7ueylqApYyk0zawnxz83y4kdrlNIA==",
+ "version": "1.66.2",
+ "resolved": "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.66.2.tgz",
+ "integrity": "sha512-RyaHMR2jGmaesnYP045VLeBGfR/gAW3cvZHzMFGg7bkO+WOYOYp1nEllf0/la4U4qsYGKCsO9eEevR5fhHiVHg==",
"dependencies": {
"@babel/runtime": "^7.12.5",
"@noble/ed25519": "^1.7.0",
@@ -4260,6 +4251,22 @@
"node": ">=12.20.0"
}
},
+ "node_modules/@solana/web3.js/node_modules/base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/@solana/web3.js/node_modules/bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "dependencies": {
+ "base-x": "^3.0.2"
+ }
+ },
"node_modules/@solana/web3.js/node_modules/buffer": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.1.tgz",
@@ -4284,9 +4291,9 @@
}
},
"node_modules/@solflare-wallet/sdk": {
- "version": "1.0.12",
- "resolved": "https://registry.npmjs.org/@solflare-wallet/sdk/-/sdk-1.0.12.tgz",
- "integrity": "sha512-zSCistnl+36idZZCLe6RpqMwIYCyFdeA5lQtRNi6LX0xQ999cDufT/LPKviRlibTf9VJa92IHYZcWJiHkFY4sA==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@solflare-wallet/sdk/-/sdk-1.1.0.tgz",
+ "integrity": "sha512-h/OmjgRMDC6CkPHlkUQgOIRv1QXEZp+kQg132zU1KAcikZvc25xf0yMMRU0APUypQ6EJEz6bgQR6BRvvVA9/ZA==",
"dependencies": {
"@project-serum/sol-wallet-adapter": "0.2.0",
"bs58": "^4.0.1",
@@ -4294,7 +4301,7 @@
"uuid": "^8.3.2"
},
"peerDependencies": {
- "@solana/web3.js": "^1.31.0"
+ "@solana/web3.js": "^1.61.0"
}
},
"node_modules/@solflare-wallet/sdk/node_modules/@project-serum/sol-wallet-adapter": {
@@ -4312,6 +4319,22 @@
"@solana/web3.js": "^1.5.0"
}
},
+ "node_modules/@solflare-wallet/sdk/node_modules/base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/@solflare-wallet/sdk/node_modules/bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "dependencies": {
+ "base-x": "^3.0.2"
+ }
+ },
"node_modules/@stablelib/aead": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@stablelib/aead/-/aead-1.0.1.tgz",
@@ -4459,9 +4482,9 @@
}
},
"node_modules/@strike-protocols/solana-wallet-adapter": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/@strike-protocols/solana-wallet-adapter/-/solana-wallet-adapter-0.1.7.tgz",
- "integrity": "sha512-WePD1kml3JPatU9rHIRYsP76BsD8T8j7n60ED1sFbIgKId34pvdQoQsuv/c7kpEYsRZvYJhaR2nODEE1FMR3CA==",
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/@strike-protocols/solana-wallet-adapter/-/solana-wallet-adapter-0.1.8.tgz",
+ "integrity": "sha512-8gZAfjkoFgwf5fLFzrVuE2MtxAc7Pc0loBgi0zfcb3ijOy/FEpm5RJKLruKOhcThS6CHrfFxDU80AsZe+msObw==",
"dependencies": {
"@solana/web3.js": "^1.44.3",
"bs58": "^4.0.1",
@@ -4469,6 +4492,22 @@
"uuid": "^8.3.2"
}
},
+ "node_modules/@strike-protocols/solana-wallet-adapter/node_modules/base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/@strike-protocols/solana-wallet-adapter/node_modules/bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "dependencies": {
+ "base-x": "^3.0.2"
+ }
+ },
"node_modules/@supercharge/promise-pool": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/@supercharge/promise-pool/-/promise-pool-2.3.2.tgz",
@@ -4481,7 +4520,6 @@
"version": "0.4.11",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.11.tgz",
"integrity": "sha512-rEUrBSGIoSFuYxwBYtlUFMlE2CwGhmW+w9355/5oduSw8e5h2+Tj4UrAGNNgP9915++wj5vkQo0UuOBqOAq4nw==",
- "license": "MIT",
"dependencies": {
"tslib": "^2.4.0"
}
@@ -4678,13 +4716,12 @@
"version": "0.0.29",
"resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
"integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==",
- "dev": true,
- "license": "MIT"
+ "dev": true
},
"node_modules/@types/lodash": {
- "version": "4.14.185",
- "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.185.tgz",
- "integrity": "sha512-evMDG1bC4rgQg4ku9tKpuMh5iBNEwNa3tf9zRHdP1qlv+1WUg44xat4IxCE14gIpZRGUUWAx2VhItCZc25NfMA=="
+ "version": "4.14.186",
+ "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.186.tgz",
+ "integrity": "sha512-eHcVlLXP0c2FlMPm56ITode2AgLMSa6aJ05JTTbYbI+7EMkCEE5qk2E41d5g2lCVTqRe0GnnRFurmlCsDODrPw=="
},
"node_modules/@types/lodash.mergewith": {
"version": "4.6.6",
@@ -4697,8 +4734,7 @@
"node_modules/@types/node": {
"version": "18.7.16",
"resolved": "https://registry.npmjs.org/@types/node/-/node-18.7.16.tgz",
- "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg==",
- "license": "MIT"
+ "integrity": "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg=="
},
"node_modules/@types/parse-json": {
"version": "4.0.0",
@@ -4717,15 +4753,13 @@
"version": "15.7.5",
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz",
"integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==",
- "devOptional": true,
- "license": "MIT"
+ "devOptional": true
},
"node_modules/@types/react": {
"version": "18.0.19",
"resolved": "https://registry.npmjs.org/@types/react/-/react-18.0.19.tgz",
"integrity": "sha512-BDc3Q+4Q3zsn7k9xZrKfjWyJsSlEDMs38gD1qp2eDazLCdcPqAT+vq1ND+Z8AGel/UiwzNUk8ptpywgNQcJ1MQ==",
"devOptional": true,
- "license": "MIT",
"dependencies": {
"@types/prop-types": "*",
"@types/scheduler": "*",
@@ -4737,7 +4771,6 @@
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.0.6.tgz",
"integrity": "sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==",
"dev": true,
- "license": "MIT",
"dependencies": {
"@types/react": "*"
}
@@ -4746,8 +4779,7 @@
"version": "0.16.2",
"resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz",
"integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==",
- "devOptional": true,
- "license": "MIT"
+ "devOptional": true
},
"node_modules/@types/secp256k1": {
"version": "4.0.3",
@@ -4766,15 +4798,14 @@
}
},
"node_modules/@typescript-eslint/parser": {
- "version": "5.37.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.37.0.tgz",
- "integrity": "sha512-01VzI/ipYKuaG5PkE5+qyJ6m02fVALmMPY3Qq5BHflDx3y4VobbLdHQkSMg9VPRS4KdNt4oYTMaomFoHonBGAw==",
+ "version": "5.40.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.40.1.tgz",
+ "integrity": "sha512-IK6x55va5w4YvXd4b3VrXQPldV9vQTxi5ov+g4pMANsXPTXOcfjx08CRR1Dfrcc51syPtXHF5bgLlMHYFrvQtg==",
"dev": true,
- "license": "BSD-2-Clause",
"dependencies": {
- "@typescript-eslint/scope-manager": "5.37.0",
- "@typescript-eslint/types": "5.37.0",
- "@typescript-eslint/typescript-estree": "5.37.0",
+ "@typescript-eslint/scope-manager": "5.40.1",
+ "@typescript-eslint/types": "5.40.1",
+ "@typescript-eslint/typescript-estree": "5.40.1",
"debug": "^4.3.4"
},
"engines": {
@@ -4794,14 +4825,13 @@
}
},
"node_modules/@typescript-eslint/scope-manager": {
- "version": "5.37.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.37.0.tgz",
- "integrity": "sha512-F67MqrmSXGd/eZnujjtkPgBQzgespu/iCZ+54Ok9X5tALb9L2v3G+QBSoWkXG0p3lcTJsL+iXz5eLUEdSiJU9Q==",
+ "version": "5.40.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.40.1.tgz",
+ "integrity": "sha512-jkn4xsJiUQucI16OLCXrLRXDZ3afKhOIqXs4R3O+M00hdQLKR58WuyXPZZjhKLFCEP2g+TXdBRtLQ33UfAdRUg==",
"dev": true,
- "license": "MIT",
"dependencies": {
- "@typescript-eslint/types": "5.37.0",
- "@typescript-eslint/visitor-keys": "5.37.0"
+ "@typescript-eslint/types": "5.40.1",
+ "@typescript-eslint/visitor-keys": "5.40.1"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
@@ -4812,11 +4842,10 @@
}
},
"node_modules/@typescript-eslint/types": {
- "version": "5.37.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.37.0.tgz",
- "integrity": "sha512-3frIJiTa5+tCb2iqR/bf7XwU20lnU05r/sgPJnRpwvfZaqCJBrl8Q/mw9vr3NrNdB/XtVyMA0eppRMMBqdJ1bA==",
+ "version": "5.40.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.40.1.tgz",
+ "integrity": "sha512-Icg9kiuVJSwdzSQvtdGspOlWNjVDnF3qVIKXdJ103o36yRprdl3Ge5cABQx+csx960nuMF21v8qvO31v9t3OHw==",
"dev": true,
- "license": "MIT",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
@@ -4826,14 +4855,13 @@
}
},
"node_modules/@typescript-eslint/typescript-estree": {
- "version": "5.37.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.37.0.tgz",
- "integrity": "sha512-JkFoFIt/cx59iqEDSgIGnQpCTRv96MQnXCYvJi7QhBC24uyuzbD8wVbajMB1b9x4I0octYFJ3OwjAwNqk1AjDA==",
+ "version": "5.40.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.40.1.tgz",
+ "integrity": "sha512-5QTP/nW5+60jBcEPfXy/EZL01qrl9GZtbgDZtDPlfW5zj/zjNrdI2B5zMUHmOsfvOr2cWqwVdWjobCiHcedmQA==",
"dev": true,
- "license": "BSD-2-Clause",
"dependencies": {
- "@typescript-eslint/types": "5.37.0",
- "@typescript-eslint/visitor-keys": "5.37.0",
+ "@typescript-eslint/types": "5.40.1",
+ "@typescript-eslint/visitor-keys": "5.40.1",
"debug": "^4.3.4",
"globby": "^11.1.0",
"is-glob": "^4.0.3",
@@ -4854,11 +4882,10 @@
}
},
"node_modules/@typescript-eslint/typescript-estree/node_modules/semver": {
- "version": "7.3.7",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
- "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+ "version": "7.3.8",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz",
+ "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
"dev": true,
- "license": "ISC",
"dependencies": {
"lru-cache": "^6.0.0"
},
@@ -4870,13 +4897,12 @@
}
},
"node_modules/@typescript-eslint/visitor-keys": {
- "version": "5.37.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.37.0.tgz",
- "integrity": "sha512-Hp7rT4cENBPIzMwrlehLW/28EVCOcE9U1Z1BQTc8EA8v5qpr7GRGuG+U58V5tTY48zvUOA3KHvw3rA8tY9fbdA==",
+ "version": "5.40.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.40.1.tgz",
+ "integrity": "sha512-A2DGmeZ+FMja0geX5rww+DpvILpwo1OsiQs0M+joPWJYsiEFBLsH0y1oFymPNul6Z5okSmHpP4ivkc2N0Cgfkw==",
"dev": true,
- "license": "MIT",
"dependencies": {
- "@typescript-eslint/types": "5.37.0",
+ "@typescript-eslint/types": "5.40.1",
"eslint-visitor-keys": "^3.3.0"
},
"engines": {
@@ -4900,9 +4926,9 @@
}
},
"node_modules/@walletconnect/core": {
- "version": "2.0.0-rc.2",
- "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.0.0-rc.2.tgz",
- "integrity": "sha512-zyZs0ChqthjKKBKF8bhXRhli15U+GOa/YPX4gzmdjRB9o8LZ27GMRNvWdLhUHkJU/GC6EfmV3/B7J8rfQGsnDA==",
+ "version": "2.0.0-rc.3",
+ "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.0.0-rc.3.tgz",
+ "integrity": "sha512-ErnwoAZVnu8658GT9Aw3WjaOctFu1TQYyhOSL6LRF4pa+K4wvHOikiBLxPG7HsrkqyZ8ItdROmkw2ycSipmMow==",
"dependencies": {
"@walletconnect/heartbeat": "1.0.0",
"@walletconnect/jsonrpc-provider": "1.0.5",
@@ -4914,8 +4940,8 @@
"@walletconnect/relay-auth": "1.0.3",
"@walletconnect/safe-json": "1.0.0",
"@walletconnect/time": "1.0.1",
- "@walletconnect/types": "2.0.0-rc.2",
- "@walletconnect/utils": "2.0.0-rc.2",
+ "@walletconnect/types": "2.0.0-rc.3",
+ "@walletconnect/utils": "2.0.0-rc.3",
"lodash.isequal": "4.5.0",
"pino": "6.7.0",
"pino-pretty": "4.3.0",
@@ -4944,9 +4970,9 @@
}
},
"node_modules/@walletconnect/core/node_modules/@walletconnect/types": {
- "version": "2.0.0-rc.2",
- "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.0.0-rc.2.tgz",
- "integrity": "sha512-BuQbEjkRIZULqBHBxKgGiUgeJ1i+5NpNvw5Y7ML7X+hksHooj0+Hy6qv7Jc/cegltEovElAU2w6R38dfuEPUOA==",
+ "version": "2.0.0-rc.3",
+ "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.0.0-rc.3.tgz",
+ "integrity": "sha512-PkzgdBr4tSXQtyGT91P6cdQJ44dCwRRwIW4BDW6tRqsvziPcyt6aQzWYfKQiMl6i2fIMK/8fgr1oDYPcLQLvbA==",
"dependencies": {
"@walletconnect/events": "1.0.0",
"@walletconnect/heartbeat": "1.0.0",
@@ -5065,19 +5091,19 @@
"integrity": "sha512-QJzp/S/86sUAgWY6eh5MKYmSfZaRpIlmCJdi5uG4DJlKkZrHEF7ye7gA+VtbVzvTtpM/gRwO2plQuiooIeXjfg=="
},
"node_modules/@walletconnect/sign-client": {
- "version": "2.0.0-rc.2",
- "resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.0.0-rc.2.tgz",
- "integrity": "sha512-JJ8/31NERk59GqQ8KLm+1pM32YkTfAx8Nvh8cEBWp/mjtUgcoXEZ4V6EnoLkA+r1Vy/8kMnYOdIUH0OA5gXmvQ==",
+ "version": "2.0.0-rc.3",
+ "resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.0.0-rc.3.tgz",
+ "integrity": "sha512-M/+tmccQvNIM86CJ3RsQBZVaECSq8jH1CEj1iUDmhxuG0eEg3Zesf5yJMg41aFFNVi2vSdBCeP0zcqWCDChf/g==",
"dependencies": {
- "@walletconnect/core": "2.0.0-rc.2",
+ "@walletconnect/core": "2.0.0-rc.3",
"@walletconnect/events": "1.0.0",
"@walletconnect/heartbeat": "1.0.0",
"@walletconnect/jsonrpc-provider": "1.0.5",
"@walletconnect/jsonrpc-utils": "1.0.3",
"@walletconnect/logger": "1.0.1",
"@walletconnect/time": "1.0.1",
- "@walletconnect/types": "2.0.0-rc.2",
- "@walletconnect/utils": "2.0.0-rc.2",
+ "@walletconnect/types": "2.0.0-rc.3",
+ "@walletconnect/utils": "2.0.0-rc.3",
"pino": "6.7.0",
"pino-pretty": "4.3.0"
}
@@ -5104,9 +5130,9 @@
}
},
"node_modules/@walletconnect/sign-client/node_modules/@walletconnect/types": {
- "version": "2.0.0-rc.2",
- "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.0.0-rc.2.tgz",
- "integrity": "sha512-BuQbEjkRIZULqBHBxKgGiUgeJ1i+5NpNvw5Y7ML7X+hksHooj0+Hy6qv7Jc/cegltEovElAU2w6R38dfuEPUOA==",
+ "version": "2.0.0-rc.3",
+ "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.0.0-rc.3.tgz",
+ "integrity": "sha512-PkzgdBr4tSXQtyGT91P6cdQJ44dCwRRwIW4BDW6tRqsvziPcyt6aQzWYfKQiMl6i2fIMK/8fgr1oDYPcLQLvbA==",
"dependencies": {
"@walletconnect/events": "1.0.0",
"@walletconnect/heartbeat": "1.0.0",
@@ -5125,9 +5151,9 @@
"integrity": "sha512-Cn+3I0V0vT9ghMuzh1KzZvCkiAxTq+1TR2eSqw5E5AVWfmCtECFkVZBP6uUJZ8YjwLqXheI+rnjqPy7sVM4Fyg=="
},
"node_modules/@walletconnect/utils": {
- "version": "2.0.0-rc.2",
- "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.0.0-rc.2.tgz",
- "integrity": "sha512-G4qa4zirL3MbryhWf/+4uew7wV3gtLmIt09FVtWQLhPCePrlA0A8EuPXYQAqW58gQpFIsuUiKUYfy3kRMkp4WA==",
+ "version": "2.0.0-rc.3",
+ "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.0.0-rc.3.tgz",
+ "integrity": "sha512-ThMv+uLZiU9iSEN28cLZy98/LyQmHQ6eq29P9qsET9ZginF5QplmvTRKQvLSeLrU4K4rcRaXs/FndhxxiRhPcQ==",
"dependencies": {
"@stablelib/chacha20poly1305": "1.0.1",
"@stablelib/hkdf": "1.0.1",
@@ -5138,7 +5164,7 @@
"@walletconnect/relay-api": "1.0.6",
"@walletconnect/safe-json": "1.0.0",
"@walletconnect/time": "1.0.1",
- "@walletconnect/types": "2.0.0-rc.2",
+ "@walletconnect/types": "2.0.0-rc.3",
"@walletconnect/window-getters": "1.0.0",
"@walletconnect/window-metadata": "1.0.0",
"detect-browser": "5.3.0",
@@ -5177,9 +5203,9 @@
}
},
"node_modules/@walletconnect/utils/node_modules/@walletconnect/types": {
- "version": "2.0.0-rc.2",
- "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.0.0-rc.2.tgz",
- "integrity": "sha512-BuQbEjkRIZULqBHBxKgGiUgeJ1i+5NpNvw5Y7ML7X+hksHooj0+Hy6qv7Jc/cegltEovElAU2w6R38dfuEPUOA==",
+ "version": "2.0.0-rc.3",
+ "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.0.0-rc.3.tgz",
+ "integrity": "sha512-PkzgdBr4tSXQtyGT91P6cdQJ44dCwRRwIW4BDW6tRqsvziPcyt6aQzWYfKQiMl6i2fIMK/8fgr1oDYPcLQLvbA==",
"dependencies": {
"@walletconnect/events": "1.0.0",
"@walletconnect/heartbeat": "1.0.0",
@@ -5230,7 +5256,6 @@
"version": "8.8.0",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz",
"integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==",
- "license": "MIT",
"bin": {
"acorn": "bin/acorn"
},
@@ -5243,7 +5268,6 @@
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
"dev": true,
- "license": "MIT",
"peerDependencies": {
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
}
@@ -5267,7 +5291,6 @@
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dev": true,
- "license": "MIT",
"dependencies": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
@@ -5288,9 +5311,9 @@
}
},
"node_modules/algosdk": {
- "version": "1.21.0",
- "resolved": "https://registry.npmjs.org/algosdk/-/algosdk-1.21.0.tgz",
- "integrity": "sha512-pgHzEExFn8hjcDphQYo+0Pi6TLWZOyXPcxjisldd6ZaaF0cNsB6C97n66OXi0gtL3mvMIgD53SLBfzy1u9YM+g==",
+ "version": "1.22.0",
+ "resolved": "https://registry.npmjs.org/algosdk/-/algosdk-1.22.0.tgz",
+ "integrity": "sha512-oj2G1ucLyqfTAPM9iIWiSfU0Jmwx1gaafqlC2RaWcwHx86cwnFTwEf/haFQ9yoirkIozVlZYTYtv+Ltkj3il8w==",
"dependencies": {
"algo-msgpack-with-bigint": "^2.1.1",
"buffer": "^6.0.2",
@@ -5321,39 +5344,23 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/ansi-escapes/node_modules/type-fest": {
- "version": "0.21.3",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
- "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
- "engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
- }
- },
"node_modules/ansi-regex": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
- "license": "MIT",
"engines": {
"node": ">=8"
}
},
"node_modules/ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
- "license": "MIT",
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dependencies": {
- "color-convert": "^2.0.1"
+ "color-convert": "^1.9.0"
},
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ "node": ">=4"
}
},
"node_modules/ansicolors": {
@@ -5384,6 +5391,30 @@
"tmp-promise": "^3.0.2"
}
},
+ "node_modules/arbundles/node_modules/axios": {
+ "version": "0.21.4",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
+ "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
+ "dependencies": {
+ "follow-redirects": "^1.14.0"
+ }
+ },
+ "node_modules/arbundles/node_modules/base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/arbundles/node_modules/bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "dependencies": {
+ "base-x": "^3.0.2"
+ }
+ },
"node_modules/arbundles/node_modules/secp256k1": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz",
@@ -5416,8 +5447,7 @@
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
- "dev": true,
- "license": "Python-2.0"
+ "dev": true
},
"node_modules/args": {
"version": "5.0.3",
@@ -5433,70 +5463,6 @@
"node": ">= 6.0.0"
}
},
- "node_modules/args/node_modules/ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "dependencies": {
- "color-convert": "^1.9.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/args/node_modules/chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "dependencies": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/args/node_modules/color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "dependencies": {
- "color-name": "1.1.3"
- }
- },
- "node_modules/args/node_modules/color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
- },
- "node_modules/args/node_modules/escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
- "engines": {
- "node": ">=0.8.0"
- }
- },
- "node_modules/args/node_modules/has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
- "engines": {
- "node": ">=4"
- }
- },
- "node_modules/args/node_modules/supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "dependencies": {
- "has-flag": "^3.0.0"
- },
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/aria-hidden": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.1.tgz",
@@ -5522,7 +5488,6 @@
"resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz",
"integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==",
"dev": true,
- "license": "Apache-2.0",
"dependencies": {
"@babel/runtime": "^7.10.2",
"@babel/runtime-corejs3": "^7.10.2"
@@ -5536,7 +5501,6 @@
"resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz",
"integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==",
"dev": true,
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.4",
@@ -5556,7 +5520,6 @@
"resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
"integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
"dev": true,
- "license": "MIT",
"engines": {
"node": ">=8"
}
@@ -5566,7 +5529,6 @@
"resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz",
"integrity": "sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==",
"dev": true,
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
@@ -5585,7 +5547,6 @@
"resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz",
"integrity": "sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==",
"dev": true,
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
@@ -5680,8 +5641,7 @@
"version": "0.0.7",
"resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
"integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==",
- "dev": true,
- "license": "ISC"
+ "dev": true
},
"node_modules/async-mutex": {
"version": "0.3.2",
@@ -5736,25 +5696,23 @@
"resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.3.tgz",
"integrity": "sha512-32+ub6kkdhhWick/UjvEwRchgoetXqTK14INLqbGm5U2TzBkBNF3nQtLYm8ovxSkQWArjEQvftCKryjZaATu3w==",
"dev": true,
- "license": "MPL-2.0",
"engines": {
"node": ">=4"
}
},
"node_modules/axios": {
- "version": "0.21.4",
- "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
- "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
+ "version": "0.25.0",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz",
+ "integrity": "sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==",
"dependencies": {
- "follow-redirects": "^1.14.0"
+ "follow-redirects": "^1.14.7"
}
},
"node_modules/axobject-query": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz",
"integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==",
- "dev": true,
- "license": "Apache-2.0"
+ "dev": true
},
"node_modules/babel-plugin-macros": {
"version": "3.1.0",
@@ -5773,16 +5731,12 @@
"node_modules/balanced-match": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
- "license": "MIT"
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
},
"node_modules/base-x": {
- "version": "3.0.9",
- "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
- "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
- "dependencies": {
- "safe-buffer": "^5.0.1"
- }
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz",
+ "integrity": "sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw=="
},
"node_modules/base58check": {
"version": "2.0.0",
@@ -5957,6 +5911,22 @@
"text-encoding-utf-8": "^1.0.2"
}
},
+ "node_modules/borsh/node_modules/base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/borsh/node_modules/bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "dependencies": {
+ "base-x": "^3.0.2"
+ }
+ },
"node_modules/bowser": {
"version": "2.11.0",
"resolved": "https://registry.npmjs.org/bowser/-/bowser-2.11.0.tgz",
@@ -5966,7 +5936,6 @@
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
- "license": "MIT",
"dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
@@ -5977,7 +5946,6 @@
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
"dev": true,
- "license": "MIT",
"dependencies": {
"fill-range": "^7.0.1"
},
@@ -6049,29 +6017,10 @@
"safe-buffer": "^5.2.0"
}
},
- "node_modules/browserify-sign/node_modules/safe-buffer": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ]
- },
"node_modules/browserslist": {
- "version": "4.21.3",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.3.tgz",
- "integrity": "sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==",
+ "version": "4.21.4",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz",
+ "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==",
"funding": [
{
"type": "opencollective",
@@ -6084,10 +6033,10 @@
],
"peer": true,
"dependencies": {
- "caniuse-lite": "^1.0.30001370",
- "electron-to-chromium": "^1.4.202",
+ "caniuse-lite": "^1.0.30001400",
+ "electron-to-chromium": "^1.4.251",
"node-releases": "^2.0.6",
- "update-browserslist-db": "^1.0.5"
+ "update-browserslist-db": "^1.0.9"
},
"bin": {
"browserslist": "cli.js"
@@ -6097,11 +6046,11 @@
}
},
"node_modules/bs58": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
- "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz",
+ "integrity": "sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==",
"dependencies": {
- "base-x": "^3.0.2"
+ "base-x": "^4.0.0"
}
},
"node_modules/bs58check": {
@@ -6114,6 +6063,22 @@
"safe-buffer": "^5.1.2"
}
},
+ "node_modules/bs58check/node_modules/base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/bs58check/node_modules/bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "dependencies": {
+ "base-x": "^3.0.2"
+ }
+ },
"node_modules/buffer": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz",
@@ -6167,9 +6132,9 @@
"integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ=="
},
"node_modules/bufferutil": {
- "version": "4.0.6",
- "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz",
- "integrity": "sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw==",
+ "version": "4.0.7",
+ "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.7.tgz",
+ "integrity": "sha512-kukuqc39WOHtdxtw4UScxF/WVnMFVSQVKhtx3AjZJzhd0RGZZldcrfSEbVsWWe6KNH253574cq5F+wpv0G9pJw==",
"hasInstallScript": true,
"optional": true,
"dependencies": {
@@ -6183,7 +6148,6 @@
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
"integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
- "license": "MIT",
"dependencies": {
"function-bind": "^1.1.1",
"get-intrinsic": "^1.0.2"
@@ -6196,7 +6160,6 @@
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
- "license": "MIT",
"engines": {
"node": ">=6"
}
@@ -6210,9 +6173,9 @@
}
},
"node_modules/caniuse-lite": {
- "version": "1.0.30001397",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001397.tgz",
- "integrity": "sha512-SW9N2TbCdLf0eiNDRrrQXx2sOkaakNZbCjgNpPyMJJbiOrU5QzMIrXOVMRM1myBXTD5iTkdrtU/EguCrBocHlA==",
+ "version": "1.0.30001423",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001423.tgz",
+ "integrity": "sha512-09iwWGOlifvE1XuHokFMP7eR38a0JnajoyL3/i87c8ZjRWRrdKo1fqjNfugfBD0UDBIOz0U+jtNhJ0EPm1VleQ==",
"funding": [
{
"type": "opencollective",
@@ -6222,8 +6185,7 @@
"type": "tidelift",
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
}
- ],
- "license": "CC-BY-4.0"
+ ]
},
"node_modules/capability": {
"version": "0.2.5",
@@ -6236,19 +6198,24 @@
"integrity": "sha512-GWlXN4wiz0vdWWXBU71Dvc1q3aBo0HytqwAZnXF1wOwjqNnDWA1vZ1gDMFLlqohak31VQzmhiYfiCX5QSSfagA=="
},
"node_modules/chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
- "license": "MIT",
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dependencies": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/chalk?sponsor=1"
+ "node": ">=4"
+ }
+ },
+ "node_modules/chalk/node_modules/escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
+ "engines": {
+ "node": ">=0.8.0"
}
},
"node_modules/chardet": {
@@ -6321,6 +6288,32 @@
"node": ">=6"
}
},
+ "node_modules/cliui/node_modules/emoji-regex": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
+ "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="
+ },
+ "node_modules/cliui/node_modules/is-fullwidth-code-point": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+ "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/cliui/node_modules/string-width": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
+ "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
+ "dependencies": {
+ "emoji-regex": "^7.0.1",
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^5.1.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
"node_modules/cliui/node_modules/strip-ansi": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
@@ -6332,6 +6325,19 @@
"node": ">=6"
}
},
+ "node_modules/cliui/node_modules/wrap-ansi": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
+ "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==",
+ "dependencies": {
+ "ansi-styles": "^3.2.0",
+ "string-width": "^3.0.0",
+ "strip-ansi": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
"node_modules/clone": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
@@ -6341,22 +6347,17 @@
}
},
"node_modules/color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
- "license": "MIT",
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dependencies": {
- "color-name": "~1.1.4"
- },
- "engines": {
- "node": ">=7.0.0"
+ "color-name": "1.1.3"
}
},
"node_modules/color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
- "license": "MIT"
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
},
"node_modules/combined-stream": {
"version": "1.0.8",
@@ -6370,9 +6371,12 @@
}
},
"node_modules/commander": {
- "version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
+ "version": "8.3.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
+ "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==",
+ "engines": {
+ "node": ">= 12"
+ }
},
"node_modules/component-emitter": {
"version": "1.3.0",
@@ -6387,16 +6391,12 @@
"node_modules/concat-map": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
- "license": "MIT"
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
},
"node_modules/convert-source-map": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz",
- "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==",
- "dependencies": {
- "safe-buffer": "~5.1.1"
- }
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
+ "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
},
"node_modules/cookiejar": {
"version": "2.1.3",
@@ -6412,12 +6412,11 @@
}
},
"node_modules/core-js-pure": {
- "version": "3.25.1",
- "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.25.1.tgz",
- "integrity": "sha512-7Fr74bliUDdeJCBMxkkIuQ4xfxn/SwrVg+HkJUAoNEXVqYLv55l6Af0dJ5Lq2YBUW9yKqSkLXaS5SYPK6MGa/A==",
+ "version": "3.25.5",
+ "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.25.5.tgz",
+ "integrity": "sha512-oml3M22pHM+igfWHDfdLVq2ShWmjM2V4L+dQEBs0DWVIqEm9WHCwGAlZ6BmyBQGy5sFrJmcx+856D9lVKyGWYg==",
"dev": true,
"hasInstallScript": true,
- "license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/core-js"
@@ -6531,7 +6530,6 @@
"version": "7.0.3",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
"integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
- "license": "MIT",
"dependencies": {
"path-key": "^3.1.0",
"shebang-command": "^2.0.0",
@@ -6576,18 +6574,17 @@
}
},
"node_modules/csstype": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.0.tgz",
- "integrity": "sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==",
- "license": "MIT"
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz",
+ "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw=="
},
"node_modules/csv": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/csv/-/csv-6.2.0.tgz",
- "integrity": "sha512-yT7dkCsJLJ36NUW0d0ei7parOcUCx/QVkK77puwA/rF4bMciTB5Kf+wuegL+7zh8s6revFM+BFQ2h+U2k4jgBQ==",
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/csv/-/csv-6.2.1.tgz",
+ "integrity": "sha512-qTEPklcIZkJGaB/j6/2qNXZbKgWSXPVMyRnZvRcb1F7MGyvLqJexlZlbJ3NQkgmUoAeScZhsRHjlZEgImBfCYQ==",
"dependencies": {
"csv-generate": "^4.2.0",
- "csv-parse": "^5.3.0",
+ "csv-parse": "^5.3.1",
"csv-stringify": "^6.2.0",
"stream-transform": "^3.2.0"
},
@@ -6601,9 +6598,9 @@
"integrity": "sha512-zlIESlGQaYqIhNYwBN2pj5KXNMYbAXZYMOgNoVSoYV8MQyGZwcNWX+kx5LHxocp+zQDqzSgeKh+e+AZs+nCq4Q=="
},
"node_modules/csv-parse": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-5.3.0.tgz",
- "integrity": "sha512-UXJCGwvJ2fep39purtAn27OUYmxB1JQto+zhZ4QlJpzsirtSFbzLvip1aIgziqNdZp/TptvsKEV5BZSxe10/DQ=="
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-5.3.1.tgz",
+ "integrity": "sha512-R4Hv6eGJNzgcKdThZ6XORbSQ873HVcNke74QIq+LbwpT90LaZ8Xzl7KKiuIP16xq/P7ofzRt0h7S0xm+fVScsw=="
},
"node_modules/csv-stringify": {
"version": "6.2.0",
@@ -6614,8 +6611,7 @@
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
"integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==",
- "dev": true,
- "license": "BSD-2-Clause"
+ "dev": true
},
"node_modules/dateformat": {
"version": "3.0.3",
@@ -6629,7 +6625,6 @@
"version": "4.3.4",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
"integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
- "license": "MIT",
"dependencies": {
"ms": "2.1.2"
},
@@ -6662,22 +6657,23 @@
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
"integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
- "dev": true,
- "license": "MIT"
+ "dev": true
},
"node_modules/defaults": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz",
- "integrity": "sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==",
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz",
+ "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==",
"dependencies": {
"clone": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/define-properties": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz",
"integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==",
- "license": "MIT",
"dependencies": {
"has-property-descriptors": "^1.0.0",
"object-keys": "^1.1.1"
@@ -6774,7 +6770,6 @@
"resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
"integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
"dev": true,
- "license": "MIT",
"dependencies": {
"path-type": "^4.0.0"
},
@@ -6783,22 +6778,21 @@
}
},
"node_modules/doctrine": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
- "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
+ "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
"dev": true,
- "license": "Apache-2.0",
"dependencies": {
"esutils": "^2.0.2"
},
"engines": {
- "node": ">=0.10.0"
+ "node": ">=6.0.0"
}
},
"node_modules/dotenv": {
- "version": "16.0.2",
- "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.2.tgz",
- "integrity": "sha512-JvpYKUmzQhYoIFgK2MOnF3bciIZoItIIoryihy0rIA+H4Jy0FmgyKYAHCTN98P5ybGSJcIFbh6QKeJdtZd1qhA==",
+ "version": "16.0.3",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz",
+ "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==",
"engines": {
"node": ">=12"
}
@@ -6831,9 +6825,9 @@
}
},
"node_modules/electron-to-chromium": {
- "version": "1.4.247",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.247.tgz",
- "integrity": "sha512-FLs6R4FQE+1JHM0hh3sfdxnYjKvJpHZyhQDjc2qFq/xFvmmRt/TATNToZhrcGUFzpF2XjeiuozrA8lI0PZmYYw==",
+ "version": "1.4.284",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz",
+ "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==",
"peer": true
},
"node_modules/elliptic": {
@@ -6859,8 +6853,7 @@
"version": "9.2.2",
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
- "dev": true,
- "license": "MIT"
+ "dev": true
},
"node_modules/end-of-stream": {
"version": "1.4.4",
@@ -6871,9 +6864,9 @@
}
},
"node_modules/engine.io-client": {
- "version": "6.2.2",
- "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.2.tgz",
- "integrity": "sha512-8ZQmx0LQGRTYkHuogVZuGSpDqYZtCM/nv8zQ68VZ+JkOpazJ7ICdsSpaO6iXwvaU30oFg5QJOJWj8zWqhbKjkQ==",
+ "version": "6.2.3",
+ "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.3.tgz",
+ "integrity": "sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw==",
"dependencies": {
"@socket.io/component-emitter": "~3.1.0",
"debug": "~4.3.1",
@@ -6929,22 +6922,21 @@
}
},
"node_modules/es-abstract": {
- "version": "1.20.2",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz",
- "integrity": "sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ==",
- "license": "MIT",
+ "version": "1.20.4",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.4.tgz",
+ "integrity": "sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==",
"dependencies": {
"call-bind": "^1.0.2",
"es-to-primitive": "^1.2.1",
"function-bind": "^1.1.1",
"function.prototype.name": "^1.1.5",
- "get-intrinsic": "^1.1.2",
+ "get-intrinsic": "^1.1.3",
"get-symbol-description": "^1.0.0",
"has": "^1.0.3",
"has-property-descriptors": "^1.0.0",
"has-symbols": "^1.0.3",
"internal-slot": "^1.0.3",
- "is-callable": "^1.2.4",
+ "is-callable": "^1.2.7",
"is-negative-zero": "^2.0.2",
"is-regex": "^1.1.4",
"is-shared-array-buffer": "^1.0.2",
@@ -6954,6 +6946,7 @@
"object-keys": "^1.1.1",
"object.assign": "^4.1.4",
"regexp.prototype.flags": "^1.4.3",
+ "safe-regex-test": "^1.0.0",
"string.prototype.trimend": "^1.0.5",
"string.prototype.trimstart": "^1.0.5",
"unbox-primitive": "^1.0.2"
@@ -6970,7 +6963,6 @@
"resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz",
"integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==",
"dev": true,
- "license": "MIT",
"dependencies": {
"has": "^1.0.3"
}
@@ -6979,7 +6971,6 @@
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
"integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
- "license": "MIT",
"dependencies": {
"is-callable": "^1.1.4",
"is-date-object": "^1.0.1",
@@ -7023,7 +7014,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
- "license": "MIT",
"engines": {
"node": ">=10"
},
@@ -7036,7 +7026,6 @@
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.23.1.tgz",
"integrity": "sha512-w7C1IXCc6fNqjpuYd0yPlcTKKmHlHHktRkzmBPZ+7cvNBQuiNjx0xaMTjAJGCafJhQkrFJooREv0CtrVzmHwqg==",
"dev": true,
- "license": "MIT",
"dependencies": {
"@eslint/eslintrc": "^1.3.2",
"@humanwhocodes/config-array": "^0.10.4",
@@ -7093,7 +7082,6 @@
"resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-12.3.0.tgz",
"integrity": "sha512-guHSkNyKnTBB8HU35COgAMeMV0E026BiYRYvyEVVaTOeFcnU3i1EI8/Da0Rl7H3Sgua5FEvoA0vYd2s8kdIUXg==",
"dev": true,
- "license": "MIT",
"dependencies": {
"@next/eslint-plugin-next": "12.3.0",
"@rushstack/eslint-patch": "^1.1.3",
@@ -7120,7 +7108,6 @@
"resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz",
"integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==",
"dev": true,
- "license": "MIT",
"dependencies": {
"debug": "^3.2.7",
"resolve": "^1.20.0"
@@ -7131,24 +7118,15 @@
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"dev": true,
- "license": "MIT",
"dependencies": {
"ms": "^2.1.1"
}
},
- "node_modules/eslint-import-resolver-node/node_modules/ms": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
- "dev": true,
- "license": "MIT"
- },
"node_modules/eslint-import-resolver-typescript": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz",
"integrity": "sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==",
"dev": true,
- "license": "ISC",
"dependencies": {
"debug": "^4.3.4",
"glob": "^7.2.0",
@@ -7164,12 +7142,31 @@
"eslint-plugin-import": "*"
}
},
+ "node_modules/eslint-import-resolver-typescript/node_modules/glob": {
+ "version": "7.2.3",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+ "dev": true,
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
"node_modules/eslint-module-utils": {
"version": "2.7.4",
"resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz",
"integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==",
"dev": true,
- "license": "MIT",
"dependencies": {
"debug": "^3.2.7"
},
@@ -7187,24 +7184,15 @@
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"dev": true,
- "license": "MIT",
"dependencies": {
"ms": "^2.1.1"
}
},
- "node_modules/eslint-module-utils/node_modules/ms": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
- "dev": true,
- "license": "MIT"
- },
"node_modules/eslint-plugin-import": {
"version": "2.26.0",
"resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz",
"integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==",
"dev": true,
- "license": "MIT",
"dependencies": {
"array-includes": "^3.1.4",
"array.prototype.flat": "^1.2.5",
@@ -7232,24 +7220,33 @@
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dev": true,
- "license": "MIT",
"dependencies": {
"ms": "2.0.0"
}
},
+ "node_modules/eslint-plugin-import/node_modules/doctrine": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "dev": true,
+ "dependencies": {
+ "esutils": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/eslint-plugin-import/node_modules/ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
- "dev": true,
- "license": "MIT"
+ "dev": true
},
"node_modules/eslint-plugin-jsx-a11y": {
"version": "6.6.1",
"resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz",
"integrity": "sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==",
"dev": true,
- "license": "MIT",
"dependencies": {
"@babel/runtime": "^7.18.9",
"aria-query": "^4.2.2",
@@ -7273,11 +7270,10 @@
}
},
"node_modules/eslint-plugin-react": {
- "version": "7.31.8",
- "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.8.tgz",
- "integrity": "sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==",
+ "version": "7.31.10",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.10.tgz",
+ "integrity": "sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA==",
"dev": true,
- "license": "MIT",
"dependencies": {
"array-includes": "^3.1.5",
"array.prototype.flatmap": "^1.3.0",
@@ -7306,7 +7302,6 @@
"resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz",
"integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==",
"dev": true,
- "license": "MIT",
"engines": {
"node": ">=10"
},
@@ -7314,12 +7309,23 @@
"eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
}
},
+ "node_modules/eslint-plugin-react/node_modules/doctrine": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "dev": true,
+ "dependencies": {
+ "esutils": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
"node_modules/eslint-plugin-react/node_modules/resolve": {
"version": "2.0.0-next.4",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz",
"integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==",
"dev": true,
- "license": "MIT",
"dependencies": {
"is-core-module": "^2.9.0",
"path-parse": "^1.0.7",
@@ -7337,7 +7343,6 @@
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz",
"integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==",
"dev": true,
- "license": "BSD-2-Clause",
"dependencies": {
"esrecurse": "^4.3.0",
"estraverse": "^5.2.0"
@@ -7351,7 +7356,6 @@
"resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz",
"integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==",
"dev": true,
- "license": "MIT",
"dependencies": {
"eslint-visitor-keys": "^2.0.0"
},
@@ -7359,43 +7363,125 @@
"node": "^10.0.0 || ^12.0.0 || >= 14.0.0"
},
"funding": {
- "url": "https://github.com/sponsors/mysticatea"
- },
- "peerDependencies": {
- "eslint": ">=5"
+ "url": "https://github.com/sponsors/mysticatea"
+ },
+ "peerDependencies": {
+ "eslint": ">=5"
+ }
+ },
+ "node_modules/eslint-utils/node_modules/eslint-visitor-keys": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
+ "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/eslint-visitor-keys": {
+ "version": "3.3.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz",
+ "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==",
+ "dev": true,
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ }
+ },
+ "node_modules/eslint/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/eslint/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/eslint/node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/eslint/node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "node_modules/eslint/node_modules/globals": {
+ "version": "13.17.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz",
+ "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==",
+ "dev": true,
+ "dependencies": {
+ "type-fest": "^0.20.2"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/eslint-utils/node_modules/eslint-visitor-keys": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
- "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
+ "node_modules/eslint/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
"dev": true,
- "license": "Apache-2.0",
"engines": {
- "node": ">=10"
+ "node": ">=8"
}
},
- "node_modules/eslint-visitor-keys": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz",
- "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==",
+ "node_modules/eslint/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
- "license": "Apache-2.0",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
"engines": {
- "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ "node": ">=8"
}
},
- "node_modules/eslint/node_modules/doctrine": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
- "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
+ "node_modules/eslint/node_modules/type-fest": {
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
"dev": true,
- "license": "Apache-2.0",
- "dependencies": {
- "esutils": "^2.0.2"
- },
"engines": {
- "node": ">=6.0.0"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/espree": {
@@ -7403,7 +7489,6 @@
"resolved": "https://registry.npmjs.org/espree/-/espree-9.4.0.tgz",
"integrity": "sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==",
"dev": true,
- "license": "BSD-2-Clause",
"dependencies": {
"acorn": "^8.8.0",
"acorn-jsx": "^5.3.2",
@@ -7421,7 +7506,6 @@
"resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz",
"integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==",
"dev": true,
- "license": "BSD-3-Clause",
"dependencies": {
"estraverse": "^5.1.0"
},
@@ -7434,7 +7518,6 @@
"resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
"integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
"dev": true,
- "license": "BSD-2-Clause",
"dependencies": {
"estraverse": "^5.2.0"
},
@@ -7447,7 +7530,6 @@
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
"integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
"dev": true,
- "license": "BSD-2-Clause",
"engines": {
"node": ">=4.0"
}
@@ -7457,7 +7539,6 @@
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
"dev": true,
- "license": "BSD-2-Clause",
"engines": {
"node": ">=0.10.0"
}
@@ -7522,9 +7603,9 @@
}
},
"node_modules/ethers": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/ethers/-/ethers-5.7.1.tgz",
- "integrity": "sha512-5krze4dRLITX7FpU8J4WscXqADiKmyeNlylmmDLbS95DaZpBhDe2YSwRQwKXWNyXcox7a3gBgm/MkGXV1O1S/Q==",
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/ethers/-/ethers-5.7.2.tgz",
+ "integrity": "sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==",
"funding": [
{
"type": "individual",
@@ -7554,7 +7635,7 @@
"@ethersproject/networks": "5.7.1",
"@ethersproject/pbkdf2": "5.7.0",
"@ethersproject/properties": "5.7.0",
- "@ethersproject/providers": "5.7.1",
+ "@ethersproject/providers": "5.7.2",
"@ethersproject/random": "5.7.0",
"@ethersproject/rlp": "5.7.0",
"@ethersproject/sha2": "5.7.0",
@@ -7668,15 +7749,13 @@
"node_modules/fast-deep-equal": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
- "license": "MIT"
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
},
"node_modules/fast-glob": {
"version": "3.2.12",
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz",
"integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==",
"dev": true,
- "license": "MIT",
"dependencies": {
"@nodelib/fs.stat": "^2.0.2",
"@nodelib/fs.walk": "^1.2.3",
@@ -7693,7 +7772,6 @@
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
"dev": true,
- "license": "ISC",
"dependencies": {
"is-glob": "^4.0.1"
},
@@ -7705,15 +7783,13 @@
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
- "dev": true,
- "license": "MIT"
+ "dev": true
},
"node_modules/fast-levenshtein": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
"integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
- "dev": true,
- "license": "MIT"
+ "dev": true
},
"node_modules/fast-redact": {
"version": "3.1.2",
@@ -7738,7 +7814,6 @@
"resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz",
"integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==",
"dev": true,
- "license": "ISC",
"dependencies": {
"reusify": "^1.0.4"
}
@@ -7770,7 +7845,6 @@
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
"integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
"dev": true,
- "license": "MIT",
"dependencies": {
"flat-cache": "^3.0.4"
},
@@ -7788,7 +7862,6 @@
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
"integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
"dev": true,
- "license": "MIT",
"dependencies": {
"to-regex-range": "^5.0.1"
},
@@ -7814,7 +7887,6 @@
"resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
"dev": true,
- "license": "MIT",
"dependencies": {
"locate-path": "^6.0.0",
"path-exists": "^4.0.0"
@@ -7831,7 +7903,6 @@
"resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
"integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
"dev": true,
- "license": "MIT",
"dependencies": {
"flatted": "^3.1.0",
"rimraf": "^3.0.2"
@@ -7849,13 +7920,12 @@
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz",
"integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==",
- "dev": true,
- "license": "ISC"
+ "dev": true
},
"node_modules/focus-lock": {
- "version": "0.11.2",
- "resolved": "https://registry.npmjs.org/focus-lock/-/focus-lock-0.11.2.tgz",
- "integrity": "sha512-pZ2bO++NWLHhiKkgP1bEXHhR1/OjVcSvlCJ98aNJDFeb7H5OOQaO+SKOZle6041O9rv2tmbrO4JzClAvDUHf0g==",
+ "version": "0.11.3",
+ "resolved": "https://registry.npmjs.org/focus-lock/-/focus-lock-0.11.3.tgz",
+ "integrity": "sha512-4n0pYcPTa/uI7Q66BZna61nRT7lDhnuJ9PJr6wiDjx4uStg491ks41y7uOG+s0umaaa+hulNKSldU9aTg9/yVg==",
"dependencies": {
"tslib": "^2.0.3"
},
@@ -7971,8 +8041,7 @@
"node_modules/fs.realpath": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
- "license": "ISC"
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
},
"node_modules/fsevents": {
"version": "2.1.2",
@@ -7991,14 +8060,12 @@
"node_modules/function-bind": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
- "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
- "license": "MIT"
+ "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
},
"node_modules/function.prototype.name": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz",
"integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==",
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
@@ -8016,7 +8083,6 @@
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
"integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
- "license": "MIT",
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
@@ -8039,10 +8105,9 @@
}
},
"node_modules/get-intrinsic": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz",
- "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==",
- "license": "MIT",
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz",
+ "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==",
"dependencies": {
"function-bind": "^1.1.1",
"has": "^1.0.3",
@@ -8075,7 +8140,6 @@
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz",
"integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==",
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2",
"get-intrinsic": "^1.1.1"
@@ -8088,15 +8152,14 @@
}
},
"node_modules/glob": {
- "version": "7.2.3",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
- "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
- "license": "ISC",
+ "version": "7.1.7",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
+ "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
"dependencies": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
"inherits": "2",
- "minimatch": "^3.1.1",
+ "minimatch": "^3.0.4",
"once": "^1.3.0",
"path-is-absolute": "^1.0.0"
},
@@ -8112,7 +8175,6 @@
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
"dev": true,
- "license": "ISC",
"dependencies": {
"is-glob": "^4.0.3"
},
@@ -8121,19 +8183,12 @@
}
},
"node_modules/globals": {
- "version": "13.17.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz",
- "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "type-fest": "^0.20.2"
- },
+ "version": "11.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "peer": true,
"engines": {
- "node": ">=8"
- },
- "funding": {
- "url": "https://github.com/sponsors/sindresorhus"
+ "node": ">=4"
}
},
"node_modules/globby": {
@@ -8141,7 +8196,6 @@
"resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
"integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
"dev": true,
- "license": "MIT",
"dependencies": {
"array-union": "^2.1.0",
"dir-glob": "^3.0.1",
@@ -8161,14 +8215,12 @@
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz",
"integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==",
- "dev": true,
- "license": "MIT"
+ "dev": true
},
"node_modules/has": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
"integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
- "license": "MIT",
"dependencies": {
"function-bind": "^1.1.1"
},
@@ -8180,25 +8232,22 @@
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz",
"integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==",
- "license": "MIT",
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
- "license": "MIT",
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
"engines": {
- "node": ">=8"
+ "node": ">=4"
}
},
"node_modules/has-property-descriptors": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz",
"integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==",
- "license": "MIT",
"dependencies": {
"get-intrinsic": "^1.1.1"
},
@@ -8210,7 +8259,6 @@
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
"integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
- "license": "MIT",
"engines": {
"node": ">= 0.4"
},
@@ -8222,7 +8270,6 @@
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
"integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
- "license": "MIT",
"dependencies": {
"has-symbols": "^1.0.2"
},
@@ -8246,25 +8293,6 @@
"node": ">=4"
}
},
- "node_modules/hash-base/node_modules/safe-buffer": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ]
- },
"node_modules/hash.js": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz",
@@ -8368,7 +8396,6 @@
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz",
"integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==",
"dev": true,
- "license": "MIT",
"engines": {
"node": ">= 4"
}
@@ -8377,7 +8404,6 @@
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
"integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
- "license": "MIT",
"dependencies": {
"parent-module": "^1.0.0",
"resolve-from": "^4.0.0"
@@ -8394,7 +8420,6 @@
"resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
"integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
"dev": true,
- "license": "MIT",
"engines": {
"node": ">=0.8.19"
}
@@ -8403,7 +8428,6 @@
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
"integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
- "license": "ISC",
"dependencies": {
"once": "^1.3.0",
"wrappy": "1"
@@ -8412,8 +8436,7 @@
"node_modules/inherits": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
- "license": "ISC"
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
},
"node_modules/inquirer": {
"version": "8.2.4",
@@ -8440,61 +8463,82 @@
"node": ">=12.0.0"
}
},
- "node_modules/inquirer/node_modules/emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
- },
- "node_modules/inquirer/node_modules/is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "node_modules/inquirer/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
"engines": {
"node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
- "node_modules/inquirer/node_modules/rxjs": {
- "version": "7.5.6",
- "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz",
- "integrity": "sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==",
+ "node_modules/inquirer/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dependencies": {
- "tslib": "^2.1.0"
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
}
},
- "node_modules/inquirer/node_modules/string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "node_modules/inquirer/node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dependencies": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
+ "color-name": "~1.1.4"
},
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/inquirer/node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ },
+ "node_modules/inquirer/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
"engines": {
"node": ">=8"
}
},
- "node_modules/inquirer/node_modules/wrap-ansi": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "node_modules/inquirer/node_modules/rxjs": {
+ "version": "7.5.7",
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz",
+ "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==",
"dependencies": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
+ "tslib": "^2.1.0"
+ }
+ },
+ "node_modules/inquirer/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dependencies": {
+ "has-flag": "^4.0.0"
},
"engines": {
- "node": ">=10"
- },
- "funding": {
- "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ "node": ">=8"
}
},
"node_modules/internal-slot": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz",
"integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==",
- "license": "MIT",
"dependencies": {
"get-intrinsic": "^1.1.0",
"has": "^1.0.3",
@@ -8536,7 +8580,6 @@
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
"integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
- "license": "MIT",
"dependencies": {
"has-bigints": "^1.0.1"
},
@@ -8548,7 +8591,6 @@
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
"integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2",
"has-tostringtag": "^1.0.0"
@@ -8561,10 +8603,9 @@
}
},
"node_modules/is-callable": {
- "version": "1.2.5",
- "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.5.tgz",
- "integrity": "sha512-ZIWRujF6MvYGkEuHMYtFRkL2wAtFw89EHfKlXrkPkjQZZRWeh9L1q3SV13NIfHnqxugjLvAOkEHx9mb1zcMnEw==",
- "license": "MIT",
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
+ "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
"engines": {
"node": ">= 0.4"
},
@@ -8573,10 +8614,9 @@
}
},
"node_modules/is-core-module": {
- "version": "2.10.0",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz",
- "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==",
- "license": "MIT",
+ "version": "2.11.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz",
+ "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==",
"dependencies": {
"has": "^1.0.3"
},
@@ -8588,7 +8628,6 @@
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
"integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
- "license": "MIT",
"dependencies": {
"has-tostringtag": "^1.0.0"
},
@@ -8604,17 +8643,16 @@
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
"dev": true,
- "license": "MIT",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/is-fullwidth-code-point": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
- "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==",
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
"engines": {
- "node": ">=4"
+ "node": ">=8"
}
},
"node_modules/is-generator-function": {
@@ -8636,7 +8674,6 @@
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
"dev": true,
- "license": "MIT",
"dependencies": {
"is-extglob": "^2.1.1"
},
@@ -8671,7 +8708,6 @@
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz",
"integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==",
- "license": "MIT",
"engines": {
"node": ">= 0.4"
},
@@ -8684,7 +8720,6 @@
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
"dev": true,
- "license": "MIT",
"engines": {
"node": ">=0.12.0"
}
@@ -8693,7 +8728,6 @@
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz",
"integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==",
- "license": "MIT",
"dependencies": {
"has-tostringtag": "^1.0.0"
},
@@ -8708,7 +8742,6 @@
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
"integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2",
"has-tostringtag": "^1.0.0"
@@ -8724,7 +8757,6 @@
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz",
"integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==",
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2"
},
@@ -8747,7 +8779,6 @@
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
"integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
- "license": "MIT",
"dependencies": {
"has-tostringtag": "^1.0.0"
},
@@ -8762,7 +8793,6 @@
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
"integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
- "license": "MIT",
"dependencies": {
"has-symbols": "^1.0.2"
},
@@ -8806,7 +8836,6 @@
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
"integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==",
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2"
},
@@ -8822,8 +8851,7 @@
"node_modules/isexe": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
- "license": "ISC"
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
},
"node_modules/isomorphic-ws": {
"version": "4.0.1",
@@ -8864,6 +8892,11 @@
"resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz",
"integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ=="
},
+ "node_modules/jayson/node_modules/commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
+ },
"node_modules/jmespath": {
"version": "0.15.0",
"resolved": "https://registry.npmjs.org/jmespath/-/jmespath-0.15.0.tgz",
@@ -8873,9 +8906,9 @@
}
},
"node_modules/joi": {
- "version": "17.6.0",
- "resolved": "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz",
- "integrity": "sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==",
+ "version": "17.6.4",
+ "resolved": "https://registry.npmjs.org/joi/-/joi-17.6.4.tgz",
+ "integrity": "sha512-tPzkTJHZQjSFCc842QpdVpOZ9LI2txApboNUbW70qgnRB14Lzl+oWQOPdF2N4yqyiY14wBGe8lc7f/2hZxbGmw==",
"dependencies": {
"@hapi/hoek": "^9.0.0",
"@hapi/topo": "^5.0.0",
@@ -8893,11 +8926,10 @@
}
},
"node_modules/js-sdsl": {
- "version": "4.1.4",
- "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.4.tgz",
- "integrity": "sha512-Y2/yD55y5jteOAmY50JbUZYwk3CP3wnLPEZnlR1w9oKhITrBEtAxwuWKebFf8hMrPMgbYwFoWK/lH2sBkErELw==",
- "dev": true,
- "license": "MIT"
+ "version": "4.1.5",
+ "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.5.tgz",
+ "integrity": "sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==",
+ "dev": true
},
"node_modules/js-sha256": {
"version": "0.9.0",
@@ -8917,15 +8949,13 @@
"node_modules/js-tokens": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
- "license": "MIT"
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
},
"node_modules/js-yaml": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
"dev": true,
- "license": "MIT",
"dependencies": {
"argparse": "^2.0.1"
},
@@ -8972,8 +9002,7 @@
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
- "dev": true,
- "license": "MIT"
+ "dev": true
},
"node_modules/json-stable-stringify": {
"version": "1.0.1",
@@ -8987,8 +9016,7 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
"integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
- "dev": true,
- "license": "MIT"
+ "dev": true
},
"node_modules/json-stringify-safe": {
"version": "5.0.1",
@@ -8996,24 +9024,23 @@
"integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA=="
},
"node_modules/json5": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
- "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
- "dev": true,
- "license": "MIT",
- "dependencies": {
- "minimist": "^1.2.0"
- },
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz",
+ "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==",
+ "peer": true,
"bin": {
"json5": "lib/cli.js"
+ },
+ "engines": {
+ "node": ">=6"
}
},
"node_modules/jsonify": {
- "version": "0.0.0",
- "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz",
- "integrity": "sha512-trvBk1ki43VZptdBI5rIlG4YOzyeH/WefQt5rj1grasPn4iiZWKet8nkgc4GlsAylaztn0qZfUYOiTsASJFdNA==",
- "engines": {
- "node": "*"
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz",
+ "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/jsonparse": {
@@ -9049,7 +9076,6 @@
"resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz",
"integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==",
"dev": true,
- "license": "MIT",
"dependencies": {
"array-includes": "^3.1.5",
"object.assign": "^4.1.3"
@@ -9081,15 +9107,13 @@
"version": "0.3.22",
"resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz",
"integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==",
- "dev": true,
- "license": "CC0-1.0"
+ "dev": true
},
"node_modules/language-tags": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz",
"integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==",
"dev": true,
- "license": "MIT",
"dependencies": {
"language-subtag-registry": "~0.3.2"
}
@@ -9115,7 +9139,6 @@
"resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
"integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
"dev": true,
- "license": "MIT",
"dependencies": {
"prelude-ls": "^1.2.1",
"type-check": "~0.4.0"
@@ -9142,7 +9165,6 @@
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
"dev": true,
- "license": "MIT",
"dependencies": {
"p-locate": "^5.0.0"
},
@@ -9176,8 +9198,7 @@
"node_modules/lodash.merge": {
"version": "4.6.2",
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
- "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
- "license": "MIT"
+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="
},
"node_modules/lodash.mergewith": {
"version": "4.6.2",
@@ -9199,6 +9220,70 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/log-symbols/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/log-symbols/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/log-symbols/node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/log-symbols/node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ },
+ "node_modules/log-symbols/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/log-symbols/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/loglevel": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz",
@@ -9215,7 +9300,6 @@
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
- "license": "MIT",
"dependencies": {
"js-tokens": "^3.0.0 || ^4.0.0"
},
@@ -9227,7 +9311,6 @@
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
"integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
- "license": "ISC",
"dependencies": {
"yallist": "^4.0.0"
},
@@ -9266,7 +9349,6 @@
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
"integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
"dev": true,
- "license": "MIT",
"engines": {
"node": ">= 8"
}
@@ -9284,7 +9366,6 @@
"resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
"integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
"dev": true,
- "license": "MIT",
"dependencies": {
"braces": "^3.0.2",
"picomatch": "^2.3.1"
@@ -9362,7 +9443,6 @@
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
- "license": "ISC",
"dependencies": {
"brace-expansion": "^1.1.7"
},
@@ -9371,10 +9451,12 @@
}
},
"node_modules/minimist": {
- "version": "1.2.6",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz",
- "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==",
- "license": "MIT"
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz",
+ "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
},
"node_modules/mri": {
"version": "1.1.4",
@@ -9387,13 +9469,12 @@
"node_modules/ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
- "license": "MIT"
+ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
},
"node_modules/multiformats": {
- "version": "9.8.1",
- "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-9.8.1.tgz",
- "integrity": "sha512-Cu7NfUYtCV+WN7w59WsRRF138S+um4tTo11ScYsWbNgWyCEGOu8wID1e5eMJs91gFZ0I7afodkkdxCF8NGkqZQ=="
+ "version": "9.9.0",
+ "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-9.9.0.tgz",
+ "integrity": "sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg=="
},
"node_modules/multistream": {
"version": "4.1.0",
@@ -9432,15 +9513,14 @@
"integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="
},
"node_modules/nan": {
- "version": "2.16.0",
- "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz",
- "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA=="
+ "version": "2.17.0",
+ "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz",
+ "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ=="
},
"node_modules/nanoid": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz",
"integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==",
- "license": "MIT",
"bin": {
"nanoid": "bin/nanoid.cjs"
},
@@ -9452,8 +9532,7 @@
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
"integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
- "dev": true,
- "license": "MIT"
+ "dev": true
},
"node_modules/near-api-js": {
"version": "0.44.2",
@@ -9473,6 +9552,14 @@
"tweetnacl": "^1.0.1"
}
},
+ "node_modules/near-api-js/node_modules/base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
"node_modules/near-api-js/node_modules/bn.js": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz",
@@ -9488,6 +9575,14 @@
"text-encoding-utf-8": "^1.0.2"
}
},
+ "node_modules/near-api-js/node_modules/bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "dependencies": {
+ "base-x": "^3.0.2"
+ }
+ },
"node_modules/near-hd-key": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/near-hd-key/-/near-hd-key-1.2.1.tgz",
@@ -9509,11 +9604,26 @@
"tweetnacl": "^1.0.2"
}
},
+ "node_modules/near-seed-phrase/node_modules/base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "dependencies": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "node_modules/near-seed-phrase/node_modules/bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "dependencies": {
+ "base-x": "^3.0.2"
+ }
+ },
"node_modules/next": {
"version": "12.3.0",
"resolved": "https://registry.npmjs.org/next/-/next-12.3.0.tgz",
"integrity": "sha512-GpzI6me9V1+XYtfK0Ae9WD0mKqHyzQlGq1xH1rzNIYMASo4Tkl4rTe9jSqtBpXFhOS33KohXs9ZY38Akkhdciw==",
- "license": "MIT",
"dependencies": {
"@next/env": "12.3.0",
"@swc/helpers": "0.4.11",
@@ -9625,7 +9735,6 @@
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
- "license": "MIT",
"engines": {
"node": ">=0.10.0"
}
@@ -9634,7 +9743,6 @@
"version": "1.12.2",
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz",
"integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==",
- "license": "MIT",
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
@@ -9658,7 +9766,6 @@
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
"integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
- "license": "MIT",
"engines": {
"node": ">= 0.4"
}
@@ -9667,7 +9774,6 @@
"version": "4.1.4",
"resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz",
"integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==",
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.4",
@@ -9686,7 +9792,6 @@
"resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz",
"integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==",
"dev": true,
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
@@ -9701,7 +9806,6 @@
"resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz",
"integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==",
"dev": true,
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
@@ -9719,7 +9823,6 @@
"resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.1.tgz",
"integrity": "sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==",
"dev": true,
- "license": "MIT",
"dependencies": {
"define-properties": "^1.1.4",
"es-abstract": "^1.19.5"
@@ -9733,7 +9836,6 @@
"resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz",
"integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==",
"dev": true,
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
@@ -9755,7 +9857,6 @@
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
"integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
- "license": "ISC",
"dependencies": {
"wrappy": "1"
}
@@ -9779,7 +9880,6 @@
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
"integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
"dev": true,
- "license": "MIT",
"dependencies": {
"deep-is": "^0.1.3",
"fast-levenshtein": "^2.0.6",
@@ -9814,6 +9914,70 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
+ "node_modules/ora/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/ora/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/ora/node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/ora/node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ },
+ "node_modules/ora/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/ora/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/os-tmpdir": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz",
@@ -9827,7 +9991,6 @@
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
"integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
"dev": true,
- "license": "MIT",
"dependencies": {
"yocto-queue": "^0.1.0"
},
@@ -9843,7 +10006,6 @@
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
"dev": true,
- "license": "MIT",
"dependencies": {
"p-limit": "^3.0.2"
},
@@ -9866,7 +10028,6 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
"integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
- "license": "MIT",
"dependencies": {
"callsites": "^3.0.0"
},
@@ -9908,7 +10069,6 @@
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
"dev": true,
- "license": "MIT",
"engines": {
"node": ">=8"
}
@@ -9917,7 +10077,6 @@
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
"integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
- "license": "MIT",
"engines": {
"node": ">=0.10.0"
}
@@ -9926,7 +10085,6 @@
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
- "license": "MIT",
"engines": {
"node": ">=8"
}
@@ -9934,14 +10092,12 @@
"node_modules/path-parse": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
- "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
- "license": "MIT"
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
},
"node_modules/path-type": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
"integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
- "license": "MIT",
"engines": {
"node": ">=8"
}
@@ -9972,15 +10128,13 @@
"node_modules/picocolors": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
- "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==",
- "license": "ISC"
+ "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
},
"node_modules/picomatch": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
"dev": true,
- "license": "MIT",
"engines": {
"node": ">=8.6"
},
@@ -10025,6 +10179,70 @@
"pino-pretty": "bin.js"
}
},
+ "node_modules/pino-pretty/node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/pino-pretty/node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/pino-pretty/node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/pino-pretty/node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ },
+ "node_modules/pino-pretty/node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/pino-pretty/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/pino-std-serializers": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-2.5.0.tgz",
@@ -10071,7 +10289,6 @@
"url": "https://tidelift.com/funding/github/npm/postcss"
}
],
- "license": "MIT",
"dependencies": {
"nanoid": "^3.3.4",
"picocolors": "^1.0.0",
@@ -10095,7 +10312,6 @@
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
"integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
"dev": true,
- "license": "MIT",
"engines": {
"node": ">= 0.8.0"
}
@@ -10117,7 +10333,6 @@
"version": "15.8.1",
"resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
"integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
- "license": "MIT",
"dependencies": {
"loose-envify": "^1.4.0",
"object-assign": "^4.1.1",
@@ -10170,7 +10385,6 @@
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
"integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
"dev": true,
- "license": "MIT",
"engines": {
"node": ">=6"
}
@@ -10272,8 +10486,7 @@
"type": "consulting",
"url": "https://feross.org/support"
}
- ],
- "license": "MIT"
+ ]
},
"node_modules/quick-format-unescaped": {
"version": "4.0.4",
@@ -10301,7 +10514,6 @@
"version": "18.2.0",
"resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz",
"integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==",
- "license": "MIT",
"dependencies": {
"loose-envify": "^1.1.0"
},
@@ -10324,7 +10536,6 @@
"version": "18.2.0",
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz",
"integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==",
- "license": "MIT",
"dependencies": {
"loose-envify": "^1.1.0",
"scheduler": "^0.23.0"
@@ -10363,8 +10574,7 @@
"node_modules/react-is": {
"version": "16.13.1",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
- "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
- "license": "MIT"
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
},
"node_modules/react-lifecycles-compat": {
"version": "3.0.4",
@@ -10372,9 +10582,9 @@
"integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA=="
},
"node_modules/react-modal": {
- "version": "3.15.1",
- "resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.15.1.tgz",
- "integrity": "sha512-duB9bxOaYg7Zt6TMFldIFxQRtSP+Dg3F1ZX3FXxSUn+3tZZ/9JCgeAQKDg7rhZSAqopq8TFRw3yIbnx77gyFTw==",
+ "version": "3.16.1",
+ "resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.16.1.tgz",
+ "integrity": "sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg==",
"dependencies": {
"exenv": "^1.2.0",
"prop-types": "^15.7.2",
@@ -10414,9 +10624,9 @@
}
},
"node_modules/react-remove-scroll-bar": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.3.tgz",
- "integrity": "sha512-i9GMNWwpz8XpUpQ6QlevUtFjHGqnPG4Hxs+wlIJntu/xcsZVEpJcIV71K3ZkqNy2q3GfgvkD7y6t/Sv8ofYSbw==",
+ "version": "2.3.4",
+ "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.4.tgz",
+ "integrity": "sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==",
"dependencies": {
"react-style-singleton": "^2.2.1",
"tslib": "^2.0.0"
@@ -10470,16 +10680,14 @@
}
},
"node_modules/regenerator-runtime": {
- "version": "0.13.9",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz",
- "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==",
- "license": "MIT"
+ "version": "0.13.10",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz",
+ "integrity": "sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw=="
},
"node_modules/regexp.prototype.flags": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz",
"integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==",
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
@@ -10497,7 +10705,6 @@
"resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz",
"integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==",
"dev": true,
- "license": "MIT",
"engines": {
"node": ">=8"
},
@@ -10522,7 +10729,6 @@
"version": "1.22.1",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz",
"integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==",
- "license": "MIT",
"dependencies": {
"is-core-module": "^2.9.0",
"path-parse": "^1.0.7",
@@ -10539,7 +10745,6 @@
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
"integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
- "license": "MIT",
"engines": {
"node": ">=4"
}
@@ -10569,7 +10774,6 @@
"resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
"integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
"dev": true,
- "license": "MIT",
"engines": {
"iojs": ">=1.0.0",
"node": ">=0.10.0"
@@ -10579,7 +10783,6 @@
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
"integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
- "license": "ISC",
"dependencies": {
"glob": "^7.1.3"
},
@@ -10630,9 +10833,9 @@
}
},
"node_modules/rpc-websockets/node_modules/ws": {
- "version": "8.8.1",
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz",
- "integrity": "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==",
+ "version": "8.9.0",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.9.0.tgz",
+ "integrity": "sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg==",
"engines": {
"node": ">=10.0.0"
},
@@ -10688,7 +10891,6 @@
"url": "https://feross.org/support"
}
],
- "license": "MIT",
"dependencies": {
"queue-microtask": "^1.2.2"
}
@@ -10710,24 +10912,51 @@
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/safe-buffer": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ]
},
"node_modules/safe-json-utils": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/safe-json-utils/-/safe-json-utils-1.1.1.tgz",
"integrity": "sha512-SAJWGKDs50tAbiDXLf89PDwt9XYkWyANFWVzn4dTXl5QyI8t2o/bW5/OJl3lvc2WVU4MEpTo9Yz5NVFNsp+OJQ=="
},
+ "node_modules/safe-regex-test": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz",
+ "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==",
+ "dependencies": {
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.1.3",
+ "is-regex": "^1.1.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
"node_modules/safer-buffer": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
},
"node_modules/salmon-adapter-sdk": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/salmon-adapter-sdk/-/salmon-adapter-sdk-1.0.0.tgz",
- "integrity": "sha512-mbZGlOcApxET1FQBeQPGG+Y2DhawIPULyVhGMSMCwf0wYJDaiyToqL90ZbsqkKklXnN5vmsfVsPo0+R/cchy2Q==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/salmon-adapter-sdk/-/salmon-adapter-sdk-1.1.0.tgz",
+ "integrity": "sha512-8uKgA4+pwtUZRJ1k4tgA+EdF3yqHAst+wrdEJEqS8y9quYEuEGb5+EFonRdNzW1A9N0lX4PBHFalAlbiQ5BZtg==",
"dependencies": {
"@project-serum/sol-wallet-adapter": "^0.2.0",
"eventemitter3": "^4.0.7"
@@ -10740,7 +10969,6 @@
"version": "0.23.0",
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz",
"integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==",
- "license": "MIT",
"dependencies": {
"loose-envify": "^1.1.0"
}
@@ -10785,7 +11013,6 @@
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
- "license": "ISC",
"bin": {
"semver": "bin/semver.js"
}
@@ -10821,7 +11048,6 @@
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
- "license": "MIT",
"dependencies": {
"shebang-regex": "^3.0.0"
},
@@ -10833,7 +11059,6 @@
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
- "license": "MIT",
"engines": {
"node": ">=8"
}
@@ -10842,7 +11067,6 @@
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
"integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.0",
"get-intrinsic": "^1.0.2",
@@ -10862,19 +11086,18 @@
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
"integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
"dev": true,
- "license": "MIT",
"engines": {
"node": ">=8"
}
},
"node_modules/socket.io-client": {
- "version": "4.5.2",
- "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.2.tgz",
- "integrity": "sha512-naqYfFu7CLDiQ1B7AlLhRXKX3gdeaIMfgigwavDzgJoIUYulc1qHH5+2XflTsXTPY7BlPH5rppJyUjhjrKQKLg==",
+ "version": "4.5.3",
+ "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.3.tgz",
+ "integrity": "sha512-I/hqDYpQ6JKwtJOf5ikM+Qz+YujZPMEl6qBLhxiP0nX+TfXKhW4KZZG8lamrD6Y5ngjmYHreESVasVCgi5Kl3A==",
"dependencies": {
"@socket.io/component-emitter": "~3.1.0",
"debug": "~4.3.2",
- "engine.io-client": "~6.2.1",
+ "engine.io-client": "~6.2.3",
"socket.io-parser": "~4.2.0"
},
"engines": {
@@ -10914,7 +11137,6 @@
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
"integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
- "license": "BSD-3-Clause",
"engines": {
"node": ">=0.10.0"
}
@@ -11038,68 +11260,29 @@
"safe-buffer": "~5.2.0"
}
},
- "node_modules/string_decoder/node_modules/safe-buffer": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/feross"
- },
- {
- "type": "patreon",
- "url": "https://www.patreon.com/feross"
- },
- {
- "type": "consulting",
- "url": "https://feross.org/support"
- }
- ]
- },
"node_modules/string-width": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
- "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
"dependencies": {
- "emoji-regex": "^7.0.1",
- "is-fullwidth-code-point": "^2.0.0",
- "strip-ansi": "^5.1.0"
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
},
"engines": {
- "node": ">=6"
- }
- },
- "node_modules/string-width/node_modules/ansi-regex": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz",
- "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==",
- "engines": {
- "node": ">=6"
+ "node": ">=8"
}
},
"node_modules/string-width/node_modules/emoji-regex": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
- "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="
- },
- "node_modules/string-width/node_modules/strip-ansi": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
- "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
- "dependencies": {
- "ansi-regex": "^4.1.0"
- },
- "engines": {
- "node": ">=6"
- }
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
},
"node_modules/string.prototype.matchall": {
"version": "4.0.7",
"resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz",
"integrity": "sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==",
"dev": true,
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.3",
@@ -11118,7 +11301,6 @@
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz",
"integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==",
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.4",
@@ -11132,7 +11314,6 @@
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz",
"integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==",
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2",
"define-properties": "^1.1.4",
@@ -11146,7 +11327,6 @@
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
"integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
- "license": "MIT",
"dependencies": {
"ansi-regex": "^5.0.1"
},
@@ -11159,7 +11339,6 @@
"resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
"integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
"dev": true,
- "license": "MIT",
"engines": {
"node": ">=4"
}
@@ -11176,7 +11355,6 @@
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
- "license": "MIT",
"engines": {
"node": ">=8"
},
@@ -11197,7 +11375,6 @@
"version": "5.0.6",
"resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.0.6.tgz",
"integrity": "sha512-xOeROtkK5MGMDimBQ3J6iPId8q0t/BDoG5XN6oKkZClVz9ISF/hihN8OCn2LggMU6N32aXnrXBdn3auSqNS9fA==",
- "license": "MIT",
"engines": {
"node": ">= 12.0.0"
},
@@ -11252,9 +11429,9 @@
}
},
"node_modules/superagent/node_modules/semver": {
- "version": "7.3.7",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
- "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+ "version": "7.3.8",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz",
+ "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
"dependencies": {
"lru-cache": "^6.0.0"
},
@@ -11271,22 +11448,20 @@
"integrity": "sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ=="
},
"node_modules/supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
- "license": "MIT",
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dependencies": {
- "has-flag": "^4.0.0"
+ "has-flag": "^3.0.0"
},
"engines": {
- "node": ">=8"
+ "node": ">=4"
}
},
"node_modules/supports-preserve-symlinks-flag": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
"integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
- "license": "MIT",
"engines": {
"node": ">= 0.4"
},
@@ -11303,8 +11478,7 @@
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
"integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
- "dev": true,
- "license": "MIT"
+ "dev": true
},
"node_modules/through": {
"version": "2.3.8",
@@ -11339,6 +11513,11 @@
"util-deprecate": "~1.0.1"
}
},
+ "node_modules/through2/node_modules/safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
+ },
"node_modules/through2/node_modules/string_decoder": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
@@ -11348,9 +11527,9 @@
}
},
"node_modules/tiny-invariant": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.2.0.tgz",
- "integrity": "sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg=="
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz",
+ "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw=="
},
"node_modules/tmp": {
"version": "0.0.33",
@@ -11395,7 +11574,6 @@
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
"dev": true,
- "license": "MIT",
"dependencies": {
"is-number": "^7.0.0"
},
@@ -11469,7 +11647,6 @@
"resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz",
"integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==",
"dev": true,
- "license": "MIT",
"dependencies": {
"@types/json5": "^0.0.29",
"json5": "^1.0.1",
@@ -11477,18 +11654,28 @@
"strip-bom": "^3.0.0"
}
},
+ "node_modules/tsconfig-paths/node_modules/json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "dev": true,
+ "dependencies": {
+ "minimist": "^1.2.0"
+ },
+ "bin": {
+ "json5": "lib/cli.js"
+ }
+ },
"node_modules/tslib": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz",
- "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==",
- "license": "0BSD"
+ "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ=="
},
"node_modules/tsutils": {
"version": "3.21.0",
"resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz",
"integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==",
"dev": true,
- "license": "MIT",
"dependencies": {
"tslib": "^1.8.1"
},
@@ -11503,8 +11690,7 @@
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==",
- "dev": true,
- "license": "0BSD"
+ "dev": true
},
"node_modules/tweetnacl": {
"version": "1.0.3",
@@ -11516,7 +11702,6 @@
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
"integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
"dev": true,
- "license": "MIT",
"dependencies": {
"prelude-ls": "^1.2.1"
},
@@ -11525,11 +11710,9 @@
}
},
"node_modules/type-fest": {
- "version": "0.20.2",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
- "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
- "dev": true,
- "license": "(MIT OR CC0-1.0)",
+ "version": "0.21.3",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
"engines": {
"node": ">=10"
},
@@ -11541,7 +11724,6 @@
"version": "4.8.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.8.3.tgz",
"integrity": "sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==",
- "license": "Apache-2.0",
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
@@ -11567,7 +11749,6 @@
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz",
"integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==",
- "license": "MIT",
"dependencies": {
"call-bind": "^1.0.2",
"has-bigints": "^1.0.2",
@@ -11588,9 +11769,9 @@
}
},
"node_modules/update-browserslist-db": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.8.tgz",
- "integrity": "sha512-GHg7C4M7oJSJYW/ED/5QOJ7nL/E0lwTOBGsOorA7jqHr8ExUhPfwAotIAmdSw/LWv3SMLSNpzTAgeLG9zaZKTA==",
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz",
+ "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==",
"funding": [
{
"type": "opencollective",
@@ -11618,7 +11799,6 @@
"resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
"integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
"dev": true,
- "license": "BSD-2-Clause",
"dependencies": {
"punycode": "^2.1.0"
}
@@ -11668,15 +11848,14 @@
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz",
"integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==",
- "license": "MIT",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
}
},
"node_modules/utf-8-validate": {
- "version": "5.0.9",
- "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.9.tgz",
- "integrity": "sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q==",
+ "version": "5.0.10",
+ "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.10.tgz",
+ "integrity": "sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==",
"hasInstallScript": true,
"optional": true,
"dependencies": {
@@ -11687,15 +11866,14 @@
}
},
"node_modules/util": {
- "version": "0.12.4",
- "resolved": "https://registry.npmjs.org/util/-/util-0.12.4.tgz",
- "integrity": "sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==",
+ "version": "0.12.5",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz",
+ "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==",
"dependencies": {
"inherits": "^2.0.3",
"is-arguments": "^1.0.4",
"is-generator-function": "^1.0.7",
"is-typed-array": "^1.1.3",
- "safe-buffer": "^5.1.2",
"which-typed-array": "^1.1.2"
}
},
@@ -11741,10 +11919,18 @@
"node": ">=10.0.0"
}
},
+ "node_modules/wait-on/node_modules/axios": {
+ "version": "0.21.4",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
+ "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
+ "dependencies": {
+ "follow-redirects": "^1.14.0"
+ }
+ },
"node_modules/wait-on/node_modules/rxjs": {
- "version": "7.5.6",
- "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz",
- "integrity": "sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==",
+ "version": "7.5.7",
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz",
+ "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==",
"dependencies": {
"tslib": "^2.1.0"
}
@@ -11796,7 +11982,6 @@
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
- "license": "ISC",
"dependencies": {
"isexe": "^2.0.0"
},
@@ -11811,7 +11996,6 @@
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
"integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
- "license": "MIT",
"dependencies": {
"is-bigint": "^1.0.1",
"is-boolean-object": "^1.1.0",
@@ -11852,72 +12036,60 @@
"resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
"integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
"dev": true,
- "license": "MIT",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/wrap-ansi": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
- "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==",
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
"dependencies": {
- "ansi-styles": "^3.2.0",
- "string-width": "^3.0.0",
- "strip-ansi": "^5.0.0"
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
},
"engines": {
- "node": ">=6"
- }
- },
- "node_modules/wrap-ansi/node_modules/ansi-regex": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz",
- "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==",
- "engines": {
- "node": ">=6"
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
}
},
"node_modules/wrap-ansi/node_modules/ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dependencies": {
- "color-convert": "^1.9.0"
+ "color-convert": "^2.0.1"
},
"engines": {
- "node": ">=4"
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
}
},
"node_modules/wrap-ansi/node_modules/color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "dependencies": {
- "color-name": "1.1.3"
- }
- },
- "node_modules/wrap-ansi/node_modules/color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
- },
- "node_modules/wrap-ansi/node_modules/strip-ansi": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
- "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dependencies": {
- "ansi-regex": "^4.1.0"
+ "color-name": "~1.1.4"
},
"engines": {
- "node": ">=6"
+ "node": ">=7.0.0"
}
},
+ "node_modules/wrap-ansi/node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ },
"node_modules/wrappy": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
- "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
- "license": "ISC"
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
},
"node_modules/ws": {
"version": "7.5.9",
@@ -11963,8 +12135,7 @@
"node_modules/yallist": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
- "license": "ISC"
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
},
"node_modules/yaml": {
"version": "1.10.2",
@@ -12000,6 +12171,19 @@
"decamelize": "^1.2.0"
}
},
+ "node_modules/yargs/node_modules/ansi-regex": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz",
+ "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/yargs/node_modules/emoji-regex": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
+ "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="
+ },
"node_modules/yargs/node_modules/find-up": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
@@ -12011,6 +12195,14 @@
"node": ">=6"
}
},
+ "node_modules/yargs/node_modules/is-fullwidth-code-point": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+ "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==",
+ "engines": {
+ "node": ">=4"
+ }
+ },
"node_modules/yargs/node_modules/locate-path": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
@@ -12042,18 +12234,42 @@
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
"integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
"dependencies": {
- "p-limit": "^2.0.0"
+ "p-limit": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/yargs/node_modules/path-exists": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+ "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/yargs/node_modules/string-width": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
+ "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
+ "dependencies": {
+ "emoji-regex": "^7.0.1",
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^5.1.0"
},
"engines": {
"node": ">=6"
}
},
- "node_modules/yargs/node_modules/path-exists": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
- "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==",
+ "node_modules/yargs/node_modules/strip-ansi": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
+ "dependencies": {
+ "ansi-regex": "^4.1.0"
+ },
"engines": {
- "node": ">=4"
+ "node": ">=6"
}
},
"node_modules/yn": {
@@ -12070,7 +12286,6 @@
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
"integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
"dev": true,
- "license": "MIT",
"engines": {
"node": ">=10"
},
@@ -12104,49 +12319,41 @@
}
},
"@babel/compat-data": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.0.tgz",
- "integrity": "sha512-y5rqgTTPTmaF5e2nVhOxw+Ur9HDJLsWb6U/KpgUzRZEdPfE6VOubXBKLdbcUTijzRptednSBDQbYZBOSqJxpJw==",
+ "version": "7.19.4",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.4.tgz",
+ "integrity": "sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw==",
"peer": true
},
"@babel/core": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.19.0.tgz",
- "integrity": "sha512-reM4+U7B9ss148rh2n1Qs9ASS+w94irYXga7c2jaQv9RVzpS7Mv1a9rnYYwuDa45G+DkORt9g6An2k/V4d9LbQ==",
+ "version": "7.19.6",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.19.6.tgz",
+ "integrity": "sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg==",
"peer": true,
"requires": {
"@ampproject/remapping": "^2.1.0",
"@babel/code-frame": "^7.18.6",
- "@babel/generator": "^7.19.0",
- "@babel/helper-compilation-targets": "^7.19.0",
- "@babel/helper-module-transforms": "^7.19.0",
- "@babel/helpers": "^7.19.0",
- "@babel/parser": "^7.19.0",
+ "@babel/generator": "^7.19.6",
+ "@babel/helper-compilation-targets": "^7.19.3",
+ "@babel/helper-module-transforms": "^7.19.6",
+ "@babel/helpers": "^7.19.4",
+ "@babel/parser": "^7.19.6",
"@babel/template": "^7.18.10",
- "@babel/traverse": "^7.19.0",
- "@babel/types": "^7.19.0",
+ "@babel/traverse": "^7.19.6",
+ "@babel/types": "^7.19.4",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.2.1",
"semver": "^6.3.0"
- },
- "dependencies": {
- "json5": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz",
- "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==",
- "peer": true
- }
}
},
"@babel/generator": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.0.tgz",
- "integrity": "sha512-S1ahxf1gZ2dpoiFgA+ohK9DIpz50bJ0CWs7Zlzb54Z4sG8qmdIrGrVqmy1sAtTVRb+9CU6U8VqT9L0Zj7hxHVg==",
+ "version": "7.19.6",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.19.6.tgz",
+ "integrity": "sha512-oHGRUQeoX1QrKeJIKVe0hwjGqNnVYsM5Nep5zo0uE0m42sLH+Fsd2pStJ5sRM1bNyTUUoz0pe2lTeMJrb/taTA==",
"peer": true,
"requires": {
- "@babel/types": "^7.19.0",
+ "@babel/types": "^7.19.4",
"@jridgewell/gen-mapping": "^0.3.2",
"jsesc": "^2.5.1"
},
@@ -12165,14 +12372,14 @@
}
},
"@babel/helper-compilation-targets": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.0.tgz",
- "integrity": "sha512-Ai5bNWXIvwDvWM7njqsG3feMlL9hCVQsPYXodsZyLwshYkZVJt59Gftau4VrE8S9IT9asd2uSP1hG6wCNw+sXA==",
+ "version": "7.19.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz",
+ "integrity": "sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg==",
"peer": true,
"requires": {
- "@babel/compat-data": "^7.19.0",
+ "@babel/compat-data": "^7.19.3",
"@babel/helper-validator-option": "^7.18.6",
- "browserslist": "^4.20.2",
+ "browserslist": "^4.21.3",
"semver": "^6.3.0"
}
},
@@ -12210,19 +12417,19 @@
}
},
"@babel/helper-module-transforms": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.0.tgz",
- "integrity": "sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==",
+ "version": "7.19.6",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.6.tgz",
+ "integrity": "sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw==",
"peer": true,
"requires": {
"@babel/helper-environment-visitor": "^7.18.9",
"@babel/helper-module-imports": "^7.18.6",
- "@babel/helper-simple-access": "^7.18.6",
+ "@babel/helper-simple-access": "^7.19.4",
"@babel/helper-split-export-declaration": "^7.18.6",
- "@babel/helper-validator-identifier": "^7.18.6",
+ "@babel/helper-validator-identifier": "^7.19.1",
"@babel/template": "^7.18.10",
- "@babel/traverse": "^7.19.0",
- "@babel/types": "^7.19.0"
+ "@babel/traverse": "^7.19.6",
+ "@babel/types": "^7.19.4"
}
},
"@babel/helper-plugin-utils": {
@@ -12231,12 +12438,12 @@
"integrity": "sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw=="
},
"@babel/helper-simple-access": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz",
- "integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==",
+ "version": "7.19.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz",
+ "integrity": "sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==",
"peer": true,
"requires": {
- "@babel/types": "^7.18.6"
+ "@babel/types": "^7.19.4"
}
},
"@babel/helper-split-export-declaration": {
@@ -12249,14 +12456,14 @@
}
},
"@babel/helper-string-parser": {
- "version": "7.18.10",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz",
- "integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw=="
+ "version": "7.19.4",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz",
+ "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw=="
},
"@babel/helper-validator-identifier": {
- "version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz",
- "integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g=="
+ "version": "7.19.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
+ "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
},
"@babel/helper-validator-option": {
"version": "7.18.6",
@@ -12265,14 +12472,14 @@
"peer": true
},
"@babel/helpers": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.0.tgz",
- "integrity": "sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==",
+ "version": "7.19.4",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.4.tgz",
+ "integrity": "sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw==",
"peer": true,
"requires": {
"@babel/template": "^7.18.10",
- "@babel/traverse": "^7.19.0",
- "@babel/types": "^7.19.0"
+ "@babel/traverse": "^7.19.4",
+ "@babel/types": "^7.19.4"
}
},
"@babel/highlight": {
@@ -12283,63 +12490,12 @@
"@babel/helper-validator-identifier": "^7.18.6",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "requires": {
- "color-convert": "^1.9.0"
- }
- },
- "chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- }
- },
- "color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "requires": {
- "color-name": "1.1.3"
- }
- },
- "color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
- },
- "escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="
- },
- "has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="
- },
- "supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "requires": {
- "has-flag": "^3.0.0"
- }
- }
}
},
"@babel/parser": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.0.tgz",
- "integrity": "sha512-74bEXKX2h+8rrfQUfsBfuZZHzsEs6Eql4pqy/T4Nn6Y9wNPggQOqD6z6pn5Bl8ZfysKouFZT/UXEH94ummEeQw==",
+ "version": "7.19.6",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.19.6.tgz",
+ "integrity": "sha512-h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA==",
"peer": true
},
"@babel/plugin-syntax-jsx": {
@@ -12351,20 +12507,20 @@
}
},
"@babel/runtime": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz",
- "integrity": "sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==",
+ "version": "7.19.4",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.4.tgz",
+ "integrity": "sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/runtime-corejs3": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.0.tgz",
- "integrity": "sha512-JyXXoCu1N8GLuKc2ii8y5RGma5FMpFeO2nAQIe0Yzrbq+rQnN+sFj47auLblR5ka6aHNGPDgv8G/iI2Grb0ldQ==",
+ "version": "7.19.6",
+ "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.6.tgz",
+ "integrity": "sha512-oWNn1ZlGde7b4i/3tnixpH9qI0bOAACiUs+KEES4UUCnsPjVWFlWdLV/iwJuPC2qp3EowbAqsm+0XqNwnwYhxA==",
"dev": true,
"requires": {
- "core-js-pure": "^3.20.2",
+ "core-js-pure": "^3.25.1",
"regenerator-runtime": "^0.13.4"
}
},
@@ -12380,38 +12536,30 @@
}
},
"@babel/traverse": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.0.tgz",
- "integrity": "sha512-4pKpFRDh+utd2mbRC8JLnlsMUii3PMHjpL6a0SZ4NMZy7YFP9aXORxEhdMVOc9CpWtDF09IkciQLEhK7Ml7gRA==",
+ "version": "7.19.6",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.6.tgz",
+ "integrity": "sha512-6l5HrUCzFM04mfbG09AagtYyR2P0B71B1wN7PfSPiksDPz2k5H9CBC1tcZpz2M8OxbKTPccByoOJ22rUKbpmQQ==",
"peer": true,
"requires": {
"@babel/code-frame": "^7.18.6",
- "@babel/generator": "^7.19.0",
+ "@babel/generator": "^7.19.6",
"@babel/helper-environment-visitor": "^7.18.9",
"@babel/helper-function-name": "^7.19.0",
"@babel/helper-hoist-variables": "^7.18.6",
"@babel/helper-split-export-declaration": "^7.18.6",
- "@babel/parser": "^7.19.0",
- "@babel/types": "^7.19.0",
+ "@babel/parser": "^7.19.6",
+ "@babel/types": "^7.19.4",
"debug": "^4.1.0",
"globals": "^11.1.0"
- },
- "dependencies": {
- "globals": {
- "version": "11.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
- "peer": true
- }
}
},
"@babel/types": {
- "version": "7.19.0",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.0.tgz",
- "integrity": "sha512-YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA==",
+ "version": "7.19.4",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.19.4.tgz",
+ "integrity": "sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==",
"requires": {
- "@babel/helper-string-parser": "^7.18.10",
- "@babel/helper-validator-identifier": "^7.18.6",
+ "@babel/helper-string-parser": "^7.19.4",
+ "@babel/helper-validator-identifier": "^7.19.1",
"to-fast-properties": "^2.0.0"
}
},
@@ -12424,6 +12572,24 @@
"buffer": "^6.0.3",
"eip1193-provider": "^1.0.1",
"js-sha3": "^0.8.0"
+ },
+ "dependencies": {
+ "base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "requires": {
+ "base-x": "^3.0.2"
+ }
+ }
}
},
"@bundlr-network/client": {
@@ -12452,491 +12618,500 @@
"near-seed-phrase": "^0.2.0"
},
"dependencies": {
- "axios": {
- "version": "0.25.0",
- "resolved": "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz",
- "integrity": "sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==",
+ "base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
"requires": {
- "follow-redirects": "^1.14.7"
+ "safe-buffer": "^5.0.1"
}
},
- "commander": {
- "version": "8.3.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
- "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="
+ "bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "requires": {
+ "base-x": "^3.0.2"
+ }
}
}
},
"@chakra-ui/accordion": {
- "version": "2.0.12",
- "resolved": "https://registry.npmjs.org/@chakra-ui/accordion/-/accordion-2.0.12.tgz",
- "integrity": "sha512-O3qq8mILo1QODjCGr2xwxC5LNFakBoMzTjEgpvpIMynxWc/1RKfGuFLis3IDfpHIicXmBTK6sNiZXewmna88CQ==",
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/accordion/-/accordion-2.1.2.tgz",
+ "integrity": "sha512-Jf7A6I0eIGk34zO5TiTW8orJOFQb5A/D1ekNYbaukNccoUPKJg/xdQ/b00oIR6LT93nJxggkoP/vszfmmTHuFg==",
"requires": {
- "@chakra-ui/descendant": "3.0.9",
- "@chakra-ui/icon": "3.0.9",
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/react-use-controllable-state": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/transition": "2.0.9"
+ "@chakra-ui/descendant": "3.0.10",
+ "@chakra-ui/icon": "3.0.11",
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/react-use-controllable-state": "2.0.5",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/transition": "2.0.11"
}
},
"@chakra-ui/alert": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/alert/-/alert-2.0.9.tgz",
- "integrity": "sha512-hFRIh6ZzQJ0sAESRym15mW/mcZE/yu4z6lFtdToBhpfSlhZLuE7gDdOTxqGkg417hY//48NiNXOCoQ2dUUuHKw==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/alert/-/alert-2.0.11.tgz",
+ "integrity": "sha512-n40KHU3j1H6EbIdgptjEad92V7Fpv7YD++ZBjy2g1h4w9ay9nw4kGHib3gaIkBupLf52CfLqySEc8w0taoIlXQ==",
"requires": {
- "@chakra-ui/icon": "3.0.9",
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/spinner": "2.0.9"
+ "@chakra-ui/icon": "3.0.11",
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/spinner": "2.0.10"
}
},
"@chakra-ui/anatomy": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/@chakra-ui/anatomy/-/anatomy-2.0.6.tgz",
- "integrity": "sha512-Vgop2FFdhVtX7BydjZdJWZAWy+DdXBU1IMaBppz6COaH+/7OXxoI2ec2bs17ehJyBO0M+ud3OLj5UCFQ79YsoQ=="
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/anatomy/-/anatomy-2.0.7.tgz",
+ "integrity": "sha512-vzcB2gcsGCxhrKbldQQV6LnBPys4eSSsH2UA2mLsT+J3WlXw0aodZw0eE/nH7yLxe4zaQ4Gnc0KjkFW4EWNKSg=="
},
"@chakra-ui/avatar": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/@chakra-ui/avatar/-/avatar-2.1.0.tgz",
- "integrity": "sha512-SRQeH6NNvIBgUc4OsO14ypvcn8I66ndw7r4piIkm+R2zqbYnrzpp1d2zNPNHkChc4xQY71/GenenYO5Fhsi2DA==",
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/avatar/-/avatar-2.2.0.tgz",
+ "integrity": "sha512-mpAkfr/JG+BNBw2WvU55CSRFYKeFBUyAQAu3YulznLzi2U3e7k3IA0J8ofbrDYlSH/9KqkDuuSrxqGZgct+Nug==",
"requires": {
- "@chakra-ui/image": "2.0.10",
- "@chakra-ui/react-children-utils": "2.0.1",
- "@chakra-ui/react-context": "2.0.3"
+ "@chakra-ui/image": "2.0.11",
+ "@chakra-ui/react-children-utils": "2.0.3",
+ "@chakra-ui/react-context": "2.0.4"
}
},
"@chakra-ui/breadcrumb": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/breadcrumb/-/breadcrumb-2.0.9.tgz",
- "integrity": "sha512-cc3WbxrJNRUph4v45qCdcIKJI0xECeV9VikQNIactBB+iexN4d+5P66xZABAkD8wWGmyH5KuSZcd9sFYNmC13w==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/breadcrumb/-/breadcrumb-2.1.0.tgz",
+ "integrity": "sha512-khBR579SLDEo6Wuo3tETRY6m0yJD/WCvSR7Res2g1B6OJgc9OQGM7yIMu4OdLUTwfXsCnlHTDoSQPUxFOVAMIQ==",
"requires": {
- "@chakra-ui/react-children-utils": "2.0.1",
- "@chakra-ui/react-context": "2.0.3"
+ "@chakra-ui/react-children-utils": "2.0.3",
+ "@chakra-ui/react-context": "2.0.4"
}
},
"@chakra-ui/breakpoint-utils": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/breakpoint-utils/-/breakpoint-utils-2.0.3.tgz",
- "integrity": "sha512-smi41ZtaiPw4mXaCgicyAh5M45Drt20wypThP+qQUT2CQ51UFZhYlItRA2lCXKQ9QB83POcHPC/oAwIsNOAfTg=="
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/breakpoint-utils/-/breakpoint-utils-2.0.4.tgz",
+ "integrity": "sha512-SUUEYnA/FCIKYDHMuEXcnBMwet+6RAAjQ+CqGD1hlwKPTfh7EK9fS8FoVAJa9KpRKAc/AawzPkgwvorzPj8NSg=="
},
"@chakra-ui/button": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/button/-/button-2.0.9.tgz",
- "integrity": "sha512-4BuDBiBlChHW1rQ9iod9MKs87AY3IyvZQwjV3DZTU4IG0KcDDfLQf++jj4dkg9Ttu+pIWhwF42pzA40JxW1oNg==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/button/-/button-2.0.11.tgz",
+ "integrity": "sha512-J6iMRITqxTxa0JexHUY9c7BXUrTZtSkl3jZ2hxiFybB4MQL8J2wZ24O846B6M+WTYqy7XVuHRuVURnH4czWesw==",
"requires": {
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/spinner": "2.0.9"
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/spinner": "2.0.10"
}
},
"@chakra-ui/checkbox": {
- "version": "2.1.8",
- "resolved": "https://registry.npmjs.org/@chakra-ui/checkbox/-/checkbox-2.1.8.tgz",
- "integrity": "sha512-HhRs3nwTFoIE/UpX4N2AZxxW39Xm/Vw01HjwP/59X60kdKs3RBXlm52cODkfUDfveyT9o5ezLhU/jRf0qA909Q==",
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/checkbox/-/checkbox-2.2.2.tgz",
+ "integrity": "sha512-Y6Zbkkk5VNoe0RzqU6F+rKlFVPlubz1KIgYcb7CCNHGOM97dLtRm78eAvJ+7Xmpitr+7zZ4hJLLjfAz+e1X7rA==",
"requires": {
- "@chakra-ui/form-control": "2.0.9",
- "@chakra-ui/react-context": "2.0.3",
+ "@chakra-ui/form-control": "2.0.11",
+ "@chakra-ui/react-context": "2.0.4",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-callback-ref": "2.0.3",
- "@chakra-ui/react-use-controllable-state": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/react-use-safe-layout-effect": "2.0.1",
- "@chakra-ui/react-use-update-effect": "2.0.3",
- "@chakra-ui/visually-hidden": "2.0.9",
+ "@chakra-ui/react-use-callback-ref": "2.0.4",
+ "@chakra-ui/react-use-controllable-state": "2.0.5",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/react-use-safe-layout-effect": "2.0.2",
+ "@chakra-ui/react-use-update-effect": "2.0.4",
+ "@chakra-ui/visually-hidden": "2.0.11",
"@zag-js/focus-visible": "0.1.0"
}
},
"@chakra-ui/clickable": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/clickable/-/clickable-2.0.9.tgz",
- "integrity": "sha512-tGXYM6M6I954fif98QkNu5M76oBZmksCTj2mILOan9/BSimpFpu06aPGX3ZIkNsz300nIObn0FdtMvKpIEQueA==",
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/clickable/-/clickable-2.0.10.tgz",
+ "integrity": "sha512-G6JdR6yAMlXpfjOJ70W2FL7aUwNuomiMFtkneeTpk7Q42bJ5iGHfYlbZEx5nJd8iB+UluXVM4xlhMv2MyytjGw==",
"requires": {
- "@chakra-ui/react-use-merge-refs": "2.0.3"
+ "@chakra-ui/react-use-merge-refs": "2.0.4"
}
},
"@chakra-ui/close-button": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/close-button/-/close-button-2.0.9.tgz",
- "integrity": "sha512-0RI/zLR+/mycGbYCCwDAc9hAVG7IIVmdikmo1ET7+rYip4TN94aWR0hA4dYtWqqghG1oW/pYQ9Yja6fEY90V5w==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/close-button/-/close-button-2.0.11.tgz",
+ "integrity": "sha512-9WF/nwwK9BldS89WQ5PtXK2nFS4r8QOgKls2BOwXfE+rGmOUZtOsu8ne/drXRjgkiBRETR6CxdyUjm7EPzXllw==",
"requires": {
- "@chakra-ui/icon": "3.0.9"
+ "@chakra-ui/icon": "3.0.11"
}
},
"@chakra-ui/color-mode": {
- "version": "2.1.7",
- "resolved": "https://registry.npmjs.org/@chakra-ui/color-mode/-/color-mode-2.1.7.tgz",
- "integrity": "sha512-GAoKJzVRQeuEfCa2i0BZdMwxuOoaGknU3+5wgvLuaSpwlov4OyqpjKMRdSdpjr4IFiqqHK47dsr3H4LQsbO+9w==",
+ "version": "2.1.9",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/color-mode/-/color-mode-2.1.9.tgz",
+ "integrity": "sha512-0kx0I+AQon8oS23/X+qMtnhsv/1BUulyJvU56p3Uh8CRaBfgJ7Ly9CerShoUL+5kadu6hN1M9oty4cugaCwv2w==",
"requires": {
- "@chakra-ui/react-use-safe-layout-effect": "2.0.1"
+ "@chakra-ui/react-use-safe-layout-effect": "2.0.2"
}
},
"@chakra-ui/control-box": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/control-box/-/control-box-2.0.9.tgz",
- "integrity": "sha512-/viS9OBah1wCLNZbgfwkoQOnVRUYgp8Gypjqk9QNQwnNdFUTEgWc1RWN+1RYO85esJzHLkA2hZFIrYu1TZeZ6g==",
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/control-box/-/control-box-2.0.10.tgz",
+ "integrity": "sha512-sHmZanFLEv4IDATl19ZTxq8Bi8PtjfvnsN6xF4k7JGSYUnk1YXUf1coyW7WKdcsczOASrMikfsLc3iEVAzx4Ng==",
"requires": {}
},
"@chakra-ui/counter": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/counter/-/counter-2.0.9.tgz",
- "integrity": "sha512-LuqtpyxCOZM19gAmV0vtVeaFd9ccPmEjoGJQ0NoO8CFheltgLC/7m/8YpDbgWiG4+BAkTUfIG+5nLg5hwvvQxw==",
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/counter/-/counter-2.0.10.tgz",
+ "integrity": "sha512-MZK8UKUZp4nFMd+GlV/cq0NIARS7UdlubTuCx+wockw9j2JI5OHzsyK0XiWuJiq5psegSTzpbtT99QfAUm3Yiw==",
"requires": {
- "@chakra-ui/number-utils": "2.0.3",
- "@chakra-ui/react-use-callback-ref": "2.0.3"
+ "@chakra-ui/number-utils": "2.0.4",
+ "@chakra-ui/react-use-callback-ref": "2.0.4"
}
},
"@chakra-ui/css-reset": {
- "version": "2.0.7",
- "resolved": "https://registry.npmjs.org/@chakra-ui/css-reset/-/css-reset-2.0.7.tgz",
- "integrity": "sha512-ztGdFQ6U1hX2k6a3HZ8D3A/dZWVxlGe2F5mvUrRU554mFWBYmsq0ydZ7UBEPlykv9NoCz4nN8VCkIxcKJ3p29Q==",
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/css-reset/-/css-reset-2.0.8.tgz",
+ "integrity": "sha512-VuDD1rk1pFc+dItk4yUcstyoC9D2B35hatHDBtlPMqTczFAzpbgVJJYgEHANatXGfulM5SdckmYEIJ3Tac1Rtg==",
"requires": {}
},
"@chakra-ui/descendant": {
- "version": "3.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/descendant/-/descendant-3.0.9.tgz",
- "integrity": "sha512-30E5yMWvxgBx43PoI/67r9h9OhbpDfLb/MLOCjtEwebSbD0V5+fmnmCoUELScQbhozQVjA9t195X6UP0VQWj8w==",
+ "version": "3.0.10",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/descendant/-/descendant-3.0.10.tgz",
+ "integrity": "sha512-MHH0Qdm0fGllGP2xgx4WOycmrpctyyEdGw6zxcfs2VqZNlrwmjG3Yb9eVY+Q7UmEv5rwAq6qRn7BhQxgSPn3Cg==",
"requires": {
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3"
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/react-use-merge-refs": "2.0.4"
}
},
"@chakra-ui/dom-utils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/dom-utils/-/dom-utils-2.0.1.tgz",
- "integrity": "sha512-sbob9AHQq1+KIQ3XKslafislwtC8pYcpwM0S1SLzgyZumHRwhDimKwdi4MtRQfOCenub0E3diRjp4RpGRL0JuQ=="
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/dom-utils/-/dom-utils-2.0.3.tgz",
+ "integrity": "sha512-aeGlRmTxcv0cvW44DyeZHru1i68ZDQsXpfX2dnG1I1yBlT6GlVx1xYjCULis9mjhgvd2O3NfcYPRTkjNWTDUbA=="
},
"@chakra-ui/editable": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/editable/-/editable-2.0.9.tgz",
- "integrity": "sha512-s5F3UMR09s6ga3eVhw0UBMGmegtxg6jCp29VLqaEwP5BuWIEOjcJz358gTlnFr3dhvb31e3rcr+B1XiYv4wxqg==",
+ "version": "2.0.13",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/editable/-/editable-2.0.13.tgz",
+ "integrity": "sha512-GM3n8t3/TOFFcDOWF/tuKsnqn66isZLsU+FkMRY2o0E8XjLBGjCKuXInPW5SRBqhje7EHC+kwViLE780PfwXbw==",
"requires": {
- "@chakra-ui/react-context": "2.0.3",
+ "@chakra-ui/react-context": "2.0.4",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-controllable-state": "2.0.3",
- "@chakra-ui/react-use-focus-on-pointer-down": "2.0.1",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/react-use-safe-layout-effect": "2.0.1",
- "@chakra-ui/react-use-update-effect": "2.0.3",
- "@chakra-ui/shared-utils": "2.0.1"
+ "@chakra-ui/react-use-callback-ref": "2.0.4",
+ "@chakra-ui/react-use-controllable-state": "2.0.5",
+ "@chakra-ui/react-use-focus-on-pointer-down": "2.0.3",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/react-use-safe-layout-effect": "2.0.2",
+ "@chakra-ui/react-use-update-effect": "2.0.4",
+ "@chakra-ui/shared-utils": "2.0.2"
}
},
"@chakra-ui/event-utils": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/@chakra-ui/event-utils/-/event-utils-2.0.4.tgz",
- "integrity": "sha512-J2YgAM5Dw9hMkwfMsWhsiAG848GfTMxNclUIUcgV9RQhLEs0eTFhelzNiKVOMA3vBxlT6lOARuRun/ESiFZgGg=="
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/event-utils/-/event-utils-2.0.5.tgz",
+ "integrity": "sha512-VXoOAIsM0PFKDlhm+EZxkWlUXd5UFTb/LTux3y3A+S9G5fDxLRvpiLWByPUgTFTCDFcgTCF+YnQtdWJB4DLyxg=="
},
"@chakra-ui/focus-lock": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/focus-lock/-/focus-lock-2.0.10.tgz",
- "integrity": "sha512-LeRZYzwfJp0eq84oO8e1pC2qC8v8fJw/P4nYDrCDjuJU753DV6nVjp5MKMRqbkp+6IAElPc+ojy/sp2a9GCocw==",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/focus-lock/-/focus-lock-2.0.12.tgz",
+ "integrity": "sha512-NvIP59A11ZNbxXZ3qwxSiQ5npjABkpSbTIjK0uZ9bZm5LMfepRnuuA19VsVlq31/BYV9nHFAy6xzIuG+Qf9xMA==",
"requires": {
- "@chakra-ui/dom-utils": "2.0.1",
+ "@chakra-ui/dom-utils": "2.0.3",
"react-focus-lock": "^2.9.1"
}
},
"@chakra-ui/form-control": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/form-control/-/form-control-2.0.9.tgz",
- "integrity": "sha512-P8Tr45z/XSAa1m6uAma0eKf1h7Ltg2sLj2jK5YhaXJER9VUUY18iGe96D4JrAXlgEWDhTyWMb63nB+eYO1tKtw==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/form-control/-/form-control-2.0.11.tgz",
+ "integrity": "sha512-MVhIe0xY4Zn06IXRXFmS9tCa93snppK1SdUQb1P99Ipo424RrL5ykzLnJ8CAkQrhoVP3sxF7z3eOSzk8/iRfow==",
"requires": {
- "@chakra-ui/icon": "3.0.9",
- "@chakra-ui/react-context": "2.0.3",
+ "@chakra-ui/icon": "3.0.11",
+ "@chakra-ui/react-context": "2.0.4",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3"
+ "@chakra-ui/react-use-merge-refs": "2.0.4"
}
},
"@chakra-ui/hooks": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/hooks/-/hooks-2.0.9.tgz",
- "integrity": "sha512-0JRgEPtsBaXr9nQW1xEKlWGA7WwFbLNqac7fQXp9zQvoHOWTfNJkK/NJaVBvyFPgfTLxy37WKHooVSwNG/Lwmg==",
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/hooks/-/hooks-2.1.0.tgz",
+ "integrity": "sha512-4H6BDITq/YrStW99LXurgPkcz4qHSVy9V/QWXCvt1pCuiDTqNztiW4r508H3ApAOsL9NEbyXcM/zWYD7r5VDjA==",
"requires": {
- "@chakra-ui/react-utils": "2.0.6",
- "@chakra-ui/utils": "2.0.9",
+ "@chakra-ui/react-utils": "2.0.8",
+ "@chakra-ui/utils": "2.0.11",
"compute-scroll-into-view": "1.0.14",
"copy-to-clipboard": "3.3.1"
}
},
"@chakra-ui/icon": {
- "version": "3.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-3.0.9.tgz",
- "integrity": "sha512-P2Pwm/za6m1W1oqL2kGHH6XrrymsBjqYAFwOW2lB5Q6mI1e+RYe/iMxDoPSLHMYhqdfH7vyib/ffE3Vv3a5oTA==",
+ "version": "3.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/icon/-/icon-3.0.11.tgz",
+ "integrity": "sha512-RG4jf/XmBdaxOYI5J5QstEtTCPoVlmrQ/XiWhvN0LTgAnmZIqVwFl3Uw+satArdStHAs0GmJZg/E/soFTWuFmw==",
"requires": {
- "@chakra-ui/shared-utils": "2.0.1"
+ "@chakra-ui/shared-utils": "2.0.2"
}
},
"@chakra-ui/icons": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/icons/-/icons-2.0.9.tgz",
- "integrity": "sha512-6xvV2rC8wATgfnRH+fC9mi0nLcgKjhHKO29lV1pGioVI0yWK0dqc//zjcyBhMMpW5ABnSfig7ujVBf3op/Syzg==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/icons/-/icons-2.0.11.tgz",
+ "integrity": "sha512-WjxrFMt9hHpuZlnBh4fhtGOkIVlwYwHNmwq4sJGxYWlg8UnEhVJMoOojheJDy/d3Gp9+ApetlK3vt8fV/rZamg==",
"requires": {
- "@chakra-ui/icon": "3.0.9"
+ "@chakra-ui/icon": "3.0.11"
}
},
"@chakra-ui/image": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/image/-/image-2.0.10.tgz",
- "integrity": "sha512-Atc1bdog4V5xv7IbpF2F2UkKWfgG/TD74cIac09JuSpQcYyh7lrJ7iVvhTkeP+LDdCs+QCD7SnTUM4Y0ZlaHbA==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/image/-/image-2.0.11.tgz",
+ "integrity": "sha512-S6NqAprPcbHnck/J+2wg06r9SSol62v5A01O8Kke2PnAyjalMcS+6P59lDRO7wvPqsdxq4PPbSTZP6Dww2CvcA==",
"requires": {
- "@chakra-ui/react-use-safe-layout-effect": "2.0.1"
+ "@chakra-ui/react-use-safe-layout-effect": "2.0.2"
}
},
"@chakra-ui/input": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/input/-/input-2.0.9.tgz",
- "integrity": "sha512-6MKydxTyF7JV7PtQHircQ5HBTd6Ik9Vn7p8fCLeAieT0TK8UQTxMWZVPminS7TRWMutrq8W99DcQOBlMz0cKrw==",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/input/-/input-2.0.12.tgz",
+ "integrity": "sha512-lJ5necu+Wt698HdCTC7L/ErA2nNVJAra7+knPe0qMR+AizGEL7LKCV/bdQe7eggjvKsDGD4alJIEczUvm3JVUQ==",
"requires": {
- "@chakra-ui/form-control": "2.0.9",
- "@chakra-ui/object-utils": "2.0.3",
- "@chakra-ui/react-children-utils": "2.0.1",
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/shared-utils": "2.0.1"
+ "@chakra-ui/form-control": "2.0.11",
+ "@chakra-ui/object-utils": "2.0.4",
+ "@chakra-ui/react-children-utils": "2.0.3",
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/shared-utils": "2.0.2"
}
},
"@chakra-ui/layout": {
- "version": "2.1.6",
- "resolved": "https://registry.npmjs.org/@chakra-ui/layout/-/layout-2.1.6.tgz",
- "integrity": "sha512-QDNaVu44UI46c+YlSF1KrzJkiwua0UtRXNTnR3jBE1uzcuqRow7xgr3E60dLphY2cPFqAljfQZUNlP3sgvCLww==",
+ "version": "2.1.9",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/layout/-/layout-2.1.9.tgz",
+ "integrity": "sha512-ztsavtirtdtjxdqIkGR6fVcrffHp6hs1twRFO/dK14FGXrX3Nn9mi3J1fr1ITBHJq6y5B3yFEj0LHN2fO8dYyw==",
"requires": {
- "@chakra-ui/breakpoint-utils": "2.0.3",
- "@chakra-ui/icon": "3.0.9",
- "@chakra-ui/object-utils": "2.0.3",
- "@chakra-ui/react-children-utils": "2.0.1",
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/shared-utils": "2.0.1"
+ "@chakra-ui/breakpoint-utils": "2.0.4",
+ "@chakra-ui/icon": "3.0.11",
+ "@chakra-ui/object-utils": "2.0.4",
+ "@chakra-ui/react-children-utils": "2.0.3",
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/shared-utils": "2.0.2"
}
},
"@chakra-ui/lazy-utils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/lazy-utils/-/lazy-utils-2.0.1.tgz",
- "integrity": "sha512-986YjYq+hEzHDLZiqYlYbdqfiKdC3h2g896Eoe5K2UXtAVxqZI3UOnMH781X6N1R7rGJWquskzG681qFigW/BA=="
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/lazy-utils/-/lazy-utils-2.0.2.tgz",
+ "integrity": "sha512-MTxutBJZvqNNqrrS0722cI7qrnGu0yUQpIebmTxYwI+F3cOnPEKf5Ni+hrA8hKcw4XJhSY4npAPPYu1zJbOV4w=="
},
"@chakra-ui/live-region": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/live-region/-/live-region-2.0.9.tgz",
- "integrity": "sha512-ilbo/C5wcUoSHDU5owFPQP3KsabPYGzDEbwV+Z76BlyNdFN2PD0j13RGEH+sBNNZ3HzLyyuuc1YmkVcJi7ycQg==",
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/live-region/-/live-region-2.0.10.tgz",
+ "integrity": "sha512-eQ2ZIreR/plzi/KGszDYTi1TvIyGEBcPiWP52BQOS7xwpzb1vsoR1FgFAIELxAGJvKnMUs+9qVogfyRBX8PdOg==",
"requires": {}
},
"@chakra-ui/media-query": {
- "version": "3.2.5",
- "resolved": "https://registry.npmjs.org/@chakra-ui/media-query/-/media-query-3.2.5.tgz",
- "integrity": "sha512-V+Dngi/r7u/uj7JhsZerM1RI597Oo4wED2ojNfclnnEVb/IoqktiuFy6RQgbo3HmE7M/E5B1i4yYzt7tQJhXlg==",
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/media-query/-/media-query-3.2.7.tgz",
+ "integrity": "sha512-hbgm6JCe0kYU3PAhxASYYDopFQI26cW9kZnbp+5tRL1fykkVWNMPwoGC8FEZPur9JjXp7aoL6H4Jk7nrxY/XWw==",
"requires": {
- "@chakra-ui/breakpoint-utils": "2.0.3",
- "@chakra-ui/react-env": "2.0.9"
+ "@chakra-ui/breakpoint-utils": "2.0.4",
+ "@chakra-ui/react-env": "2.0.10"
}
},
"@chakra-ui/menu": {
- "version": "2.0.13",
- "resolved": "https://registry.npmjs.org/@chakra-ui/menu/-/menu-2.0.13.tgz",
- "integrity": "sha512-XZYoq9k/txAELUgn5OokyxfXEpVZwBueVYXiT9ji0XvMuzXVxeHd40klJEkiJUctNsOahZf10t5yxlT4B00pwA==",
- "requires": {
- "@chakra-ui/clickable": "2.0.9",
- "@chakra-ui/descendant": "3.0.9",
- "@chakra-ui/lazy-utils": "2.0.1",
- "@chakra-ui/popper": "3.0.7",
- "@chakra-ui/react-children-utils": "2.0.1",
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/react-use-animation-state": "2.0.3",
- "@chakra-ui/react-use-controllable-state": "2.0.3",
- "@chakra-ui/react-use-disclosure": "2.0.3",
- "@chakra-ui/react-use-focus-effect": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/react-use-outside-click": "2.0.3",
- "@chakra-ui/react-use-update-effect": "2.0.3",
- "@chakra-ui/transition": "2.0.9"
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/menu/-/menu-2.1.2.tgz",
+ "integrity": "sha512-6Z7ecXjp6BtZ1ExbFggfxsAj1hwtcathXekmCTxHpXOD+BdjAC/13+oLclwXeuBO85aoTmQrQ2ovfTkO31bzRQ==",
+ "requires": {
+ "@chakra-ui/clickable": "2.0.10",
+ "@chakra-ui/descendant": "3.0.10",
+ "@chakra-ui/lazy-utils": "2.0.2",
+ "@chakra-ui/popper": "3.0.8",
+ "@chakra-ui/react-children-utils": "2.0.3",
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/react-use-animation-state": "2.0.5",
+ "@chakra-ui/react-use-controllable-state": "2.0.5",
+ "@chakra-ui/react-use-disclosure": "2.0.5",
+ "@chakra-ui/react-use-focus-effect": "2.0.5",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/react-use-outside-click": "2.0.4",
+ "@chakra-ui/react-use-update-effect": "2.0.4",
+ "@chakra-ui/transition": "2.0.11"
}
},
"@chakra-ui/modal": {
- "version": "2.1.7",
- "resolved": "https://registry.npmjs.org/@chakra-ui/modal/-/modal-2.1.7.tgz",
- "integrity": "sha512-A+CbvhQYpmLH3SrqJ1wJysUCGm0mNoSDxRjP4wX98j56nMTDAsMYlzttpuLmKaSzvbJ7uEQDLtQV8lZjB0gUuw==",
- "requires": {
- "@chakra-ui/close-button": "2.0.9",
- "@chakra-ui/focus-lock": "2.0.10",
- "@chakra-ui/portal": "2.0.9",
- "@chakra-ui/react-context": "2.0.3",
+ "version": "2.2.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/modal/-/modal-2.2.2.tgz",
+ "integrity": "sha512-cCYuqLZO4QqFUI1H+uEqixDk6UiCP3yC+sxkhFTXHIApSG9Z44v5np7BVTd6LKdmAN8pAWcc8Oxf14RvD6LWLw==",
+ "requires": {
+ "@chakra-ui/close-button": "2.0.11",
+ "@chakra-ui/focus-lock": "2.0.12",
+ "@chakra-ui/portal": "2.0.10",
+ "@chakra-ui/react-context": "2.0.4",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/transition": "2.0.9",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/transition": "2.0.11",
"aria-hidden": "^1.1.1",
"react-remove-scroll": "^2.5.4"
}
},
"@chakra-ui/number-input": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/number-input/-/number-input-2.0.9.tgz",
- "integrity": "sha512-RsDzoNvSBZMgyXjN543AtQ2v99U1p/0xnGWZy4NCkgCDWMBn3kIXqSzQq5CB9Ot0MD8nnKF5VYdVdXWguXExEQ==",
- "requires": {
- "@chakra-ui/counter": "2.0.9",
- "@chakra-ui/form-control": "2.0.9",
- "@chakra-ui/icon": "3.0.9",
- "@chakra-ui/react-context": "2.0.3",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/number-input/-/number-input-2.0.12.tgz",
+ "integrity": "sha512-3owLjl01sCYpTd3xbq//fJo9QJ0Q3PVYSx9JeOzlXnnTW8ws+yHPrqQzPe7G+tO4yOYynWuUT+NJ9oyCeAJIxA==",
+ "requires": {
+ "@chakra-ui/counter": "2.0.10",
+ "@chakra-ui/form-control": "2.0.11",
+ "@chakra-ui/icon": "3.0.11",
+ "@chakra-ui/react-context": "2.0.4",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-callback-ref": "2.0.3",
- "@chakra-ui/react-use-event-listener": "2.0.3",
- "@chakra-ui/react-use-interval": "2.0.1",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/react-use-safe-layout-effect": "2.0.1",
- "@chakra-ui/react-use-update-effect": "2.0.3"
+ "@chakra-ui/react-use-callback-ref": "2.0.4",
+ "@chakra-ui/react-use-event-listener": "2.0.4",
+ "@chakra-ui/react-use-interval": "2.0.2",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/react-use-safe-layout-effect": "2.0.2",
+ "@chakra-ui/react-use-update-effect": "2.0.4"
}
},
"@chakra-ui/number-utils": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/number-utils/-/number-utils-2.0.3.tgz",
- "integrity": "sha512-oN03kYAUCCp/FNtpLr5mh+cvd/sRTzZWTBoFydmxc955psXq/X950gzs6o5kzoeFCpgXaxMmHAXQm3ReEK2NsQ=="
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/number-utils/-/number-utils-2.0.4.tgz",
+ "integrity": "sha512-MdYd29GboBoKaXY9jhbY0Wl+0NxG1t/fa32ZSIbU6VrfMsZuAMl4NEJsz7Xvhy50fummLdKn5J6HFS7o5iyIgw=="
},
"@chakra-ui/object-utils": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/object-utils/-/object-utils-2.0.3.tgz",
- "integrity": "sha512-36prckrqTynVD/JTzyCr8OCWVOrMs/awZo3djVbIiNxRIcJ5iEwUVy26h3MWN4ENSopipBtxNfAwPNTLU5Si/g=="
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/object-utils/-/object-utils-2.0.4.tgz",
+ "integrity": "sha512-sY98L4v2wcjpwRX8GCXqT+WzpL0i5FHVxT1Okxw0360T2tGnZt7toAwpMfIOR3dzkemP9LfXMCyBmWR5Hi2zpQ=="
},
"@chakra-ui/pin-input": {
- "version": "2.0.12",
- "resolved": "https://registry.npmjs.org/@chakra-ui/pin-input/-/pin-input-2.0.12.tgz",
- "integrity": "sha512-gaMRp5AFW+qAJCUj93V1WluuYBBZ/5A3Wy5q796g8Auvw7vufgkVtl6EBznwvtynZN8gJwbRFpMtJxQyXCkUiw==",
+ "version": "2.0.15",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/pin-input/-/pin-input-2.0.15.tgz",
+ "integrity": "sha512-Ha8siSZm9gyjHHBK8ejwhKT6+75U12I/hNiYFvl2JHhc+Uh8tdi7+N+9SILO5vqbIv9kb+WGitvZ67I0cHjSfw==",
"requires": {
- "@chakra-ui/descendant": "3.0.9",
- "@chakra-ui/react-children-utils": "2.0.1",
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/react-use-controllable-state": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3"
+ "@chakra-ui/descendant": "3.0.10",
+ "@chakra-ui/react-children-utils": "2.0.3",
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/react-use-controllable-state": "2.0.5",
+ "@chakra-ui/react-use-merge-refs": "2.0.4"
}
},
"@chakra-ui/popover": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/popover/-/popover-2.0.9.tgz",
- "integrity": "sha512-+7tH4RVuheFQOyAZ5KT9x+qsLvz7rGuKaHtb0427+5bhUzLaSAghtr/afzOKHDwUVBwF2tTUNanR23ipW1fXDg==",
- "requires": {
- "@chakra-ui/close-button": "2.0.9",
- "@chakra-ui/hooks": "2.0.9",
- "@chakra-ui/lazy-utils": "2.0.1",
- "@chakra-ui/popper": "3.0.7",
- "@chakra-ui/react-context": "2.0.3",
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/popover/-/popover-2.1.1.tgz",
+ "integrity": "sha512-j09NsesfT+eaYITkITYJXDlRcPoOeQUM80neJZKOBgul2iHkVsEoii8dwS5Ip5ONeu4ane1b6zEOlYvYj2SrkA==",
+ "requires": {
+ "@chakra-ui/close-button": "2.0.11",
+ "@chakra-ui/lazy-utils": "2.0.2",
+ "@chakra-ui/popper": "3.0.8",
+ "@chakra-ui/react-context": "2.0.4",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-disclosure": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3"
+ "@chakra-ui/react-use-animation-state": "2.0.5",
+ "@chakra-ui/react-use-disclosure": "2.0.5",
+ "@chakra-ui/react-use-focus-effect": "2.0.5",
+ "@chakra-ui/react-use-focus-on-pointer-down": "2.0.3",
+ "@chakra-ui/react-use-merge-refs": "2.0.4"
}
},
"@chakra-ui/popper": {
- "version": "3.0.7",
- "resolved": "https://registry.npmjs.org/@chakra-ui/popper/-/popper-3.0.7.tgz",
- "integrity": "sha512-xLYhuNsk1gOjymtek1ZdZlG21hmg2a7Iu2KsD9Hi7+aUxc2K5/XxX+/vyjjz8u4s0gmj83pTqnauQRynb/TCXA==",
+ "version": "3.0.8",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/popper/-/popper-3.0.8.tgz",
+ "integrity": "sha512-246eUwuCRsLpTPxn5T8D8T9/6ODqmmz6pRRJAjGnLlUB0gNHgjisBn0UDBic5Gbxcg0sqKvxOMY3uurbW5lXTA==",
"requires": {
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
"@popperjs/core": "^2.9.3"
}
},
"@chakra-ui/portal": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/portal/-/portal-2.0.9.tgz",
- "integrity": "sha512-9e9S0MLbkpofPGlyYA12jNYSdndugy6ylPi5pC9nr3/VqG2Kn+8VcBChAeXW8K4ms7WFc74rNX1pBY/UVwr4qg==",
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/portal/-/portal-2.0.10.tgz",
+ "integrity": "sha512-VRYvVAggIuqIZ3IQ6XZ1b5ujjjOUgPk9PPdc9jssUngZa7RG+5NXNhgoM8a5TsXv6aPEolBOlDNWuxzRQ4RSSg==",
"requires": {
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/react-use-safe-layout-effect": "2.0.1"
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/react-use-safe-layout-effect": "2.0.2"
}
},
"@chakra-ui/progress": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/progress/-/progress-2.0.10.tgz",
- "integrity": "sha512-my0Pi3NG1PYhlvCav4fybg3gL5HBNe+7lO4PVdri4QHEyfJlrDeBWID+1GgqlpUWdTj3sOf7ysku+FEgkeOeSA==",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/progress/-/progress-2.0.12.tgz",
+ "integrity": "sha512-9qtZimZosTliI7siAZkLeCVdCpXCTxmSETCudHcCUsC+FtcFacmA65+We8qij1nOIqmsbm+NYU6PP89TU2n4Hg==",
"requires": {
- "@chakra-ui/react-context": "2.0.3"
+ "@chakra-ui/react-context": "2.0.4"
}
},
"@chakra-ui/provider": {
- "version": "2.0.16",
- "resolved": "https://registry.npmjs.org/@chakra-ui/provider/-/provider-2.0.16.tgz",
- "integrity": "sha512-4t/PmjJ7WXPPaPfoYgw8F1/rVtorZuvknugHfOZcOtAPGQmOPotSv28qjKpu/mCvc1GMGV0swMsvCeInYz7g0w==",
+ "version": "2.0.20",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/provider/-/provider-2.0.20.tgz",
+ "integrity": "sha512-mNNfsgm05G4x1VzvHVR9+PNEiuxNnn9xUKDuEwoaO7+IHCMzCRMtPbSJjwmv0xvHUGB9+JChjPpZI5RuHQziJQ==",
"requires": {
- "@chakra-ui/css-reset": "2.0.7",
- "@chakra-ui/portal": "2.0.9",
- "@chakra-ui/react-env": "2.0.9",
- "@chakra-ui/system": "2.2.9",
- "@chakra-ui/utils": "2.0.9"
+ "@chakra-ui/css-reset": "2.0.8",
+ "@chakra-ui/portal": "2.0.10",
+ "@chakra-ui/react-env": "2.0.10",
+ "@chakra-ui/system": "2.3.0",
+ "@chakra-ui/utils": "2.0.11"
}
},
"@chakra-ui/radio": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/radio/-/radio-2.0.10.tgz",
- "integrity": "sha512-LhAWsY22cmb+M/iyhFgkzf2+V9TJmAC77Cd+GbP3M3sxDSEUDtq08KOc3JjoYc3GzeZml3JL1yssbxh+liY3xA==",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/radio/-/radio-2.0.12.tgz",
+ "integrity": "sha512-871hqAGQaufxyUzPP3aautPBIRZQmpi3fw5XPZ6SbY62dV61M4sjcttd46HfCf5SrAonoOADFQLMGQafznjhaA==",
"requires": {
- "@chakra-ui/form-control": "2.0.9",
- "@chakra-ui/react-context": "2.0.3",
+ "@chakra-ui/form-control": "2.0.11",
+ "@chakra-ui/react-context": "2.0.4",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
"@zag-js/focus-visible": "0.1.0"
}
},
"@chakra-ui/react": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react/-/react-2.3.2.tgz",
- "integrity": "sha512-qOcDLbA1x4pnpJPtF4YJ7pZzK/ki6SoQl9Vj7fsR+hJw1lt3y1475NSyYGiA6qgho/8twUgYLhcdrTbQPcmOHg==",
- "requires": {
- "@chakra-ui/accordion": "2.0.12",
- "@chakra-ui/alert": "2.0.9",
- "@chakra-ui/avatar": "2.1.0",
- "@chakra-ui/breadcrumb": "2.0.9",
- "@chakra-ui/button": "2.0.9",
- "@chakra-ui/checkbox": "2.1.8",
- "@chakra-ui/close-button": "2.0.9",
- "@chakra-ui/control-box": "2.0.9",
- "@chakra-ui/counter": "2.0.9",
- "@chakra-ui/css-reset": "2.0.7",
- "@chakra-ui/editable": "2.0.9",
- "@chakra-ui/form-control": "2.0.9",
- "@chakra-ui/hooks": "2.0.9",
- "@chakra-ui/icon": "3.0.9",
- "@chakra-ui/image": "2.0.10",
- "@chakra-ui/input": "2.0.9",
- "@chakra-ui/layout": "2.1.6",
- "@chakra-ui/live-region": "2.0.9",
- "@chakra-ui/media-query": "3.2.5",
- "@chakra-ui/menu": "2.0.13",
- "@chakra-ui/modal": "2.1.7",
- "@chakra-ui/number-input": "2.0.9",
- "@chakra-ui/pin-input": "2.0.12",
- "@chakra-ui/popover": "2.0.9",
- "@chakra-ui/popper": "3.0.7",
- "@chakra-ui/portal": "2.0.9",
- "@chakra-ui/progress": "2.0.10",
- "@chakra-ui/provider": "2.0.16",
- "@chakra-ui/radio": "2.0.10",
- "@chakra-ui/react-env": "2.0.9",
- "@chakra-ui/select": "2.0.10",
- "@chakra-ui/skeleton": "2.0.15",
- "@chakra-ui/slider": "2.0.10",
- "@chakra-ui/spinner": "2.0.9",
- "@chakra-ui/stat": "2.0.9",
- "@chakra-ui/switch": "2.0.11",
- "@chakra-ui/system": "2.2.9",
- "@chakra-ui/table": "2.0.9",
- "@chakra-ui/tabs": "2.1.1",
- "@chakra-ui/tag": "2.0.9",
- "@chakra-ui/textarea": "2.0.10",
- "@chakra-ui/theme": "2.1.11",
- "@chakra-ui/toast": "3.0.10",
- "@chakra-ui/tooltip": "2.0.10",
- "@chakra-ui/transition": "2.0.9",
- "@chakra-ui/utils": "2.0.9",
- "@chakra-ui/visually-hidden": "2.0.9"
+ "version": "2.3.6",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react/-/react-2.3.6.tgz",
+ "integrity": "sha512-xo43UU+yMqRGHZLU4fSgzojeRl5stlIfT+GLbT9CUVEm0HMJCt2m8RsNPBvGOMzANdC+bzwSiOm+MNzQBi9IBQ==",
+ "requires": {
+ "@chakra-ui/accordion": "2.1.2",
+ "@chakra-ui/alert": "2.0.11",
+ "@chakra-ui/avatar": "2.2.0",
+ "@chakra-ui/breadcrumb": "2.1.0",
+ "@chakra-ui/button": "2.0.11",
+ "@chakra-ui/checkbox": "2.2.2",
+ "@chakra-ui/close-button": "2.0.11",
+ "@chakra-ui/control-box": "2.0.10",
+ "@chakra-ui/counter": "2.0.10",
+ "@chakra-ui/css-reset": "2.0.8",
+ "@chakra-ui/editable": "2.0.13",
+ "@chakra-ui/form-control": "2.0.11",
+ "@chakra-ui/hooks": "2.1.0",
+ "@chakra-ui/icon": "3.0.11",
+ "@chakra-ui/image": "2.0.11",
+ "@chakra-ui/input": "2.0.12",
+ "@chakra-ui/layout": "2.1.9",
+ "@chakra-ui/live-region": "2.0.10",
+ "@chakra-ui/media-query": "3.2.7",
+ "@chakra-ui/menu": "2.1.2",
+ "@chakra-ui/modal": "2.2.2",
+ "@chakra-ui/number-input": "2.0.12",
+ "@chakra-ui/pin-input": "2.0.15",
+ "@chakra-ui/popover": "2.1.1",
+ "@chakra-ui/popper": "3.0.8",
+ "@chakra-ui/portal": "2.0.10",
+ "@chakra-ui/progress": "2.0.12",
+ "@chakra-ui/provider": "2.0.20",
+ "@chakra-ui/radio": "2.0.12",
+ "@chakra-ui/react-env": "2.0.10",
+ "@chakra-ui/select": "2.0.12",
+ "@chakra-ui/skeleton": "2.0.17",
+ "@chakra-ui/slider": "2.0.12",
+ "@chakra-ui/spinner": "2.0.10",
+ "@chakra-ui/stat": "2.0.11",
+ "@chakra-ui/styled-system": "2.3.4",
+ "@chakra-ui/switch": "2.0.14",
+ "@chakra-ui/system": "2.3.0",
+ "@chakra-ui/table": "2.0.11",
+ "@chakra-ui/tabs": "2.1.4",
+ "@chakra-ui/tag": "2.0.11",
+ "@chakra-ui/textarea": "2.0.12",
+ "@chakra-ui/theme": "2.1.14",
+ "@chakra-ui/theme-utils": "2.0.1",
+ "@chakra-ui/toast": "4.0.0",
+ "@chakra-ui/tooltip": "2.2.0",
+ "@chakra-ui/transition": "2.0.11",
+ "@chakra-ui/utils": "2.0.11",
+ "@chakra-ui/visually-hidden": "2.0.11"
}
},
"@chakra-ui/react-children-utils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-children-utils/-/react-children-utils-2.0.1.tgz",
- "integrity": "sha512-sEgpuh/vWSt2+W0F49EGYXXUyjmg0lbosjVg6qUKHv9sAyx5tbrOrZ6df/TaMUSAe9m3AUOMGqUIPLpxno0DjA=="
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-children-utils/-/react-children-utils-2.0.3.tgz",
+ "integrity": "sha512-tPQjLEEuAw/DYLRw0cNs/g8tcdhZ3r21Sr9dTAzoyvfk0vbZ24gCXRElltW2GZLiFA63mAidzhPmc+yQF3Wtgg==",
+ "requires": {}
},
"@chakra-ui/react-context": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-context/-/react-context-2.0.3.tgz",
- "integrity": "sha512-KmPq6sb1y05WsOUqXZtBBC4LsNKZIFrp2thTsLBwcuH7lkXZwPMHmJGKa9K980P+SWEgfH2s2PY2z+QrIuqWGg==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-context/-/react-context-2.0.4.tgz",
+ "integrity": "sha512-eBITFkf7fLSiMZrSdhweK4fYr41WUNMEeIEOP2dCWolE7WgKxNYaYleC+iRGY0GeXkFM2KYywUtixjJe29NuVA==",
"requires": {}
},
"@chakra-ui/react-env": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-env/-/react-env-2.0.9.tgz",
- "integrity": "sha512-4AJHNUGBR19hzVyOILYpZZgq8jGrpEcbhvR++CppbvPH7vfPZpoz6L/cBtHxS07YwDtUeBL8yCNiLlTxctV//Q==",
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-env/-/react-env-2.0.10.tgz",
+ "integrity": "sha512-3Yab5EbFcCGYzEsoijy4eA3354Z/JoXyk9chYIuW7Uwd+K6g/R8C0mUSAHeTmfp6Fix9kzDgerO5MWNM87b8cA==",
"requires": {}
},
"@chakra-ui/react-types": {
@@ -12946,311 +13121,331 @@
"requires": {}
},
"@chakra-ui/react-use-animation-state": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-animation-state/-/react-use-animation-state-2.0.3.tgz",
- "integrity": "sha512-sjGgzMMmxurwKDSFhDLpLNn3SWUERI5iAZOOa0pYnyOLGVXMowgIjK6jpZxre1vc3A+unjJk5P4qeiyY+C4uwQ==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-animation-state/-/react-use-animation-state-2.0.5.tgz",
+ "integrity": "sha512-8gZIqZpMS5yTGlC+IqYoSrV13joiAYoeI0YR2t68WuDagcZ459OrjE57+gF04NLxfdV7eUgwqnpuv7IOLbJX/A==",
"requires": {
- "@chakra-ui/dom-utils": "2.0.1",
- "@chakra-ui/react-use-event-listener": "2.0.3"
+ "@chakra-ui/dom-utils": "2.0.3",
+ "@chakra-ui/react-use-event-listener": "2.0.4"
}
},
"@chakra-ui/react-use-callback-ref": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-callback-ref/-/react-use-callback-ref-2.0.3.tgz",
- "integrity": "sha512-kdYlhgnQKWWLNwl3WSv/Oq3+mlnu2p3y4Xc1AqKVHVcBOdQE9lpW3d7ZaOoK2aIXXWq1rocscOiXBUtM0Vqd2A==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-callback-ref/-/react-use-callback-ref-2.0.4.tgz",
+ "integrity": "sha512-he7EQfwMA4mwiDDKvX7cHIJaboCqf7UD3KYHGUcIjsF4dSc2Y8X5Ze4w+hmVZoJWIe4DWUzb3ili2SUm8eTgPg==",
"requires": {}
},
"@chakra-ui/react-use-controllable-state": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-controllable-state/-/react-use-controllable-state-2.0.3.tgz",
- "integrity": "sha512-su8efwCWWnY2LQUU6PEnYwSGJX8kvPSO2KyUKuymx8q3fNWuyhzAZriG/TbeeCxESLp70+wuniUlSGRa4vxylQ==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-controllable-state/-/react-use-controllable-state-2.0.5.tgz",
+ "integrity": "sha512-JrZZpMX24CUyfDuyqDczw9Z9IMvjH8ujETHK0Zu4M0SIsX/q4EqOwwngUFL03I2gx/O38HfSdeX8hMu4zbTAGA==",
"requires": {
- "@chakra-ui/react-use-callback-ref": "2.0.3"
+ "@chakra-ui/react-use-callback-ref": "2.0.4"
}
},
"@chakra-ui/react-use-disclosure": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-disclosure/-/react-use-disclosure-2.0.3.tgz",
- "integrity": "sha512-3IdrzvQZcgjqSx5wTVffInOyhMU+d3ZlIE26JmqejMyN/B+qAs932iKfm0A1mTMPTz38ZnNtuaKazmzyfR1ePg==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-disclosure/-/react-use-disclosure-2.0.5.tgz",
+ "integrity": "sha512-kPLB9oxImASRhAbKfvfc03/lbAJbsXndEVRzd+nvvL+QZm2RRfnel3k6OIkWvGFOXXYOPE2+slLe8ZPwbTGg9g==",
"requires": {
- "@chakra-ui/react-use-callback-ref": "2.0.3"
+ "@chakra-ui/react-use-callback-ref": "2.0.4"
}
},
"@chakra-ui/react-use-event-listener": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-event-listener/-/react-use-event-listener-2.0.3.tgz",
- "integrity": "sha512-m3ZdJjo3QQ1HcQGnehlBTgHaCVewz5fwIRTXVzbZTraVJr4k589Zf87eagW57tT4dyv656lSmdhaFGZ8p5Snww==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-event-listener/-/react-use-event-listener-2.0.4.tgz",
+ "integrity": "sha512-VqmalfKWMO8D21XuZO19WUtcP5xhbHXKzkggApTChZUN02UC5TC4pe0pYbDygoeUuNBhY+9lJKHeS08vYsljRg==",
"requires": {
- "@chakra-ui/react-use-callback-ref": "2.0.3"
+ "@chakra-ui/react-use-callback-ref": "2.0.4"
}
},
"@chakra-ui/react-use-focus-effect": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-focus-effect/-/react-use-focus-effect-2.0.3.tgz",
- "integrity": "sha512-N0rho7P+rH5cn13dbS8GUOye+6RYXAmXhmlS+WW/3lWidGH3HAbMoOVf56UiuSnE1+2or8/U7qRshUryj2H1nA==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-focus-effect/-/react-use-focus-effect-2.0.5.tgz",
+ "integrity": "sha512-sbe1QnsXXfjukM+laxbKnT0UnMpHe/7kTzEPG/BYM6/ZDUUmrC1Nz+8l+3H/52iWIaruikDBdif/Xd37Yvu3Kg==",
"requires": {
- "@chakra-ui/dom-utils": "2.0.1",
- "@chakra-ui/react-use-event-listener": "2.0.3",
- "@chakra-ui/react-use-update-effect": "2.0.3"
+ "@chakra-ui/dom-utils": "2.0.3",
+ "@chakra-ui/react-use-event-listener": "2.0.4",
+ "@chakra-ui/react-use-update-effect": "2.0.4"
}
},
"@chakra-ui/react-use-focus-on-pointer-down": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-focus-on-pointer-down/-/react-use-focus-on-pointer-down-2.0.1.tgz",
- "integrity": "sha512-f0qL2iWvajUo+0jwDZyJpUMJ6J6BH3WjDZE2Rp6cns4pgI6uYuv2gj+FqQ5jnoYdXkeER6lBI56a+aIW/1RYiA==",
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-focus-on-pointer-down/-/react-use-focus-on-pointer-down-2.0.3.tgz",
+ "integrity": "sha512-8cKmpv26JnblexNaekWxEDI7M+MZnJcp1PJUz6lByjfQ1m4YjFr1cdbdhG4moaqzzYs7vTmO/qL8KVq8ZLUwyQ==",
"requires": {
- "@chakra-ui/react-use-event-listener": "2.0.3"
+ "@chakra-ui/react-use-event-listener": "2.0.4"
}
},
"@chakra-ui/react-use-interval": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-interval/-/react-use-interval-2.0.1.tgz",
- "integrity": "sha512-6ZLzKA7Ga894UZcXO3bbGYThlhviiau1oxZ1UcJG5pUXNM9Up7O/4Joq31sL+KcpteCN45vd1etomilsv/blxw==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-interval/-/react-use-interval-2.0.2.tgz",
+ "integrity": "sha512-5U1c0pEB5n0Yri0E4RdFXWx2RVBZBBhD8Uu49dM33jkIguCbIPmZ+YgVry5DDzCHyz4RgDg4yZKOPK0PI8lEUg==",
"requires": {
- "@chakra-ui/react-use-callback-ref": "2.0.3"
+ "@chakra-ui/react-use-callback-ref": "2.0.4"
}
},
+ "@chakra-ui/react-use-latest-ref": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-latest-ref/-/react-use-latest-ref-2.0.2.tgz",
+ "integrity": "sha512-Ra/NMV+DSQ3n0AdKsyIqdgnFzls5UntabtIRfDXLrqmJ4tI0a1tDdop2qop0Ue87AcqD9P1KtQue4KPx7wCElw==",
+ "requires": {}
+ },
"@chakra-ui/react-use-merge-refs": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-merge-refs/-/react-use-merge-refs-2.0.3.tgz",
- "integrity": "sha512-n35BmVbasy5Esa6qxznWmiV3NaRxGpqMpZH0n+X7aXt8VkGAJzRpAVjUmKCLNYyCLpqsQceCmAEK8a5SR6vxqw==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-merge-refs/-/react-use-merge-refs-2.0.4.tgz",
+ "integrity": "sha512-aoWvtE5tDQNaLCiNUI6WV+MA2zVcCLR5mHSCISmowlTXyXOqOU5Fo9ZoUftzrmgCJpDu5x1jfUOivxuHUueb0g==",
"requires": {}
},
"@chakra-ui/react-use-outside-click": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-outside-click/-/react-use-outside-click-2.0.3.tgz",
- "integrity": "sha512-r5OohM8lOuZTz6e3vVHvfm/3sEkd06nUPBNU+r3rWh1I7bR9z5Gia/BOQD6GE4jUTanDkHcH76Pf9qJ45kpibQ==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-outside-click/-/react-use-outside-click-2.0.4.tgz",
+ "integrity": "sha512-uerJKS8dqg2kHs1xozA5vcCqW0UInuwrfCPb+rDWBTpu7aEqxABMw9W3e4gfOABrAjhKz2I0a/bu2i8zbVwdLw==",
"requires": {
- "@chakra-ui/react-use-callback-ref": "2.0.3"
+ "@chakra-ui/react-use-callback-ref": "2.0.4"
}
},
"@chakra-ui/react-use-pan-event": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-pan-event/-/react-use-pan-event-2.0.4.tgz",
- "integrity": "sha512-lcEjngfCgIjE5qZeJiaDx+aJzZPLjbjUmbWumi8pIgWOnDL8Ffjh7AMKW4CddP5OgcRnDDb+7aqJbb55wraboA==",
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-pan-event/-/react-use-pan-event-2.0.5.tgz",
+ "integrity": "sha512-nhE3b85++EEmBD2v6m46TLoA4LehSCZ349P8kvEjw/RC0K6XDOZndaBucIeAlnpEENSSUpczFfMSOLxSHdu0oA==",
"requires": {
- "@chakra-ui/event-utils": "2.0.4",
+ "@chakra-ui/event-utils": "2.0.5",
+ "@chakra-ui/react-use-latest-ref": "2.0.2",
"framesync": "5.3.0"
}
},
"@chakra-ui/react-use-previous": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-previous/-/react-use-previous-2.0.1.tgz",
- "integrity": "sha512-ROi+/puVd8D1QaxBSOcGlJNqV2x02ppSgmXzZZJhM8ryFLZjY9ojV3HhamB2IJ/7SIb1rMSSV1GPedFw7YMCwA==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-previous/-/react-use-previous-2.0.2.tgz",
+ "integrity": "sha512-ap/teLRPKopaHYD80fnf0TR/NpTWHJO5VdKg6sPyF1y5ediYLAzPT1G2OqMCj4QfJsYDctioT142URDYe0Nn7w==",
"requires": {}
},
"@chakra-ui/react-use-safe-layout-effect": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-safe-layout-effect/-/react-use-safe-layout-effect-2.0.1.tgz",
- "integrity": "sha512-H+ZOjkPqv3KBPEoP68JKpQBNdLOI0mwzEiTT397UdvBVCCJ+1/ijWVUT+Ub/pYic60O6xUghy5ORaWqJHhnKDA==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-safe-layout-effect/-/react-use-safe-layout-effect-2.0.2.tgz",
+ "integrity": "sha512-gl5HDq9RVeDJiT8udtpx12KRV8JPLJHDIUX8f/yZcKpXow0C7FFGg5Yy5I9397NQog5ZjKMuOg+AUq9TLJxsyQ==",
"requires": {}
},
"@chakra-ui/react-use-size": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-size/-/react-use-size-2.0.3.tgz",
- "integrity": "sha512-hr4hKepPUmM2paXseSZiOTK2y+ZqnSzYNusDEB01f+cDerFjdN1jSfNJKXpiKF0+hNESXfOPQb3Zt0eDusRdoA==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-size/-/react-use-size-2.0.4.tgz",
+ "integrity": "sha512-W6rgTLuoSC4ovZtqYco8cG+yBadH3bhlg92T5lgpKDakSDr0mXcZdbGx6g0AOkgxXm0V1jWNGO1743wudtF7ew==",
"requires": {
"@zag-js/element-size": "0.1.0"
}
},
"@chakra-ui/react-use-timeout": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-timeout/-/react-use-timeout-2.0.1.tgz",
- "integrity": "sha512-zXh9RH+GciKr8hvaOADHOoHP72B7UZUEymA8CWCV4WEs/9s/PfQJH7X1bwvaj43CcOmfVQg4oODWqCYQM1lSsg==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-timeout/-/react-use-timeout-2.0.2.tgz",
+ "integrity": "sha512-n6zb3OmxtDmRMxYkDgILqKh15aDOa8jNLHBlqHzmlL6mEGNKmMFPW9j/KvpAqSgKjUTDRnnXcpneprTMKy/yrw==",
"requires": {
- "@chakra-ui/react-use-callback-ref": "2.0.3"
+ "@chakra-ui/react-use-callback-ref": "2.0.4"
}
},
"@chakra-ui/react-use-update-effect": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-update-effect/-/react-use-update-effect-2.0.3.tgz",
- "integrity": "sha512-8hkP1o/UUUA49w/R+XyAlPiCjxXTCWCNsHWUOEhAitjJfoCNUjgaNKOD52hT07kc5ACJEcJQHA5327LnwtiIlg==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-use-update-effect/-/react-use-update-effect-2.0.4.tgz",
+ "integrity": "sha512-F/I9LVnGAQyvww+x7tQb47wCwjhMYjpxtM1dTg1U3oCEXY0yF1Ts3NJLUAlsr3nAW6epJIwWx61niC7KWpam1w==",
"requires": {}
},
"@chakra-ui/react-utils": {
- "version": "2.0.6",
- "resolved": "https://registry.npmjs.org/@chakra-ui/react-utils/-/react-utils-2.0.6.tgz",
- "integrity": "sha512-ZL0FPaolovXOxMzYRSLHgBYtvxIkA/c5GTSYpXL8DcC+TBLZnAmQ8BPTS2b6xys6xvwdQjkZRUeQ0cBNFaryJg==",
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/react-utils/-/react-utils-2.0.8.tgz",
+ "integrity": "sha512-OSHHBKZlJWTi2NZcPnBx1PyZvLQY+n5RPBtcri7/89EDdAwz2NdEhp2Dz1yQRctOSCF1kB/rnCYDP1U0oRk9RQ==",
"requires": {
- "@chakra-ui/utils": "2.0.9"
+ "@chakra-ui/utils": "2.0.11"
}
},
"@chakra-ui/select": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/select/-/select-2.0.10.tgz",
- "integrity": "sha512-7AslBWwI/JyczjMMGtPuN34M/C38koVd+N/pb6swHoIP9TRkkdvDlonIakcmtO1oLEzlNIFKmt4FQ7bUp9ea5Q==",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/select/-/select-2.0.12.tgz",
+ "integrity": "sha512-NCDMb0w48GYCHmazVSQ7/ysEpbnri+Up6n+v7yytf6g43TPRkikvK5CsVgLnAEj0lIdCJhWXTcZer5wG5KOEgA==",
"requires": {
- "@chakra-ui/form-control": "2.0.9"
+ "@chakra-ui/form-control": "2.0.11"
}
},
"@chakra-ui/shared-utils": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/shared-utils/-/shared-utils-2.0.1.tgz",
- "integrity": "sha512-NXDBl/u4wrSNp0ON5R3r3evkRurrAz2yuO7neooaG+O5HEenVouGqm4CsXd6lUAPmjwiGzA0LQFNCt0Hj92dXg=="
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/shared-utils/-/shared-utils-2.0.2.tgz",
+ "integrity": "sha512-wC58Fh6wCnFFQyiebVZ0NI7PFW9+Vch0QE6qN7iR+bLseOzQY9miYuzPJ1kMYiFd6QTOmPJkI39M3wHqrPYiOg=="
},
"@chakra-ui/skeleton": {
- "version": "2.0.15",
- "resolved": "https://registry.npmjs.org/@chakra-ui/skeleton/-/skeleton-2.0.15.tgz",
- "integrity": "sha512-QVMkXwrH9jLfim8uJTZcjHeGjzoquNcHGXD5wapd7eDqp9BygvmMXAHBxFm8eEJLHuvIqLX94P6DLeiieYwX7Q==",
+ "version": "2.0.17",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/skeleton/-/skeleton-2.0.17.tgz",
+ "integrity": "sha512-dL7viXEKDEzmAJGbHMj+QbGl9PAd0VWztEcWcz5wOGfmAcJllA0lVh6NmG/yqLb6iXPCX4Y1Y0Yurm459TEYWg==",
"requires": {
- "@chakra-ui/media-query": "3.2.5",
- "@chakra-ui/react-use-previous": "2.0.1"
+ "@chakra-ui/media-query": "3.2.7",
+ "@chakra-ui/react-use-previous": "2.0.2"
}
},
"@chakra-ui/slider": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/slider/-/slider-2.0.10.tgz",
- "integrity": "sha512-F0RGl2ruADbXO/GnoBUiTEl+przxhZo2e0tfw9VTtS+RsJZ22uHrTNVvVJHNmjK7/E3++kBfaLCacoJFz/io+g==",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/slider/-/slider-2.0.12.tgz",
+ "integrity": "sha512-Cna04J7e4+F3tJNb7tRNfPP+koicbDsKJBp+f1NpR32JbRzIfrf2Vdr4hfD5/uOfC4RGxnVInNZzZLGBelLtLw==",
"requires": {
- "@chakra-ui/number-utils": "2.0.3",
- "@chakra-ui/react-context": "2.0.3",
+ "@chakra-ui/number-utils": "2.0.4",
+ "@chakra-ui/react-context": "2.0.4",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-callback-ref": "2.0.3",
- "@chakra-ui/react-use-controllable-state": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/react-use-pan-event": "2.0.4",
- "@chakra-ui/react-use-size": "2.0.3",
- "@chakra-ui/react-use-update-effect": "2.0.3"
+ "@chakra-ui/react-use-callback-ref": "2.0.4",
+ "@chakra-ui/react-use-controllable-state": "2.0.5",
+ "@chakra-ui/react-use-latest-ref": "2.0.2",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/react-use-pan-event": "2.0.5",
+ "@chakra-ui/react-use-size": "2.0.4",
+ "@chakra-ui/react-use-update-effect": "2.0.4"
}
},
"@chakra-ui/spinner": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/spinner/-/spinner-2.0.9.tgz",
- "integrity": "sha512-9ALl51fiVWptDu2J2xcv0TSfGf4buumpHrEXHvV2Qy+HZ6rYnUmSThBSb/VgoQS+rASG8bAbLUPlQTQ+v9ibFg==",
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/spinner/-/spinner-2.0.10.tgz",
+ "integrity": "sha512-SwId1xPaaFAaEYrR9eHkQHAuB66CbxwjWaQonEjeEUSh9ecxkd5WbXlsQSyf2hVRIqXJg0m3HIYblcKUsQt9Rw==",
"requires": {}
},
"@chakra-ui/stat": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/stat/-/stat-2.0.9.tgz",
- "integrity": "sha512-C9cytqegWSGJ/hh3/qwsgGlerXLYHrU0iQcJQ+pKSRFJhshXsv3go5IR6kVL72Yf2s4Gs5c3GsMZrLM22ePpDg==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/stat/-/stat-2.0.11.tgz",
+ "integrity": "sha512-ZPFK2fKufDSHD8bp/KhO3jLgW/b3PzdG4zV+7iTO7OYjxm5pkBfBAeMqfXGx4cl51rtWUKzsY0HV4vLLjcSjHw==",
"requires": {
- "@chakra-ui/icon": "3.0.9",
- "@chakra-ui/react-context": "2.0.3"
+ "@chakra-ui/icon": "3.0.11",
+ "@chakra-ui/react-context": "2.0.4"
}
},
"@chakra-ui/styled-system": {
- "version": "2.3.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/styled-system/-/styled-system-2.3.1.tgz",
- "integrity": "sha512-jyR9s2yk5TEyq4HUfjrgUeaOzd9ZTZrbjK96UjtiTCZGO/q4j2RXtYvfheUjUyW1UnzI2A1ffHOJca8tBMDjpA==",
+ "version": "2.3.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/styled-system/-/styled-system-2.3.4.tgz",
+ "integrity": "sha512-Lozbedu+GBj4EbHB/eGv475SFDLApsIEN9gNKiZJBJAE1HIhHn3Seh1iZQSrHC/Beq+D5cQq3Z+yPn3bXtFU7w==",
"requires": {
"csstype": "^3.0.11",
"lodash.mergewith": "4.6.2"
}
},
"@chakra-ui/switch": {
- "version": "2.0.11",
- "resolved": "https://registry.npmjs.org/@chakra-ui/switch/-/switch-2.0.11.tgz",
- "integrity": "sha512-gY8OGBnoPosZpq7dDNVf432t67pTc/cz5VkGhbtER7bbjXSoXe0DAiAYL+HT2kD7mbTJQzzHK/y0St0WimR1Mw==",
+ "version": "2.0.14",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/switch/-/switch-2.0.14.tgz",
+ "integrity": "sha512-6lzhCkJq7vbD3yGaorGLp0ZZU4ewdKwAu0e62qR8TfYZwbcbpkXbBKloIHbA2XKOduISzS2WYqjmoP6jSKIxrA==",
"requires": {
- "@chakra-ui/checkbox": "2.1.8"
+ "@chakra-ui/checkbox": "2.2.2"
}
},
"@chakra-ui/system": {
- "version": "2.2.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/system/-/system-2.2.9.tgz",
- "integrity": "sha512-SyTeIGm+goyYK8vqX4dU6oeLhxUAeGI3Cl+mxA+aiKIX01YTALhTWhpbrsuMYBevV+l9EGK12egPUQE+Mo3WlQ==",
- "requires": {
- "@chakra-ui/color-mode": "2.1.7",
- "@chakra-ui/react-utils": "2.0.6",
- "@chakra-ui/styled-system": "2.3.1",
- "@chakra-ui/utils": "2.0.9",
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/system/-/system-2.3.0.tgz",
+ "integrity": "sha512-BxikahglBI0uU8FE3anEorDTU5oKTUuBIEKVcQrEVnrbNuRJEy1OVYyCNXfqW3MpruRO9ypYV2bWt02AZZWEaQ==",
+ "requires": {
+ "@chakra-ui/color-mode": "2.1.9",
+ "@chakra-ui/react-utils": "2.0.8",
+ "@chakra-ui/styled-system": "2.3.4",
+ "@chakra-ui/theme-utils": "2.0.1",
+ "@chakra-ui/utils": "2.0.11",
"react-fast-compare": "3.2.0"
}
},
"@chakra-ui/table": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/table/-/table-2.0.9.tgz",
- "integrity": "sha512-XRz6+x4dMeQX3xyViyG2H/P1STI/2vwvgU2cjzzwS+5fZ2JdGaTgYzBb+IZoH9agEq1Ma3rlKMUPDrRCFb7kLQ==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/table/-/table-2.0.11.tgz",
+ "integrity": "sha512-zQTiqPKEgjdeO/PG0FByn0fH4sPF7dLJF+YszrIzDc6wvpD96iY6MYLeV+CSelbH1g0/uibcJ10PSaFStfGUZg==",
"requires": {
- "@chakra-ui/react-context": "2.0.3"
+ "@chakra-ui/react-context": "2.0.4"
}
},
"@chakra-ui/tabs": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/@chakra-ui/tabs/-/tabs-2.1.1.tgz",
- "integrity": "sha512-xA+vwqpAHb0nBLrkiO5Lea2UDGROyAIBqsyp/8XXXEr6eKxtNe1I6WJPbDQy0aazB2ToAA0R6fT34HjLaXP8MQ==",
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/tabs/-/tabs-2.1.4.tgz",
+ "integrity": "sha512-/CQGj1lC9lvruT5BCYZH6Ok64W4CDSysDXuR2XPZXIih9kVOdXQEMXxG8+3vc63WqTBjHuURtZI0g8ouOy84ew==",
"requires": {
- "@chakra-ui/clickable": "2.0.9",
- "@chakra-ui/descendant": "3.0.9",
- "@chakra-ui/lazy-utils": "2.0.1",
- "@chakra-ui/react-children-utils": "2.0.1",
- "@chakra-ui/react-context": "2.0.3",
- "@chakra-ui/react-use-controllable-state": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3",
- "@chakra-ui/react-use-safe-layout-effect": "2.0.1"
+ "@chakra-ui/clickable": "2.0.10",
+ "@chakra-ui/descendant": "3.0.10",
+ "@chakra-ui/lazy-utils": "2.0.2",
+ "@chakra-ui/react-children-utils": "2.0.3",
+ "@chakra-ui/react-context": "2.0.4",
+ "@chakra-ui/react-use-controllable-state": "2.0.5",
+ "@chakra-ui/react-use-merge-refs": "2.0.4",
+ "@chakra-ui/react-use-safe-layout-effect": "2.0.2"
}
},
"@chakra-ui/tag": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/tag/-/tag-2.0.9.tgz",
- "integrity": "sha512-NKARwhsZ04t2vkrdRhNcakEiVtg1q44yUUsDw2Jwdu4idAWQupZGGochQI2Ac4T2MI1b66zQUkaGnm3l1mhTtg==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/tag/-/tag-2.0.11.tgz",
+ "integrity": "sha512-iJJcX+4hl+6Se/8eCRzG+xxDwZfiYgc4Ly/8s93M0uW2GLb+ybbfSE2DjeKSyk3mQVeGzuxGkBfDHH2c2v26ew==",
"requires": {
- "@chakra-ui/icon": "3.0.9",
- "@chakra-ui/react-context": "2.0.3"
+ "@chakra-ui/icon": "3.0.11",
+ "@chakra-ui/react-context": "2.0.4"
}
},
"@chakra-ui/textarea": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/textarea/-/textarea-2.0.10.tgz",
- "integrity": "sha512-HSo0EPsY8XKGA+Af6jTob1oe1T6NKZwgjLmX0binK3MMM9pDTXsUTw8GD0g971lxw9oktVMLK/O9QVAgVAm5mw==",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/textarea/-/textarea-2.0.12.tgz",
+ "integrity": "sha512-msR9YMynRXwZIqR6DgjQ2MogA/cW1syBx/R0v3es+9Zx8zlbuKdoLhYqajHteCup8dUzTeIH2Vs2vAwgq4wu5A==",
"requires": {
- "@chakra-ui/form-control": "2.0.9"
+ "@chakra-ui/form-control": "2.0.11"
}
},
"@chakra-ui/theme": {
- "version": "2.1.11",
- "resolved": "https://registry.npmjs.org/@chakra-ui/theme/-/theme-2.1.11.tgz",
- "integrity": "sha512-gI0NLU6wO/5cRq8gbDHuy24Y/ZhJxN4D/2uucNN9is3h+d58/En5jV3fwzZW8PLiLKW/T2CmbYWEZWV2YkcUVA==",
+ "version": "2.1.14",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/theme/-/theme-2.1.14.tgz",
+ "integrity": "sha512-6EYJCQlrjSjNAJvZmw1un50F8+sQDFsdwu/7UzWe+TeANpKlz4ZcHbh0gkl3PD62lGis+ehITUwqRm8htvDOjw==",
"requires": {
- "@chakra-ui/anatomy": "2.0.6",
- "@chakra-ui/theme-tools": "2.0.11"
+ "@chakra-ui/anatomy": "2.0.7",
+ "@chakra-ui/theme-tools": "2.0.12"
}
},
"@chakra-ui/theme-tools": {
- "version": "2.0.11",
- "resolved": "https://registry.npmjs.org/@chakra-ui/theme-tools/-/theme-tools-2.0.11.tgz",
- "integrity": "sha512-0Juf98bAyOgnBeQ39nMKWqRsOxZDw75BbAB8o0oVyjhYVS1wJh7tFX1ZRV8N/+AN6fuRXEznZPpyUh3J+ZTiRg==",
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/theme-tools/-/theme-tools-2.0.12.tgz",
+ "integrity": "sha512-mnMlKSmXkCjHUJsKWmJbgBTGF2vnLaMLv1ihkBn5eQcCubMQrBLTiMAEFl5pZdzuHItU6QdnLGA10smcXbNl0g==",
"requires": {
- "@chakra-ui/anatomy": "2.0.6",
+ "@chakra-ui/anatomy": "2.0.7",
"@ctrl/tinycolor": "^3.4.0"
}
},
+ "@chakra-ui/theme-utils": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/theme-utils/-/theme-utils-2.0.1.tgz",
+ "integrity": "sha512-NDwzgTPxm+v3PAJlSSU1MORHLMqO9vsRJ+ObELD5wpvE9aEyRziN/AZSoK2oLwCQMPEiU7R99K5ij1E6ptMt7w==",
+ "requires": {
+ "@chakra-ui/styled-system": "2.3.4",
+ "@chakra-ui/theme": "2.1.14",
+ "lodash.mergewith": "4.6.2"
+ }
+ },
"@chakra-ui/toast": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/toast/-/toast-3.0.10.tgz",
- "integrity": "sha512-i/oEtzmarO0hM6fxa55OmA8ZGkZv9b+vIC2xs5kQ/C0rJaC0ycibok8srq2Stjq9309fZNezyzThQp6e9acUYQ==",
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/toast/-/toast-4.0.0.tgz",
+ "integrity": "sha512-abeeloJac5T9WK2IN76fEM5FSRH+erNXln2HqDf5wLBn33avSBXWyTiUL8riVSUqto0lrIn6FuK/MmKo0DH4og==",
"requires": {
- "@chakra-ui/alert": "2.0.9",
- "@chakra-ui/close-button": "2.0.9",
- "@chakra-ui/portal": "2.0.9",
- "@chakra-ui/react-use-timeout": "2.0.1",
- "@chakra-ui/react-use-update-effect": "2.0.3",
- "@chakra-ui/theme": "2.1.11"
+ "@chakra-ui/alert": "2.0.11",
+ "@chakra-ui/close-button": "2.0.11",
+ "@chakra-ui/portal": "2.0.10",
+ "@chakra-ui/react-use-timeout": "2.0.2",
+ "@chakra-ui/react-use-update-effect": "2.0.4",
+ "@chakra-ui/styled-system": "2.3.4",
+ "@chakra-ui/theme": "2.1.14"
}
},
"@chakra-ui/tooltip": {
- "version": "2.0.10",
- "resolved": "https://registry.npmjs.org/@chakra-ui/tooltip/-/tooltip-2.0.10.tgz",
- "integrity": "sha512-pBILBdZoux2K3EW9V6JuyZYUWz2/Y7oYCVO6AwNOesiEBGAONyzoDwFV728EzPEHe9e+YBcKOSZ9tEpDdrzHMA==",
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/tooltip/-/tooltip-2.2.0.tgz",
+ "integrity": "sha512-oB97aQJBW+U3rRIt1ct7NaDRMnbW16JQ5ZBCl3BzN1VJWO3djiNuscpjVdZSceb+FdGSFo+GoDozp1ZwqdfFeQ==",
"requires": {
- "@chakra-ui/popper": "3.0.7",
- "@chakra-ui/portal": "2.0.9",
+ "@chakra-ui/popper": "3.0.8",
+ "@chakra-ui/portal": "2.0.10",
"@chakra-ui/react-types": "2.0.3",
- "@chakra-ui/react-use-disclosure": "2.0.3",
- "@chakra-ui/react-use-event-listener": "2.0.3",
- "@chakra-ui/react-use-merge-refs": "2.0.3"
+ "@chakra-ui/react-use-disclosure": "2.0.5",
+ "@chakra-ui/react-use-event-listener": "2.0.4",
+ "@chakra-ui/react-use-merge-refs": "2.0.4"
}
},
"@chakra-ui/transition": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/transition/-/transition-2.0.9.tgz",
- "integrity": "sha512-cVfKdZl128AEj0LDS8M9dzXao4wmTVj3gRJBnm91Qcg243Pm8OlgIBNbHEwsq/Fps+PsN431BtEGfL4w79wQEA==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/transition/-/transition-2.0.11.tgz",
+ "integrity": "sha512-O0grc162LARPurjz1R+J+zr4AAKsVwN5+gaqLfZLMWg6TpvczJhwEA2fLCNAdkC/gomere390bJsy52xfUacUw==",
"requires": {}
},
"@chakra-ui/utils": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-2.0.9.tgz",
- "integrity": "sha512-7ct5562Jw6pZdtj63XfUkEUXXsCCVqdqIXyLtQ9VgOKtRQWwDxzc8uPI5Zjdw9AleEITZFUH8TNKWn75nm54kQ==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/utils/-/utils-2.0.11.tgz",
+ "integrity": "sha512-4ZQdK6tbOuTrUCsAQBHWo7tw5/Q6pBV93ZbVpats61cSWMFGv32AIQw9/hA4un2zDeSWN9ZMVLNjAY2Dq/KQOA==",
"requires": {
"@types/lodash.mergewith": "4.6.6",
"css-box-model": "1.2.1",
@@ -13259,9 +13454,9 @@
}
},
"@chakra-ui/visually-hidden": {
- "version": "2.0.9",
- "resolved": "https://registry.npmjs.org/@chakra-ui/visually-hidden/-/visually-hidden-2.0.9.tgz",
- "integrity": "sha512-PkNxrRGp9H3bdqEaoo8XGt/AL9UuGRTom0/9XJa+G/Dj8Cy1sDuamOWk3pN/ZQs46RokfK9Uh5LqPY5dwSDweg==",
+ "version": "2.0.11",
+ "resolved": "https://registry.npmjs.org/@chakra-ui/visually-hidden/-/visually-hidden-2.0.11.tgz",
+ "integrity": "sha512-e+5amYvnsmEQdiWH4XMyvrtGTdwz//+48vwj5CsNWWcselzkwqodmciy5rIrT71/SCQDOtmgnL7ZWAUOffxfsQ==",
"requires": {}
},
"@cspotcode/source-map-support": {
@@ -13406,9 +13601,9 @@
"integrity": "sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg=="
},
"@eslint/eslintrc": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.2.tgz",
- "integrity": "sha512-AXYd23w1S/bv3fTs3Lz0vjiYemS08jWkI3hYyS9I1ry+0f+Yjs1wm+sU0BS8qDOPrBIkp4qHYC16I8uVtpLajQ==",
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz",
+ "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==",
"dev": true,
"requires": {
"ajv": "^6.12.4",
@@ -13420,6 +13615,23 @@
"js-yaml": "^4.1.0",
"minimatch": "^3.1.2",
"strip-json-comments": "^3.1.1"
+ },
+ "dependencies": {
+ "globals": {
+ "version": "13.17.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz",
+ "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==",
+ "dev": true,
+ "requires": {
+ "type-fest": "^0.20.2"
+ }
+ },
+ "type-fest": {
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
+ "dev": true
+ }
}
},
"@ethersproject/abi": {
@@ -13631,9 +13843,9 @@
}
},
"@ethersproject/providers": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.7.1.tgz",
- "integrity": "sha512-vZveG/DLyo+wk4Ga1yx6jSEHrLPgmTt+dFv0dv8URpVCRf0jVhalps1jq/emN/oXnMRsC7cQgAF32DcXLL7BPQ==",
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.7.2.tgz",
+ "integrity": "sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==",
"requires": {
"@ethersproject/abstract-provider": "^5.7.0",
"@ethersproject/abstract-signer": "^5.7.0",
@@ -13820,9 +14032,9 @@
}
},
"@humanwhocodes/config-array": {
- "version": "0.10.4",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.4.tgz",
- "integrity": "sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==",
+ "version": "0.10.7",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.7.tgz",
+ "integrity": "sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==",
"dev": true,
"requires": {
"@humanwhocodes/object-schema": "^1.2.1",
@@ -13849,29 +14061,14 @@
"dev": true
},
"@jnwng/walletconnect-solana": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/@jnwng/walletconnect-solana/-/walletconnect-solana-0.1.1.tgz",
- "integrity": "sha512-i84711Ln9XLvKRTfhbv9MjXjKJzog4NVccZGwyGN0z96T+QMJuppX3+eyLdzLyNie/3S2xw7bL87NAAbdUto2g==",
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/@jnwng/walletconnect-solana/-/walletconnect-solana-0.1.4.tgz",
+ "integrity": "sha512-tdVMeH9IlLHV7SxG81oD+HXmYEs/FR8D19BQJpE+7qsus4kO0yn9y/kQ3m6wsdHQr22L5KL10VDIKSWQ+8pyJg==",
"requires": {
"@walletconnect/qrcode-modal": "1.8.0",
- "@walletconnect/sign-client": "2.0.0-rc.2",
- "@walletconnect/utils": "2.0.0-rc.2",
+ "@walletconnect/sign-client": "2.0.0-rc.3",
+ "@walletconnect/utils": "2.0.0-rc.3",
"bs58": "^5.0.0"
- },
- "dependencies": {
- "base-x": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz",
- "integrity": "sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw=="
- },
- "bs58": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz",
- "integrity": "sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==",
- "requires": {
- "base-x": "^4.0.0"
- }
- }
}
},
"@jridgewell/gen-mapping": {
@@ -13901,13 +14098,13 @@
"integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
},
"@jridgewell/trace-mapping": {
- "version": "0.3.15",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz",
- "integrity": "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g==",
+ "version": "0.3.17",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz",
+ "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==",
"peer": true,
"requires": {
- "@jridgewell/resolve-uri": "^3.0.3",
- "@jridgewell/sourcemap-codec": "^1.4.10"
+ "@jridgewell/resolve-uri": "3.1.0",
+ "@jridgewell/sourcemap-codec": "1.4.14"
}
},
"@json-rpc-tools/provider": {
@@ -13919,6 +14116,16 @@
"axios": "^0.21.0",
"safe-json-utils": "^1.1.1",
"ws": "^7.4.0"
+ },
+ "dependencies": {
+ "axios": {
+ "version": "0.21.4",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
+ "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
+ "requires": {
+ "follow-redirects": "^1.14.0"
+ }
+ }
}
},
"@json-rpc-tools/types": {
@@ -13949,9 +14156,9 @@
}
},
"@keystonehq/bc-ur-registry-sol": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/@keystonehq/bc-ur-registry-sol/-/bc-ur-registry-sol-0.3.0.tgz",
- "integrity": "sha512-ldZmD13piImD5UXlt8ZIFq6+7NLWwAczJPbAUKnclP1EAfy5dbm6YWaJy4ozPU7kBgDMVS8RGDfmrZ/fr63hwQ==",
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/@keystonehq/bc-ur-registry-sol/-/bc-ur-registry-sol-0.3.1.tgz",
+ "integrity": "sha512-Okr5hwPxBZxB4EKLK1GSC9vsrh/tFMQ5dvs3EQ9NCOmCn7CXdXIMSeafrpGCHk484Jf5c6X0Wq0yf0VqY2A/8Q==",
"requires": {
"@keystonehq/bc-ur-registry": "^0.5.0",
"bs58check": "^2.1.2",
@@ -13959,9 +14166,9 @@
}
},
"@keystonehq/sdk": {
- "version": "0.13.0",
- "resolved": "https://registry.npmjs.org/@keystonehq/sdk/-/sdk-0.13.0.tgz",
- "integrity": "sha512-oL9q12XWnT76gj0RIyS6tmVwwe5qMpdrzp85uIe8uoTreSMfdhL085e427iNwKI3TpNVp//HmkrghWHD4o7vJQ==",
+ "version": "0.13.1",
+ "resolved": "https://registry.npmjs.org/@keystonehq/sdk/-/sdk-0.13.1.tgz",
+ "integrity": "sha512-545l83TE5t1cyUZUaNqZOAh15ibWOg9QbK/YeLwnrxt+GOod+ATk3j9SpN6yTSLO8DNl2/x6dKRIFVtTEkZDAg==",
"requires": {
"@ngraveio/bc-ur": "^1.0.0",
"qrcode.react": "^1.0.1",
@@ -14026,31 +14233,16 @@
}
},
"@keystonehq/sol-keyring": {
- "version": "0.3.0",
- "resolved": "https://registry.npmjs.org/@keystonehq/sol-keyring/-/sol-keyring-0.3.0.tgz",
- "integrity": "sha512-CKCJFnfPjI6YGON0kP+oYTTH+Rlx6dD06zywphxqR0TquzFMBF52708gg8m8+mzSW9ngMiRlpI/cvRbpWyYx6Q==",
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/@keystonehq/sol-keyring/-/sol-keyring-0.3.1.tgz",
+ "integrity": "sha512-RU6I3HQrQ9NpRDP9TwlBIy5DftVcNcyk0NWfhkPy/YanhMcCB0cRPw68iQl1rMnR6n1G2+YrBHMxm6swCW+B4Q==",
"requires": {
"@keystonehq/bc-ur-registry": "^0.5.0",
- "@keystonehq/bc-ur-registry-sol": "^0.3.0",
- "@keystonehq/sdk": "^0.13.0",
+ "@keystonehq/bc-ur-registry-sol": "^0.3.1",
+ "@keystonehq/sdk": "^0.13.1",
"@solana/web3.js": "^1.36.0",
"bs58": "^5.0.0",
"uuid": "^8.3.2"
- },
- "dependencies": {
- "base-x": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz",
- "integrity": "sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw=="
- },
- "bs58": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz",
- "integrity": "sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==",
- "requires": {
- "base-x": "^4.0.0"
- }
- }
}
},
"@ledgerhq/devices": {
@@ -14065,9 +14257,9 @@
},
"dependencies": {
"semver": {
- "version": "7.3.7",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
- "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+ "version": "7.3.8",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz",
+ "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
"requires": {
"lru-cache": "^6.0.0"
}
@@ -14075,9 +14267,9 @@
}
},
"@ledgerhq/errors": {
- "version": "6.10.2",
- "resolved": "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.10.2.tgz",
- "integrity": "sha512-iMfEJPWaan8QaZw87WMUnFFRJqveE3FpU2ObTE0ydTJLPJNOUJjjurGBklqdWM/j5BIQvpi3byGKFChfNg8CaQ=="
+ "version": "6.11.1",
+ "resolved": "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.11.1.tgz",
+ "integrity": "sha512-HT1PFvNrejcN5z3ba6xikacIdHWMkjBeE9U5FFoGHhaKBKGjC74mnCeEo0/oJunyuVId+9mhGnv6lrBl6Mkqdg=="
},
"@ledgerhq/hw-transport": {
"version": "6.27.1",
@@ -14101,9 +14293,9 @@
}
},
"@ledgerhq/logs": {
- "version": "6.10.0",
- "resolved": "https://registry.npmjs.org/@ledgerhq/logs/-/logs-6.10.0.tgz",
- "integrity": "sha512-lLseUPEhSFUXYTKj6q7s2O3s2vW2ebgA11vMAlKodXGf5AFw4zUoEbTz9CoFOC9jS6xY4Qr8BmRnxP/odT4Uuw=="
+ "version": "6.10.1",
+ "resolved": "https://registry.npmjs.org/@ledgerhq/logs/-/logs-6.10.1.tgz",
+ "integrity": "sha512-z+ILK8Q3y+nfUl43ctCPuR4Y2bIxk/ooCQFwZxhtci1EhAtMDzMAx2W25qx8G1PPL9UUOdnUax19+F0OjXoj4w=="
},
"@metaplex-foundation/beet": {
"version": "0.4.0",
@@ -14124,21 +14316,6 @@
"@solana/web3.js": "^1.56.2",
"bs58": "^5.0.0",
"debug": "^4.3.4"
- },
- "dependencies": {
- "base-x": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz",
- "integrity": "sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw=="
- },
- "bs58": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz",
- "integrity": "sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==",
- "requires": {
- "base-x": "^4.0.0"
- }
- }
}
},
"@metaplex-foundation/cusper": {
@@ -14183,19 +14360,6 @@
"@solana/web3.js": "^1.32.0",
"start-server-and-test": "^1.14.0"
}
- },
- "base-x": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz",
- "integrity": "sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw=="
- },
- "bs58": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz",
- "integrity": "sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==",
- "requires": {
- "base-x": "^4.0.0"
- }
}
}
},
@@ -14224,9 +14388,9 @@
}
},
"@metaplex-foundation/mpl-candy-machine": {
- "version": "4.6.0",
- "resolved": "https://registry.npmjs.org/@metaplex-foundation/mpl-candy-machine/-/mpl-candy-machine-4.6.0.tgz",
- "integrity": "sha512-5H3q78Gum5GgClTx/7VTUZwf7+Nn/m755S/5to/vBD1cEAaIcsGCw3uUwzKauDfCTMjVce7WbfTQf1CS0n3C1A==",
+ "version": "4.7.1",
+ "resolved": "https://registry.npmjs.org/@metaplex-foundation/mpl-candy-machine/-/mpl-candy-machine-4.7.1.tgz",
+ "integrity": "sha512-tBNRAfBE/rYy9pe2aJD4gTFw+pgQ11o3AJjoYGB4+05ow0VjJMSt6kQGzHm2LRPgdLY4diKAq8qHvgsbV5ikNQ==",
"requires": {
"@metaplex-foundation/beet": "^0.4.0",
"@metaplex-foundation/beet-solana": "^0.3.0",
@@ -14242,12 +14406,30 @@
"requires": {
"@solana/web3.js": "^1.35.1",
"bs58": "^4.0.1"
+ },
+ "dependencies": {
+ "base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "requires": {
+ "base-x": "^3.0.2"
+ }
+ }
}
},
"@metaplex-foundation/mpl-token-metadata": {
- "version": "2.3.0",
- "resolved": "https://registry.npmjs.org/@metaplex-foundation/mpl-token-metadata/-/mpl-token-metadata-2.3.0.tgz",
- "integrity": "sha512-LSqG1gME51ShR9Oh5dmVPNyN0gHR8R7XcEhjfBn44qKqa7gJGsqW0+uQTIGY4/ilb8J+DdZ01veHQ7gjMku5HA==",
+ "version": "2.3.3",
+ "resolved": "https://registry.npmjs.org/@metaplex-foundation/mpl-token-metadata/-/mpl-token-metadata-2.3.3.tgz",
+ "integrity": "sha512-BUn95TWj1U9g91WEtn4z4oZdHOnrT7qgwzUaIZ6Im9l9V8G2prNVvQjkoD86WLXjtR0Dgu378Er0A3mVtPmlzg==",
"requires": {
"@metaplex-foundation/beet": "^0.4.0",
"@metaplex-foundation/beet-solana": "^0.3.0",
@@ -14341,22 +14523,6 @@
"dev": true,
"requires": {
"glob": "7.1.7"
- },
- "dependencies": {
- "glob": {
- "version": "7.1.7",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
- "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
- "dev": true,
- "requires": {
- "fs.realpath": "^1.0.0",
- "inflight": "^1.0.4",
- "inherits": "2",
- "minimatch": "^3.0.4",
- "once": "^1.3.0",
- "path-is-absolute": "^1.0.0"
- }
- }
}
},
"@next/swc-android-arm-eabi": {
@@ -14457,9 +14623,9 @@
"integrity": "sha512-Rk4SkJFaXZiznFyC/t77Q0NKS4FL7TLJJsVG2V2oiEq3kJVeTdxysEe/yRWSpnWMe808XRDJ+VFh5pt/FN5plw=="
},
"@noble/hashes": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.2.tgz",
- "integrity": "sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA=="
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.3.tgz",
+ "integrity": "sha512-CE0FCR57H2acVI5UOzIGSSIYxZ6v/HOhDR0Ro9VLyhnzLwx0o8W1mmgaqlEUx4049qJDlIBRztv5k+MM8vbO3A=="
},
"@noble/secp256k1": {
"version": "1.7.0",
@@ -14501,14 +14667,6 @@
"uuid": "^8.3.2"
}
},
- "@particle-network/solana-wallet": {
- "version": "0.5.6",
- "resolved": "https://registry.npmjs.org/@particle-network/solana-wallet/-/solana-wallet-0.5.6.tgz",
- "integrity": "sha512-Ad0hwJsWRCbptp+mmLFsbrERDQbW+QhFQOmWRT8+6gGrY6qNTApwI9+jlpkxOzEI9rvSqFD1qKKMlqy1n+fJNA==",
- "requires": {
- "@particle-network/auth": "^0.5.5"
- }
- },
"@pedrouid/environment": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@pedrouid/environment/-/environment-1.0.1.tgz",
@@ -14526,6 +14684,24 @@
"requires": {
"bs58": "^4.0.1",
"eventemitter3": "^4.0.7"
+ },
+ "dependencies": {
+ "base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "requires": {
+ "base-x": "^3.0.2"
+ }
+ }
}
},
"@randlabs/communication-bridge": {
@@ -14542,9 +14718,9 @@
}
},
"@rushstack/eslint-patch": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.1.4.tgz",
- "integrity": "sha512-LwzQKA4vzIct1zNZzBmRKI9QuNpLgTQMEjsQLf3BXuGYb3QPTP4Yjf6mkdX+X1mYttZ808QpOwAzZjv28kq7DA==",
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz",
+ "integrity": "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==",
"dev": true
},
"@sideway/address": {
@@ -14600,109 +14776,127 @@
}
},
"@solana/wallet-adapter-alpha": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-alpha/-/wallet-adapter-alpha-0.1.3.tgz",
- "integrity": "sha512-LFMT4bD6ZQru28If8G5oMy7pau+7ratEbzPgRTsT6zu9EhhnZDws8S6/xW6nYecPruJINy7I/00+DXwLkd/TBg==",
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-alpha/-/wallet-adapter-alpha-0.1.5.tgz",
+ "integrity": "sha512-DyleMqm9ePVkYShTVfvzDTx/Xapzf1cEn0ckyBHX6R2jE9RKYMLsS51kC3MOE8uzA3AA/jlP67clw2vdvtStbg==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-avana": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-avana/-/wallet-adapter-avana-0.1.7.tgz",
- "integrity": "sha512-dAMb3QUtj/IOcW6/D2s2TFXAm65LrUeDSKrz5Hq33o7Cqom4cZJHwbejjlNKL52x3BGVZesZMRO/Qrz67adiwA==",
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-avana/-/wallet-adapter-avana-0.1.8.tgz",
+ "integrity": "sha512-n1b/DbEUzWog9Iz4+Kjki9bMtqycsgqKFNKIdrRqq7iDpv5HxMM6xlFMiCIL8dUi5H1yUX2uWOdebZC2S0y6pA==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-backpack": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-backpack/-/wallet-adapter-backpack-0.1.7.tgz",
- "integrity": "sha512-kyDQkm8S+SLI0ZRU8EyveA9Ov+kP9e9seHcxXMS6c8N0kaBJ/4Fgelxd3HVSHJf2ONMCtluAmBLHfLLfFEHm5A==",
+ "version": "0.1.9",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-backpack/-/wallet-adapter-backpack-0.1.9.tgz",
+ "integrity": "sha512-Xg+g/uiHyXAlUEy6CfKhIgqje9LVrA6/RjbpyqycMZg02wmuzS0+OoewdEznCNtzhOfAns54Wxms5lDJZA8Z+w==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-base": {
- "version": "0.9.17",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-base/-/wallet-adapter-base-0.9.17.tgz",
- "integrity": "sha512-YEkO04QndfRXb6psznMuRsw2YBHqVGxmuJgQskCHp2DAkHWPDNbKlv+Q4mOD2gfkUNHUMP8sTnwORhsIR3fQjQ==",
+ "version": "0.9.18",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-base/-/wallet-adapter-base-0.9.18.tgz",
+ "integrity": "sha512-5HQFytLmb64j1Nzc6dwddZx+IUePN/PYqVMyf/ok7fN3z8Vw3EIFS8b+RFfBpj4HWbc2kqv5fpnLlaAH7q67pA==",
"requires": {
"eventemitter3": "^4.0.0"
}
},
"@solana/wallet-adapter-bitkeep": {
- "version": "0.3.13",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-bitkeep/-/wallet-adapter-bitkeep-0.3.13.tgz",
- "integrity": "sha512-52+UMgPWTOnK97V1Ys3YJ4/muqdhJtaCZph5s71bXijL86Vm+/5UNT2qhAnenS2dqXHQ5sMJ5w6wiW6FCA9QyA==",
+ "version": "0.3.14",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-bitkeep/-/wallet-adapter-bitkeep-0.3.14.tgz",
+ "integrity": "sha512-qcufDj88fcoiDNtzno5Xzhi4JYQX7DiV4X9EyIcWBAKhdllmp9HKlZSIEfJ5xBV65qsPGvXzPr0mqaVq35eQig==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-bitpie": {
- "version": "0.5.12",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-bitpie/-/wallet-adapter-bitpie-0.5.12.tgz",
- "integrity": "sha512-mlZp3ZNJrGrWp9+S2SJ+jM4SATXQLW5Mjz9TgAD1jYmM0Esv4uyuY4cdUpkB1lhjoCAQ9gRazfQcLo+4bxgH7g==",
+ "version": "0.5.13",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-bitpie/-/wallet-adapter-bitpie-0.5.13.tgz",
+ "integrity": "sha512-6/VFnwk0ElWc9gfyU21xzgJzKlgs2Fki9PW4ssU3IfPVlaw0aoElBFzL3WPUJfD18ltGeSOeYBWQ+qFUuj2MsA==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-blocto": {
- "version": "0.5.16",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-blocto/-/wallet-adapter-blocto-0.5.16.tgz",
- "integrity": "sha512-kZ/KpvfhtKG0HuKiGIbmvRJshfVtEFEBjbzc6YvRm0XEmm9MhdGMeUMdWEbJyn4Jy2L3/GdkBSXa+pSFg514kQ==",
+ "version": "0.5.17",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-blocto/-/wallet-adapter-blocto-0.5.17.tgz",
+ "integrity": "sha512-l5CXmwlqc4P276CJMyFj/vjNiR3pWqqf4OXIHKcB7h+NA+KqZaaisBWLTHQ6dpFl+LGx72voAd6PcAiIdLk0YQ==",
"requires": {
"@blocto/sdk": "^0.2.21",
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-brave": {
- "version": "0.1.11",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-brave/-/wallet-adapter-brave-0.1.11.tgz",
- "integrity": "sha512-j9ukING7K+svHNvhBk1yrACICgCSQTHLpqgatdvSmWfp+2dxDNZ9TjKWabstte1dVuKspk0s9vnO/977Hwlo9w==",
+ "version": "0.1.12",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-brave/-/wallet-adapter-brave-0.1.12.tgz",
+ "integrity": "sha512-SieX4YoJ1aEBKoJ2G9suljzQWtJew8TMtB2Fy107alQMYw560nxmyMMGSAh0Qx+QcHr5Tr1/KIgVugPErvHOlA==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-clover": {
- "version": "0.4.13",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-clover/-/wallet-adapter-clover-0.4.13.tgz",
- "integrity": "sha512-HYNR+Xt7xO2DDiOMhIjseNBORE7TLVFLjbymnXFHeoLb/I3ioejcjqWyYxtqwfIoFphZaguYrmI1ay6W8P0GEA==",
+ "version": "0.4.14",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-clover/-/wallet-adapter-clover-0.4.14.tgz",
+ "integrity": "sha512-kqBfUJFl8dV7KsAjruyt+//h8s0S3sZTAT6PUAvIqRZN6wQHuchr/vF9WTgsMm/79xUW7jQPB6I40KfwnpZZnw==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-coin98": {
- "version": "0.5.14",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-coin98/-/wallet-adapter-coin98-0.5.14.tgz",
- "integrity": "sha512-fO3g8I/6W9cgCt8DlXT4gqvDgGWZedDfSF/5Q42Q4rRfSFLbWnDd9uKYD5ohy6nTwRRBQNhlTnM31YtOFGtSZQ==",
+ "version": "0.5.15",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-coin98/-/wallet-adapter-coin98-0.5.15.tgz",
+ "integrity": "sha512-x4LofKB+ZPVqk8YuFMVJ2KUvvxLq79zNMA0/nEBZ38iNkMahvSZAk+P7YUdOhctKOooozypXL6cHt17WkeYQUQ==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17",
+ "@solana/wallet-adapter-base": "^0.9.18",
"bs58": "^4.0.1"
+ },
+ "dependencies": {
+ "base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "requires": {
+ "base-x": "^3.0.2"
+ }
+ }
}
},
"@solana/wallet-adapter-coinbase": {
- "version": "0.1.12",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-coinbase/-/wallet-adapter-coinbase-0.1.12.tgz",
- "integrity": "sha512-x8Ous/8A7WaEJApozhkh2/ywkaWHfquY3Wl2ivmQsVOzs6wE5rVqG0/6B/nlkYOVEZn5t0lCW9xhCAhdt6DWVw==",
+ "version": "0.1.13",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-coinbase/-/wallet-adapter-coinbase-0.1.13.tgz",
+ "integrity": "sha512-TUGVhoDvcWX20A8B81b0+NbdtThKeS23rxgRltPdbxbrbne20Pb+RRRpqCg0FX0bAJqDAujEOHPrctLdqHSVxQ==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-coinhub": {
- "version": "0.3.12",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-coinhub/-/wallet-adapter-coinhub-0.3.12.tgz",
- "integrity": "sha512-EclKlfLqeAFpXgl4Kd78cyu227bjh868yYmGezL3zPvur/Nr9C/BC62HpfjHWyyBynAiUS5UYoNCHfCByaS8Qw==",
+ "version": "0.3.13",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-coinhub/-/wallet-adapter-coinhub-0.3.13.tgz",
+ "integrity": "sha512-wVRx8U5LfARfqqKVig5nmm6Q9oSCqYSs1bnu8Z5e4Feoi0LY3F/K+d/i9LSArjDwheN6tgeDAQ6P1ujYvaRDfg==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-exodus": {
- "version": "0.1.12",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-exodus/-/wallet-adapter-exodus-0.1.12.tgz",
- "integrity": "sha512-mTBJpQVohih+pIT8RDAnQxBBUIp8osAfhNtPrl8nLm8dGygK4keUtajql+0xtWh7AH481I0RhcLbq8WCvkhcpQ==",
+ "version": "0.1.13",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-exodus/-/wallet-adapter-exodus-0.1.13.tgz",
+ "integrity": "sha512-171n1A9GxnFs9CNuGVYlKzd9NMoAfvzXRfF0WeyUbvbMg5XVGTV1bq9b6N076WnJUubtaiwIIlVJF04++g6hQA==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-fake": {
@@ -14714,247 +14908,293 @@
}
},
"@solana/wallet-adapter-glow": {
- "version": "0.1.12",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-glow/-/wallet-adapter-glow-0.1.12.tgz",
- "integrity": "sha512-PKC/z80ErpwshEyabNOWzfSrtIm0kbn6SgOKYL7JPtWpQPl0KJsaAOZkju51YszGBunLVjtTF478Rs4v/ZYfgA==",
+ "version": "0.1.13",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-glow/-/wallet-adapter-glow-0.1.13.tgz",
+ "integrity": "sha512-xvXcYtSV+7oLCG+NcBvK/cn4bEaxXAo1wTf3ycK9jbeGlLQJOZxSk4XBTzTInJ9Ga6UO9uZTqE+JZ60CWPRrug==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-huobi": {
- "version": "0.1.9",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-huobi/-/wallet-adapter-huobi-0.1.9.tgz",
- "integrity": "sha512-fzyH4IC8FQ3pIjRJ878SWb1lIb2WSNtr7AcDen6qx2dg4kO//WGKv/U6JmD+9Q6BHbo4lFvyGN1NziffwqQDUw==",
+ "version": "0.1.10",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-huobi/-/wallet-adapter-huobi-0.1.10.tgz",
+ "integrity": "sha512-quELQigB5B14ITps6yAxKUOCvY17HtlrnOsOjrzB5KwtAuPbCA46AIruocv3u+ATyultiTDq6PUQUnAlW5IrWw==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-hyperpay": {
- "version": "0.1.8",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-hyperpay/-/wallet-adapter-hyperpay-0.1.8.tgz",
- "integrity": "sha512-yL8QxnL1LnOEdU8lLwqQ3goYNbyS8zvI+9bU0uChaakjbAyqTfaoUKRZTT+Cnb8i/08zHFmwuR7/P1usz/NSWQ==",
+ "version": "0.1.9",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-hyperpay/-/wallet-adapter-hyperpay-0.1.9.tgz",
+ "integrity": "sha512-ebeTAaSxjAK32wBOhfbR8dxoccMqxCsLNWEvy1J8NV0lBtm7jeYe2Vr6JzgjLZ/PiMpEzmdAOUMqzZohOvuuCg==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-keystone": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-keystone/-/wallet-adapter-keystone-0.1.6.tgz",
- "integrity": "sha512-cdIS0cK5joaVW+4/Q1cnt5FKfCDpz0NILXaQP9CZYqgMBdnVFalK1zEhxNedivZr6thm3G4QrjTcsQFwcMJ4RQ==",
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-keystone/-/wallet-adapter-keystone-0.1.7.tgz",
+ "integrity": "sha512-Q6Eb+f0IxS58CU3TSfchKbHTrmL3eBiT70pNb2dmJCo8jeboVvKIunjZnF8eIPafxEZHHonVby0e3tNcTUxpcQ==",
"requires": {
"@keystonehq/sol-keyring": "^0.3.0",
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-krystal": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-krystal/-/wallet-adapter-krystal-0.1.6.tgz",
- "integrity": "sha512-1DHa2kjPamKTVrkVqiWJjTi9X2sBYN1bJ4CsReQLBSHwpmqvDmx427oZ2FpRvfTIoXsM+IkLIwAPo3F281G2MQ==",
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-krystal/-/wallet-adapter-krystal-0.1.7.tgz",
+ "integrity": "sha512-qbNjm5tXg2YU4KTfAYx0TS9h5ZC/NzhXSMaQBKZkc9qg0vZwfuPJhMQlt6+teCoeBveB5fpXfw6Wap4ExfarYQ==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-ledger": {
- "version": "0.9.19",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-ledger/-/wallet-adapter-ledger-0.9.19.tgz",
- "integrity": "sha512-qXsratrPjNXM6p7IuOM+6p3A7ChE9G3qHq/EQfKK1cRYaOlqwbYDCJ8EEGKYLHtZVHwkKGguarrnT8BzS+ikng==",
+ "version": "0.9.20",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-ledger/-/wallet-adapter-ledger-0.9.20.tgz",
+ "integrity": "sha512-puPGyVxf1z0oPxCdXhifzKhIiHUCwnUGC8rrQhoUGnyIDWN8lu/vuKA/m39z0kvA1Jw9NUcksVSTfAImUqUTiA==",
"requires": {
"@ledgerhq/devices": "6.27.1",
"@ledgerhq/hw-transport": "6.27.1",
"@ledgerhq/hw-transport-webhid": "6.27.1",
- "@solana/wallet-adapter-base": "^0.9.17",
+ "@solana/wallet-adapter-base": "^0.9.18",
"buffer": "^6.0.3"
}
},
"@solana/wallet-adapter-magiceden": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-magiceden/-/wallet-adapter-magiceden-0.1.7.tgz",
- "integrity": "sha512-/vh3X49pv1BRXbbKMwxbRozl2RF0u0Bi3hoZiUzX8nuzNQ3tDtSkRv+v86MX3FCensBIcbPdBg93xINLP/dZXw==",
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-magiceden/-/wallet-adapter-magiceden-0.1.8.tgz",
+ "integrity": "sha512-3vbPAjzVMV71I8LOW3L2WnN9UE2EAg0rQzAJjQkidvogna7Kxg5MWl0GKBzDnQmv803zZYASuHzBuEBSV2si1A==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-mathwallet": {
- "version": "0.9.12",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-mathwallet/-/wallet-adapter-mathwallet-0.9.12.tgz",
- "integrity": "sha512-DI4AnXoJwvN0Q5NF7Vn0fSwvhdZthB/mh1X7twwrqOsqSzZmHexzm/K5Gv0/YhX7oO9D2h7jMFhLvW7sTbdO9w==",
+ "version": "0.9.13",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-mathwallet/-/wallet-adapter-mathwallet-0.9.13.tgz",
+ "integrity": "sha512-3l6OXeESBbqC2HvUm21Ep7TcQppALhEVo0mDo5JzGC93r5u61hkQgmlO6Z/hOJHAWgMNlXLa9+9kPAHSieOUNg==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-neko": {
- "version": "0.2.6",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-neko/-/wallet-adapter-neko-0.2.6.tgz",
- "integrity": "sha512-RtFaEAkIIyZwHSczcaHrbiFRzopNSOu+MphXmRoKLIiwitJNLXtYMxc2SaW2aaMzBhrM8gChbwe647pTm1y1Fg==",
+ "version": "0.2.7",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-neko/-/wallet-adapter-neko-0.2.7.tgz",
+ "integrity": "sha512-HQaLWLX4xqszA7T8WOCGVi6u+kmrOH/2ttSCMiJ7JS+E2XKcVHMKSP37kaFvfVErNINyxJq4ulfFgPmb/SWCZw==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-nightly": {
- "version": "0.1.9",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-nightly/-/wallet-adapter-nightly-0.1.9.tgz",
- "integrity": "sha512-OD1PXU6Y0BM3eVsH6vLfHGl22ZvmJGslKtaig7MyjSbZvws4NMub3zWlgaLQGK3xjvIN58mM64DDj7tO/xoB2Q==",
+ "version": "0.1.10",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-nightly/-/wallet-adapter-nightly-0.1.10.tgz",
+ "integrity": "sha512-ubTiX957PJt+Fb8MzHMkg3TGC4LCg2eYKv+qxTTKpW7CQ1opAWktktsZeJqstUuqjyoYebevqlMGMtQwe3gEjw==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-nufi": {
- "version": "0.1.10",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-nufi/-/wallet-adapter-nufi-0.1.10.tgz",
- "integrity": "sha512-Zstr82980KCqsfPgXyXuE2kQh7OH4HR8hjLd1Yo3SBfG8LPM3LzIsGD8me1toNHR2T47n1sznjxHPjkjRrIG2A==",
+ "version": "0.1.11",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-nufi/-/wallet-adapter-nufi-0.1.11.tgz",
+ "integrity": "sha512-PY9c7xIxVPmlq4lcwg8rdoYFPH0iLzaQ90X3vx/ZzP57FimI+jYhXwh2i/XO2AnNnn6G2USxTbmclBPIIUkC7A==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-onto": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-onto/-/wallet-adapter-onto-0.1.1.tgz",
- "integrity": "sha512-DoXMa/B/2PLZhlLnDRB1gZLc6q0nXny+2w6/T7D6Sz199FMq1rfbpy1tRLnf6Cug586rL5ofX8jJiBKy41o/Pw==",
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-onto/-/wallet-adapter-onto-0.1.2.tgz",
+ "integrity": "sha512-nky71wE2lObFVio9NNaYajeCCCzD19V4t/7VDvVUU5lv/hpu37qq88p5efjMmNpyrrsWqJu1GJrCuYqLi4xyfQ==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-particle": {
- "version": "0.1.4",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-particle/-/wallet-adapter-particle-0.1.4.tgz",
- "integrity": "sha512-vE/zQJo2pLmCaP25q2NCYq89HOk4MzVpdPsGKNi91KT4EOfPskWSvtl5al33XX7ZsjSHJQLUmWFqsXQTuXUvnA==",
+ "version": "0.1.5",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-particle/-/wallet-adapter-particle-0.1.5.tgz",
+ "integrity": "sha512-BisV2yPu33u0aDpjwpCHB5DQiLJuge2kJJAfpQdk5yBRiXQRHn/3GwsN4Te9bjaYdAQBQw0UTAp/ajcD9h9BNA==",
"requires": {
"@particle-network/solana-wallet": "^0.5.0",
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
+ },
+ "dependencies": {
+ "@particle-network/solana-wallet": {
+ "version": "0.5.6",
+ "resolved": "https://registry.npmjs.org/@particle-network/solana-wallet/-/solana-wallet-0.5.6.tgz",
+ "integrity": "sha512-Ad0hwJsWRCbptp+mmLFsbrERDQbW+QhFQOmWRT8+6gGrY6qNTApwI9+jlpkxOzEI9rvSqFD1qKKMlqy1n+fJNA==",
+ "requires": {
+ "@particle-network/auth": "^0.5.5"
+ }
+ },
+ "base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "peer": true,
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "peer": true,
+ "requires": {
+ "base-x": "^3.0.2"
+ }
+ }
}
},
"@solana/wallet-adapter-phantom": {
- "version": "0.9.16",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-phantom/-/wallet-adapter-phantom-0.9.16.tgz",
- "integrity": "sha512-AJmTmiE74G08XhPWfwJegP2mgLMLFSnvr/NfSS6ScMskHfTg01BEGApGwGdic2gKUgPRInDQgqgCToCOIxnsRA==",
+ "version": "0.9.17",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-phantom/-/wallet-adapter-phantom-0.9.17.tgz",
+ "integrity": "sha512-NgqObD9G2SojkKaLEz7RPC0izS0qPzHa94Da4le3xMErW7SKIEKjVfQ3fP/rIcD2jEwGW5qf9YqYPsPw8jaJ0Q==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-react": {
- "version": "0.15.19",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-react/-/wallet-adapter-react-0.15.19.tgz",
- "integrity": "sha512-8MEiirK1Fp7apMGFQU6OMZBvppjHwr0uwzE3iYDlG7gPkMPVVR0pruy2oeexSN0fw+S7gnorZJehgOGbptyHHA==",
+ "version": "0.15.20",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-react/-/wallet-adapter-react-0.15.20.tgz",
+ "integrity": "sha512-lltCm44QdYuCeCdR60flu5KJyTz/K3TC9H9BB0MJdmUZwgZop8yejO351ISYJUZxqBuFdwuTtK1psjf/12jRiA==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-react-ui": {
- "version": "0.9.17",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-react-ui/-/wallet-adapter-react-ui-0.9.17.tgz",
- "integrity": "sha512-KAbxH4MFc/rD/X/ts6jQ+IXeOS9SDXXI4eUkZgkE4wwsn368ssTlGU+PjOIAWmD0y1sn1MoUb9qfheyUTqHHmg==",
+ "version": "0.9.18",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-react-ui/-/wallet-adapter-react-ui-0.9.18.tgz",
+ "integrity": "sha512-nJc42WgV7o/nkXVrZOwlSu277HXtec9vSHF5P1/9n/R2lCS2hRftnn/9/lNKy1rhhBhV5xq+Cr+fPGh0tyVhsw==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17",
- "@solana/wallet-adapter-react": "^0.15.19"
+ "@solana/wallet-adapter-base": "^0.9.18",
+ "@solana/wallet-adapter-react": "^0.15.20"
}
},
"@solana/wallet-adapter-safepal": {
- "version": "0.5.12",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-safepal/-/wallet-adapter-safepal-0.5.12.tgz",
- "integrity": "sha512-XBad22a2lR04d95uY0CWiZvJKFOA7DIjs1y8NwGN1WGdoCmBbOMGN4NTwWAyr/HOLmmWtu6BTfGBHHLbklh+9w==",
+ "version": "0.5.13",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-safepal/-/wallet-adapter-safepal-0.5.13.tgz",
+ "integrity": "sha512-TBnJDQKEQZ9E/8xXyHrhOKflz9iUOwRoiQTTtbMHYyOdBVeKUjzyPjZ2fZNFZSMUMmqDDOjQZPJIqFxItrHVkA==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-saifu": {
- "version": "0.1.9",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-saifu/-/wallet-adapter-saifu-0.1.9.tgz",
- "integrity": "sha512-vHfWXhy1Z913N1m+H+ImIgDARGvl6IvzLO4VF4Nvs68xhLpwyaftzfO2uY4lu12lqnHWBLmYQInHt3QZaB+v6A==",
+ "version": "0.1.10",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-saifu/-/wallet-adapter-saifu-0.1.10.tgz",
+ "integrity": "sha512-DbLdxbBv1dbQXOZbXJhpyDNHd3fdzxeseEvi6VO0XATWTQ5oqCaNXSmRye4U01wM2Oexd9rm/2DvxezPtQivQQ==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-salmon": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-salmon/-/wallet-adapter-salmon-0.1.6.tgz",
- "integrity": "sha512-6VXSSn6dEuwlN1e2NJnJpz7QHG75qB1pPG/WvQ6F/uhjgzZS8CwjE/AUzdjjsHBghLj8ZrstdP6jsxxiYjBixA==",
+ "version": "0.1.9",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-salmon/-/wallet-adapter-salmon-0.1.9.tgz",
+ "integrity": "sha512-jmLek/7Cjwqwhxs+dihuzyrYXdU2JPrqjK6cHlSkjYfzO3oLDRR2UavTrgbniyZY8FQhyRl9p+VZUpQX+XfPVw==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17",
- "salmon-adapter-sdk": "^1.0.0"
+ "@solana/wallet-adapter-base": "^0.9.18",
+ "salmon-adapter-sdk": "^1.1.0"
}
},
"@solana/wallet-adapter-sky": {
- "version": "0.1.9",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-sky/-/wallet-adapter-sky-0.1.9.tgz",
- "integrity": "sha512-cp6JP4nAJqz/Z3aAKvFRgVhY5II+s/+4beTQxbepQL2MlXxSv1Y6ogJdncLW9KHs8ag4cMhIgGqJsMNuO9Vodw==",
+ "version": "0.1.10",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-sky/-/wallet-adapter-sky-0.1.10.tgz",
+ "integrity": "sha512-4QJOr3NE7o732zq4Ov4+YSX37QLR39+2zJ6t4wAAhFO7LJtkDZneq768zjg7W/DgQPAg1+Cqh0LP5ZA96E4bQA==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-slope": {
- "version": "0.5.15",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-slope/-/wallet-adapter-slope-0.5.15.tgz",
- "integrity": "sha512-AckJ2pwrkESQkIHQCqUEiRy5sBD1L2QKiw2ojsSzCtwTp1FDeb+tJ3v0vGe7fAtVchV7qHUJu+e6azXREddggw==",
+ "version": "0.5.16",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-slope/-/wallet-adapter-slope-0.5.16.tgz",
+ "integrity": "sha512-0bZMcB9aMX4Kl2FWH7lj8HIPY5ph1LgOWl8wFCs/X+A4LyGmKqr2oKoc+kzRUqaVsIjF5CfQ0PePp/Aa4n1DmQ==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17",
+ "@solana/wallet-adapter-base": "^0.9.18",
"bs58": "^4.0.1"
+ },
+ "dependencies": {
+ "base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "requires": {
+ "base-x": "^3.0.2"
+ }
+ }
}
},
"@solana/wallet-adapter-solflare": {
- "version": "0.6.16",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-solflare/-/wallet-adapter-solflare-0.6.16.tgz",
- "integrity": "sha512-qvonqMq6QpzNhwFAPQ8U1x1dm+3BkDVFl3WG2AYjkCxOKetuZjV+e+IB3lSa5SEYqP/eH4EynRBwNf+a0YRrvg==",
+ "version": "0.6.18",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-solflare/-/wallet-adapter-solflare-0.6.18.tgz",
+ "integrity": "sha512-LF6V2MgM5+d3zuVioG4ZkpPIVXRHXXysjWfIhqpRW3n0lPFLQMk7agTnEgQU9tHy0WZiLvN6SYZamPK9dGfT0A==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17",
- "@solflare-wallet/sdk": "^1.0.11"
+ "@solana/wallet-adapter-base": "^0.9.18",
+ "@solflare-wallet/sdk": "^1.1.0"
}
},
"@solana/wallet-adapter-sollet": {
- "version": "0.11.11",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-sollet/-/wallet-adapter-sollet-0.11.11.tgz",
- "integrity": "sha512-LgMVr5+jm101mxEUn+aZN2c5m1iO/n4LFpuKDehJHXWu7e8Y8SCLDdoGjTwEVv0d/2q9bxAyiwGWi1md+IpUnw==",
+ "version": "0.11.12",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-sollet/-/wallet-adapter-sollet-0.11.12.tgz",
+ "integrity": "sha512-rXTPS28ZRHdErcWiNhadoumcQb3H544wmmWccsARgO4PW1eG/37hp9LIQjFT3c7uBjWPM3rVFfklbmlHQOrVmA==",
"requires": {
"@project-serum/sol-wallet-adapter": "^0.2.6",
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-solong": {
- "version": "0.9.12",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-solong/-/wallet-adapter-solong-0.9.12.tgz",
- "integrity": "sha512-e96hGEh1NW7Pr4dkLGeqOUSQpH/a4Lz6nkKwpyo88CtttZKF/zfttthB3Z525u9SR5lFBSaUEYhNT5hsh/kSbg==",
+ "version": "0.9.13",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-solong/-/wallet-adapter-solong-0.9.13.tgz",
+ "integrity": "sha512-zOwv6+bnKbyUB9TAgtq826WX4XtxTYq5ak83X2GboAuDsPlyYhGhQKiq7ZndKq5Wqd7cCwLRNV95n6YaAfavWw==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-spot": {
- "version": "0.1.9",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-spot/-/wallet-adapter-spot-0.1.9.tgz",
- "integrity": "sha512-P3N5yPgs3n9EACQkrT+X4xTPRlkscHaZi6dbijEy3dVWkPJDqme3iff5f4aCBFkSrrQAuf/NF4Fc+2MjmyYGFA==",
+ "version": "0.1.10",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-spot/-/wallet-adapter-spot-0.1.10.tgz",
+ "integrity": "sha512-f+BbIbvKR/1VeD/5SNcb86XDgTJ+w0md0t2VvnmPqndNKaHtSEkRBYhcggF4Y9lUQHqIDJ8CYdBzA5dkOL+Vng==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-strike": {
- "version": "0.1.5",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-strike/-/wallet-adapter-strike-0.1.5.tgz",
- "integrity": "sha512-CoVV7IOJC5+2H9Bhwgzlg+CMKE5Z7YTpYvgZ+ohnXTVCJUZYtAzhIOXD0t7Md31L+5svbyP6oq+b3B7s33Mung==",
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-strike/-/wallet-adapter-strike-0.1.7.tgz",
+ "integrity": "sha512-elDnALldwgep3P2fnlewQPyckfTjY6otiZG4xIgpoI/foXcOHTHVxiEspxaod9H6JYXjTTWj1EdH9Ix+2rpCKw==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17",
- "@strike-protocols/solana-wallet-adapter": "^0.1.4"
+ "@solana/wallet-adapter-base": "^0.9.18",
+ "@strike-protocols/solana-wallet-adapter": "^0.1.7"
}
},
"@solana/wallet-adapter-tokenary": {
- "version": "0.1.6",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-tokenary/-/wallet-adapter-tokenary-0.1.6.tgz",
- "integrity": "sha512-Bi9RKhavSasA+HFVBRCCNrFd/iRGIxKqwG3bmCrn/iKV3l3lHSw5OMVx7qXrXvmoUVS9DuM5MX7bMxe6i4bu6A==",
+ "version": "0.1.7",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-tokenary/-/wallet-adapter-tokenary-0.1.7.tgz",
+ "integrity": "sha512-HuNieaWJDtxBmDE+h9+2E4uJ1TmkY6b0iHwD71joD50HwDqkOH7nZO8qwhdO2/3szYlW0w+gcPQVaq0hBAp2+g==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-tokenpocket": {
- "version": "0.4.13",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-tokenpocket/-/wallet-adapter-tokenpocket-0.4.13.tgz",
- "integrity": "sha512-4HJ9wqs1FLNxXIkiUIRYyCIXd1xZd+GFoIjzk42jjykJLtjz7MFGH0jOjDVWH3sEmLdJ3BIEQ7Z8t6wYjfiDhw==",
+ "version": "0.4.14",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-tokenpocket/-/wallet-adapter-tokenpocket-0.4.14.tgz",
+ "integrity": "sha512-tLmnc8wKNGFLCgNGZ/xDRLtNUa3KhKLIXWBltUm3GErnmhUezzZHy4h6UbP5tcvaDQ48eg8/KAUJPlF617/vhg==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-torus": {
- "version": "0.11.22",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-torus/-/wallet-adapter-torus-0.11.22.tgz",
- "integrity": "sha512-Hr9GfF2Lx2d+ezTObmP7K5uCun3lb4RgGWmrG7P9NwO+BVdL97fJC7qMfw0cZpAPQL63Dfwr/jegMVY5X1KFUw==",
+ "version": "0.11.23",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-torus/-/wallet-adapter-torus-0.11.23.tgz",
+ "integrity": "sha512-kh6ygm0/gxqSXJLNiGpw0gLqIpoXxeMpso0GsEP2FVbAtzknuhP7MLZ4K+1cHzMScPFkpp2CYAuYeDB0AprVjw==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17",
+ "@solana/wallet-adapter-base": "^0.9.18",
"@toruslabs/solana-embed": "^0.3.0",
"assert": "^2.0.0",
"crypto-browserify": "^3.12.0",
@@ -14963,20 +15203,20 @@
}
},
"@solana/wallet-adapter-trust": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-trust/-/wallet-adapter-trust-0.1.7.tgz",
- "integrity": "sha512-eCgXzNtfksXmSo7lf7aH73rt9r4nd94EU8n4FNtFn2yCNOrG+PYTwaHmsnpWctSn8WAVsn/8a+woDZGjAAidng==",
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-trust/-/wallet-adapter-trust-0.1.8.tgz",
+ "integrity": "sha512-ES48UCN/C7FtGq2YYDEf6isTuahY6g4PAvljyt0uuBq8VV7hVNxWU4gfjtbwsvAY6FWRXyfNYUAEgHKUrqYvEQ==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-walletconnect": {
- "version": "0.1.5",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-walletconnect/-/wallet-adapter-walletconnect-0.1.5.tgz",
- "integrity": "sha512-jEgS6Gdc0010+NYows69JNee3lhlUO9gU19gLM4MqEndNMeG9wkXIql5wmefC0herRIxtmJG1XAZi+q3lI92rA==",
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-walletconnect/-/wallet-adapter-walletconnect-0.1.8.tgz",
+ "integrity": "sha512-793V0jkwzIqZuztE6yiY1Ig7j+2VTJenIaJzCZbeor9XbZQxF3orbCWY7/pGPY2FkoXyxQ6JKV3IJtqeE7NJDw==",
"requires": {
- "@jnwng/walletconnect-solana": "^0.1.0",
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@jnwng/walletconnect-solana": "^0.1.3",
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/wallet-adapter-wallets": {
@@ -15030,17 +15270,17 @@
}
},
"@solana/wallet-adapter-xdefi": {
- "version": "0.1.1",
- "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-xdefi/-/wallet-adapter-xdefi-0.1.1.tgz",
- "integrity": "sha512-RNpVc8roXNkO0/m+aIu2jp3N/qDp9zuPAMjwPJJLZiwbUxPTAsozbfbUSo+4LDWw8jg4210vpa15Y6v02UD4gQ==",
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/@solana/wallet-adapter-xdefi/-/wallet-adapter-xdefi-0.1.2.tgz",
+ "integrity": "sha512-fdjMsb3v1Q9qRC2lGbvQyZlMcDVtkeb35kxEi9Mf2HZOGEQaJjGnXWwioo0vbq7HzCsak77vTE97jKRsR9I9Xw==",
"requires": {
- "@solana/wallet-adapter-base": "^0.9.17"
+ "@solana/wallet-adapter-base": "^0.9.18"
}
},
"@solana/web3.js": {
- "version": "1.62.0",
- "resolved": "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.62.0.tgz",
- "integrity": "sha512-rHnqJR5ECooUp8egurP9Qi1SKI1Q3pbF2ZkaHbEmFsSjBsyEe+Qqxa5h+7ueylqApYyk0zawnxz83y4kdrlNIA==",
+ "version": "1.66.2",
+ "resolved": "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.66.2.tgz",
+ "integrity": "sha512-RyaHMR2jGmaesnYP045VLeBGfR/gAW3cvZHzMFGg7bkO+WOYOYp1nEllf0/la4U4qsYGKCsO9eEevR5fhHiVHg==",
"requires": {
"@babel/runtime": "^7.12.5",
"@noble/ed25519": "^1.7.0",
@@ -15059,6 +15299,22 @@
"superstruct": "^0.14.2"
},
"dependencies": {
+ "base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "requires": {
+ "base-x": "^3.0.2"
+ }
+ },
"buffer": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.1.tgz",
@@ -15071,9 +15327,9 @@
}
},
"@solflare-wallet/sdk": {
- "version": "1.0.12",
- "resolved": "https://registry.npmjs.org/@solflare-wallet/sdk/-/sdk-1.0.12.tgz",
- "integrity": "sha512-zSCistnl+36idZZCLe6RpqMwIYCyFdeA5lQtRNi6LX0xQ999cDufT/LPKviRlibTf9VJa92IHYZcWJiHkFY4sA==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@solflare-wallet/sdk/-/sdk-1.1.0.tgz",
+ "integrity": "sha512-h/OmjgRMDC6CkPHlkUQgOIRv1QXEZp+kQg132zU1KAcikZvc25xf0yMMRU0APUypQ6EJEz6bgQR6BRvvVA9/ZA==",
"requires": {
"@project-serum/sol-wallet-adapter": "0.2.0",
"bs58": "^4.0.1",
@@ -15089,6 +15345,22 @@
"bs58": "^4.0.1",
"eventemitter3": "^4.0.4"
}
+ },
+ "base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "requires": {
+ "base-x": "^3.0.2"
+ }
}
}
},
@@ -15239,14 +15511,32 @@
}
},
"@strike-protocols/solana-wallet-adapter": {
- "version": "0.1.7",
- "resolved": "https://registry.npmjs.org/@strike-protocols/solana-wallet-adapter/-/solana-wallet-adapter-0.1.7.tgz",
- "integrity": "sha512-WePD1kml3JPatU9rHIRYsP76BsD8T8j7n60ED1sFbIgKId34pvdQoQsuv/c7kpEYsRZvYJhaR2nODEE1FMR3CA==",
+ "version": "0.1.8",
+ "resolved": "https://registry.npmjs.org/@strike-protocols/solana-wallet-adapter/-/solana-wallet-adapter-0.1.8.tgz",
+ "integrity": "sha512-8gZAfjkoFgwf5fLFzrVuE2MtxAc7Pc0loBgi0zfcb3ijOy/FEpm5RJKLruKOhcThS6CHrfFxDU80AsZe+msObw==",
"requires": {
"@solana/web3.js": "^1.44.3",
"bs58": "^4.0.1",
"eventemitter3": "^4.0.7",
"uuid": "^8.3.2"
+ },
+ "dependencies": {
+ "base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "requires": {
+ "base-x": "^3.0.2"
+ }
+ }
}
},
"@supercharge/promise-pool": {
@@ -15418,9 +15708,9 @@
"dev": true
},
"@types/lodash": {
- "version": "4.14.185",
- "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.185.tgz",
- "integrity": "sha512-evMDG1bC4rgQg4ku9tKpuMh5iBNEwNa3tf9zRHdP1qlv+1WUg44xat4IxCE14gIpZRGUUWAx2VhItCZc25NfMA=="
+ "version": "4.14.186",
+ "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.186.tgz",
+ "integrity": "sha512-eHcVlLXP0c2FlMPm56ITode2AgLMSa6aJ05JTTbYbI+7EMkCEE5qk2E41d5g2lCVTqRe0GnnRFurmlCsDODrPw=="
},
"@types/lodash.mergewith": {
"version": "4.6.6",
@@ -15497,41 +15787,41 @@
}
},
"@typescript-eslint/parser": {
- "version": "5.37.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.37.0.tgz",
- "integrity": "sha512-01VzI/ipYKuaG5PkE5+qyJ6m02fVALmMPY3Qq5BHflDx3y4VobbLdHQkSMg9VPRS4KdNt4oYTMaomFoHonBGAw==",
+ "version": "5.40.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.40.1.tgz",
+ "integrity": "sha512-IK6x55va5w4YvXd4b3VrXQPldV9vQTxi5ov+g4pMANsXPTXOcfjx08CRR1Dfrcc51syPtXHF5bgLlMHYFrvQtg==",
"dev": true,
"requires": {
- "@typescript-eslint/scope-manager": "5.37.0",
- "@typescript-eslint/types": "5.37.0",
- "@typescript-eslint/typescript-estree": "5.37.0",
+ "@typescript-eslint/scope-manager": "5.40.1",
+ "@typescript-eslint/types": "5.40.1",
+ "@typescript-eslint/typescript-estree": "5.40.1",
"debug": "^4.3.4"
}
},
"@typescript-eslint/scope-manager": {
- "version": "5.37.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.37.0.tgz",
- "integrity": "sha512-F67MqrmSXGd/eZnujjtkPgBQzgespu/iCZ+54Ok9X5tALb9L2v3G+QBSoWkXG0p3lcTJsL+iXz5eLUEdSiJU9Q==",
+ "version": "5.40.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.40.1.tgz",
+ "integrity": "sha512-jkn4xsJiUQucI16OLCXrLRXDZ3afKhOIqXs4R3O+M00hdQLKR58WuyXPZZjhKLFCEP2g+TXdBRtLQ33UfAdRUg==",
"dev": true,
"requires": {
- "@typescript-eslint/types": "5.37.0",
- "@typescript-eslint/visitor-keys": "5.37.0"
+ "@typescript-eslint/types": "5.40.1",
+ "@typescript-eslint/visitor-keys": "5.40.1"
}
},
"@typescript-eslint/types": {
- "version": "5.37.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.37.0.tgz",
- "integrity": "sha512-3frIJiTa5+tCb2iqR/bf7XwU20lnU05r/sgPJnRpwvfZaqCJBrl8Q/mw9vr3NrNdB/XtVyMA0eppRMMBqdJ1bA==",
+ "version": "5.40.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.40.1.tgz",
+ "integrity": "sha512-Icg9kiuVJSwdzSQvtdGspOlWNjVDnF3qVIKXdJ103o36yRprdl3Ge5cABQx+csx960nuMF21v8qvO31v9t3OHw==",
"dev": true
},
"@typescript-eslint/typescript-estree": {
- "version": "5.37.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.37.0.tgz",
- "integrity": "sha512-JkFoFIt/cx59iqEDSgIGnQpCTRv96MQnXCYvJi7QhBC24uyuzbD8wVbajMB1b9x4I0octYFJ3OwjAwNqk1AjDA==",
+ "version": "5.40.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.40.1.tgz",
+ "integrity": "sha512-5QTP/nW5+60jBcEPfXy/EZL01qrl9GZtbgDZtDPlfW5zj/zjNrdI2B5zMUHmOsfvOr2cWqwVdWjobCiHcedmQA==",
"dev": true,
"requires": {
- "@typescript-eslint/types": "5.37.0",
- "@typescript-eslint/visitor-keys": "5.37.0",
+ "@typescript-eslint/types": "5.40.1",
+ "@typescript-eslint/visitor-keys": "5.40.1",
"debug": "^4.3.4",
"globby": "^11.1.0",
"is-glob": "^4.0.3",
@@ -15540,9 +15830,9 @@
},
"dependencies": {
"semver": {
- "version": "7.3.7",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
- "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+ "version": "7.3.8",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz",
+ "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
"dev": true,
"requires": {
"lru-cache": "^6.0.0"
@@ -15551,12 +15841,12 @@
}
},
"@typescript-eslint/visitor-keys": {
- "version": "5.37.0",
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.37.0.tgz",
- "integrity": "sha512-Hp7rT4cENBPIzMwrlehLW/28EVCOcE9U1Z1BQTc8EA8v5qpr7GRGuG+U58V5tTY48zvUOA3KHvw3rA8tY9fbdA==",
+ "version": "5.40.1",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.40.1.tgz",
+ "integrity": "sha512-A2DGmeZ+FMja0geX5rww+DpvILpwo1OsiQs0M+joPWJYsiEFBLsH0y1oFymPNul6Z5okSmHpP4ivkc2N0Cgfkw==",
"dev": true,
"requires": {
- "@typescript-eslint/types": "5.37.0",
+ "@typescript-eslint/types": "5.40.1",
"eslint-visitor-keys": "^3.3.0"
}
},
@@ -15573,9 +15863,9 @@
}
},
"@walletconnect/core": {
- "version": "2.0.0-rc.2",
- "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.0.0-rc.2.tgz",
- "integrity": "sha512-zyZs0ChqthjKKBKF8bhXRhli15U+GOa/YPX4gzmdjRB9o8LZ27GMRNvWdLhUHkJU/GC6EfmV3/B7J8rfQGsnDA==",
+ "version": "2.0.0-rc.3",
+ "resolved": "https://registry.npmjs.org/@walletconnect/core/-/core-2.0.0-rc.3.tgz",
+ "integrity": "sha512-ErnwoAZVnu8658GT9Aw3WjaOctFu1TQYyhOSL6LRF4pa+K4wvHOikiBLxPG7HsrkqyZ8ItdROmkw2ycSipmMow==",
"requires": {
"@walletconnect/heartbeat": "1.0.0",
"@walletconnect/jsonrpc-provider": "1.0.5",
@@ -15587,8 +15877,8 @@
"@walletconnect/relay-auth": "1.0.3",
"@walletconnect/safe-json": "1.0.0",
"@walletconnect/time": "1.0.1",
- "@walletconnect/types": "2.0.0-rc.2",
- "@walletconnect/utils": "2.0.0-rc.2",
+ "@walletconnect/types": "2.0.0-rc.3",
+ "@walletconnect/utils": "2.0.0-rc.3",
"lodash.isequal": "4.5.0",
"pino": "6.7.0",
"pino-pretty": "4.3.0",
@@ -15605,9 +15895,9 @@
}
},
"@walletconnect/types": {
- "version": "2.0.0-rc.2",
- "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.0.0-rc.2.tgz",
- "integrity": "sha512-BuQbEjkRIZULqBHBxKgGiUgeJ1i+5NpNvw5Y7ML7X+hksHooj0+Hy6qv7Jc/cegltEovElAU2w6R38dfuEPUOA==",
+ "version": "2.0.0-rc.3",
+ "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.0.0-rc.3.tgz",
+ "integrity": "sha512-PkzgdBr4tSXQtyGT91P6cdQJ44dCwRRwIW4BDW6tRqsvziPcyt6aQzWYfKQiMl6i2fIMK/8fgr1oDYPcLQLvbA==",
"requires": {
"@walletconnect/events": "1.0.0",
"@walletconnect/heartbeat": "1.0.0",
@@ -15727,19 +16017,19 @@
"integrity": "sha512-QJzp/S/86sUAgWY6eh5MKYmSfZaRpIlmCJdi5uG4DJlKkZrHEF7ye7gA+VtbVzvTtpM/gRwO2plQuiooIeXjfg=="
},
"@walletconnect/sign-client": {
- "version": "2.0.0-rc.2",
- "resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.0.0-rc.2.tgz",
- "integrity": "sha512-JJ8/31NERk59GqQ8KLm+1pM32YkTfAx8Nvh8cEBWp/mjtUgcoXEZ4V6EnoLkA+r1Vy/8kMnYOdIUH0OA5gXmvQ==",
+ "version": "2.0.0-rc.3",
+ "resolved": "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.0.0-rc.3.tgz",
+ "integrity": "sha512-M/+tmccQvNIM86CJ3RsQBZVaECSq8jH1CEj1iUDmhxuG0eEg3Zesf5yJMg41aFFNVi2vSdBCeP0zcqWCDChf/g==",
"requires": {
- "@walletconnect/core": "2.0.0-rc.2",
+ "@walletconnect/core": "2.0.0-rc.3",
"@walletconnect/events": "1.0.0",
"@walletconnect/heartbeat": "1.0.0",
"@walletconnect/jsonrpc-provider": "1.0.5",
"@walletconnect/jsonrpc-utils": "1.0.3",
"@walletconnect/logger": "1.0.1",
"@walletconnect/time": "1.0.1",
- "@walletconnect/types": "2.0.0-rc.2",
- "@walletconnect/utils": "2.0.0-rc.2",
+ "@walletconnect/types": "2.0.0-rc.3",
+ "@walletconnect/utils": "2.0.0-rc.3",
"pino": "6.7.0",
"pino-pretty": "4.3.0"
},
@@ -15754,9 +16044,9 @@
}
},
"@walletconnect/types": {
- "version": "2.0.0-rc.2",
- "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.0.0-rc.2.tgz",
- "integrity": "sha512-BuQbEjkRIZULqBHBxKgGiUgeJ1i+5NpNvw5Y7ML7X+hksHooj0+Hy6qv7Jc/cegltEovElAU2w6R38dfuEPUOA==",
+ "version": "2.0.0-rc.3",
+ "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.0.0-rc.3.tgz",
+ "integrity": "sha512-PkzgdBr4tSXQtyGT91P6cdQJ44dCwRRwIW4BDW6tRqsvziPcyt6aQzWYfKQiMl6i2fIMK/8fgr1oDYPcLQLvbA==",
"requires": {
"@walletconnect/events": "1.0.0",
"@walletconnect/heartbeat": "1.0.0",
@@ -15777,9 +16067,9 @@
"integrity": "sha512-Cn+3I0V0vT9ghMuzh1KzZvCkiAxTq+1TR2eSqw5E5AVWfmCtECFkVZBP6uUJZ8YjwLqXheI+rnjqPy7sVM4Fyg=="
},
"@walletconnect/utils": {
- "version": "2.0.0-rc.2",
- "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.0.0-rc.2.tgz",
- "integrity": "sha512-G4qa4zirL3MbryhWf/+4uew7wV3gtLmIt09FVtWQLhPCePrlA0A8EuPXYQAqW58gQpFIsuUiKUYfy3kRMkp4WA==",
+ "version": "2.0.0-rc.3",
+ "resolved": "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.0.0-rc.3.tgz",
+ "integrity": "sha512-ThMv+uLZiU9iSEN28cLZy98/LyQmHQ6eq29P9qsET9ZginF5QplmvTRKQvLSeLrU4K4rcRaXs/FndhxxiRhPcQ==",
"requires": {
"@stablelib/chacha20poly1305": "1.0.1",
"@stablelib/hkdf": "1.0.1",
@@ -15790,7 +16080,7 @@
"@walletconnect/relay-api": "1.0.6",
"@walletconnect/safe-json": "1.0.0",
"@walletconnect/time": "1.0.1",
- "@walletconnect/types": "2.0.0-rc.2",
+ "@walletconnect/types": "2.0.0-rc.3",
"@walletconnect/window-getters": "1.0.0",
"@walletconnect/window-metadata": "1.0.0",
"detect-browser": "5.3.0",
@@ -15817,9 +16107,9 @@
}
},
"@walletconnect/types": {
- "version": "2.0.0-rc.2",
- "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.0.0-rc.2.tgz",
- "integrity": "sha512-BuQbEjkRIZULqBHBxKgGiUgeJ1i+5NpNvw5Y7ML7X+hksHooj0+Hy6qv7Jc/cegltEovElAU2w6R38dfuEPUOA==",
+ "version": "2.0.0-rc.3",
+ "resolved": "https://registry.npmjs.org/@walletconnect/types/-/types-2.0.0-rc.3.tgz",
+ "integrity": "sha512-PkzgdBr4tSXQtyGT91P6cdQJ44dCwRRwIW4BDW6tRqsvziPcyt6aQzWYfKQiMl6i2fIMK/8fgr1oDYPcLQLvbA==",
"requires": {
"@walletconnect/events": "1.0.0",
"@walletconnect/heartbeat": "1.0.0",
@@ -15906,9 +16196,9 @@
"integrity": "sha512-F1tGh056XczEaEAqu7s+hlZUDWwOBT70Eq0lfMpBP2YguSQVyxRbprLq5rELXKQOyOaixTWYhMeMQMzP0U5FoQ=="
},
"algosdk": {
- "version": "1.21.0",
- "resolved": "https://registry.npmjs.org/algosdk/-/algosdk-1.21.0.tgz",
- "integrity": "sha512-pgHzEExFn8hjcDphQYo+0Pi6TLWZOyXPcxjisldd6ZaaF0cNsB6C97n66OXi0gtL3mvMIgD53SLBfzy1u9YM+g==",
+ "version": "1.22.0",
+ "resolved": "https://registry.npmjs.org/algosdk/-/algosdk-1.22.0.tgz",
+ "integrity": "sha512-oj2G1ucLyqfTAPM9iIWiSfU0Jmwx1gaafqlC2RaWcwHx86cwnFTwEf/haFQ9yoirkIozVlZYTYtv+Ltkj3il8w==",
"requires": {
"algo-msgpack-with-bigint": "^2.1.1",
"buffer": "^6.0.2",
@@ -15929,13 +16219,6 @@
"integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
"requires": {
"type-fest": "^0.21.3"
- },
- "dependencies": {
- "type-fest": {
- "version": "0.21.3",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
- "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="
- }
}
},
"ansi-regex": {
@@ -15944,11 +16227,11 @@
"integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
},
"ansi-styles": {
- "version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "version": "3.2.1",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"requires": {
- "color-convert": "^2.0.1"
+ "color-convert": "^1.9.0"
}
},
"ansicolors": {
@@ -15979,6 +16262,30 @@
"tmp-promise": "^3.0.2"
},
"dependencies": {
+ "axios": {
+ "version": "0.21.4",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
+ "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
+ "requires": {
+ "follow-redirects": "^1.14.0"
+ }
+ },
+ "base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "requires": {
+ "base-x": "^3.0.2"
+ }
+ },
"secp256k1": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/secp256k1/-/secp256k1-4.0.3.tgz",
@@ -16020,57 +16327,6 @@
"chalk": "2.4.2",
"leven": "2.1.0",
"mri": "1.1.4"
- },
- "dependencies": {
- "ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
- "requires": {
- "color-convert": "^1.9.0"
- }
- },
- "chalk": {
- "version": "2.4.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
- "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
- "requires": {
- "ansi-styles": "^3.2.1",
- "escape-string-regexp": "^1.0.5",
- "supports-color": "^5.3.0"
- }
- },
- "color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
- "requires": {
- "color-name": "1.1.3"
- }
- },
- "color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
- },
- "escape-string-regexp": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="
- },
- "has-flag": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="
- },
- "supports-color": {
- "version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
- "requires": {
- "has-flag": "^3.0.0"
- }
- }
}
},
"aria-hidden": {
@@ -16254,11 +16510,11 @@
"dev": true
},
"axios": {
- "version": "0.21.4",
- "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
- "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
+ "version": "0.25.0",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz",
+ "integrity": "sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==",
"requires": {
- "follow-redirects": "^1.14.0"
+ "follow-redirects": "^1.14.7"
}
},
"axobject-query": {
@@ -16283,12 +16539,9 @@
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
},
"base-x": {
- "version": "3.0.9",
- "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
- "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
- "requires": {
- "safe-buffer": "^5.0.1"
- }
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-4.0.0.tgz",
+ "integrity": "sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw=="
},
"base58check": {
"version": "2.0.0",
@@ -16429,6 +16682,24 @@
"bn.js": "^5.2.0",
"bs58": "^4.0.0",
"text-encoding-utf-8": "^1.0.2"
+ },
+ "dependencies": {
+ "base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "requires": {
+ "base-x": "^3.0.2"
+ }
+ }
}
},
"bowser": {
@@ -16516,33 +16787,26 @@
"parse-asn1": "^5.1.5",
"readable-stream": "^3.6.0",
"safe-buffer": "^5.2.0"
- },
- "dependencies": {
- "safe-buffer": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
- }
}
},
"browserslist": {
- "version": "4.21.3",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.3.tgz",
- "integrity": "sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ==",
+ "version": "4.21.4",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz",
+ "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==",
"peer": true,
"requires": {
- "caniuse-lite": "^1.0.30001370",
- "electron-to-chromium": "^1.4.202",
+ "caniuse-lite": "^1.0.30001400",
+ "electron-to-chromium": "^1.4.251",
"node-releases": "^2.0.6",
- "update-browserslist-db": "^1.0.5"
+ "update-browserslist-db": "^1.0.9"
}
},
"bs58": {
- "version": "4.0.1",
- "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
- "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-5.0.0.tgz",
+ "integrity": "sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==",
"requires": {
- "base-x": "^3.0.2"
+ "base-x": "^4.0.0"
}
},
"bs58check": {
@@ -16553,6 +16817,24 @@
"bs58": "^4.0.0",
"create-hash": "^1.1.0",
"safe-buffer": "^5.1.2"
+ },
+ "dependencies": {
+ "base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "requires": {
+ "base-x": "^3.0.2"
+ }
+ }
}
},
"buffer": {
@@ -16594,9 +16876,9 @@
"integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ=="
},
"bufferutil": {
- "version": "4.0.6",
- "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz",
- "integrity": "sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw==",
+ "version": "4.0.7",
+ "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.7.tgz",
+ "integrity": "sha512-kukuqc39WOHtdxtw4UScxF/WVnMFVSQVKhtx3AjZJzhd0RGZZldcrfSEbVsWWe6KNH253574cq5F+wpv0G9pJw==",
"optional": true,
"requires": {
"node-gyp-build": "^4.3.0"
@@ -16622,9 +16904,9 @@
"integrity": "sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA=="
},
"caniuse-lite": {
- "version": "1.0.30001397",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001397.tgz",
- "integrity": "sha512-SW9N2TbCdLf0eiNDRrrQXx2sOkaakNZbCjgNpPyMJJbiOrU5QzMIrXOVMRM1myBXTD5iTkdrtU/EguCrBocHlA=="
+ "version": "1.0.30001423",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001423.tgz",
+ "integrity": "sha512-09iwWGOlifvE1XuHokFMP7eR38a0JnajoyL3/i87c8ZjRWRrdKo1fqjNfugfBD0UDBIOz0U+jtNhJ0EPm1VleQ=="
},
"capability": {
"version": "0.2.5",
@@ -16637,12 +16919,20 @@
"integrity": "sha512-GWlXN4wiz0vdWWXBU71Dvc1q3aBo0HytqwAZnXF1wOwjqNnDWA1vZ1gDMFLlqohak31VQzmhiYfiCX5QSSfagA=="
},
"chalk": {
- "version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "version": "2.4.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
+ "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"requires": {
- "ansi-styles": "^4.1.0",
- "supports-color": "^7.1.0"
+ "ansi-styles": "^3.2.1",
+ "escape-string-regexp": "^1.0.5",
+ "supports-color": "^5.3.0"
+ },
+ "dependencies": {
+ "escape-string-regexp": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
+ "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg=="
+ }
}
},
"chardet": {
@@ -16697,6 +16987,26 @@
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz",
"integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g=="
},
+ "emoji-regex": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
+ "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="
+ },
+ "is-fullwidth-code-point": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+ "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w=="
+ },
+ "string-width": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
+ "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
+ "requires": {
+ "emoji-regex": "^7.0.1",
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^5.1.0"
+ }
+ },
"strip-ansi": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
@@ -16704,6 +17014,16 @@
"requires": {
"ansi-regex": "^4.1.0"
}
+ },
+ "wrap-ansi": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
+ "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==",
+ "requires": {
+ "ansi-styles": "^3.2.0",
+ "string-width": "^3.0.0",
+ "strip-ansi": "^5.0.0"
+ }
}
}
},
@@ -16713,17 +17033,17 @@
"integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg=="
},
"color-convert": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "version": "1.9.3",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
+ "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"requires": {
- "color-name": "~1.1.4"
+ "color-name": "1.1.3"
}
},
"color-name": {
- "version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
+ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
},
"combined-stream": {
"version": "1.0.8",
@@ -16734,9 +17054,9 @@
}
},
"commander": {
- "version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
+ "version": "8.3.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz",
+ "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="
},
"component-emitter": {
"version": "1.3.0",
@@ -16754,12 +17074,9 @@
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
},
"convert-source-map": {
- "version": "1.8.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz",
- "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==",
- "requires": {
- "safe-buffer": "~5.1.1"
- }
+ "version": "1.9.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
+ "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
},
"cookiejar": {
"version": "2.1.3",
@@ -16775,9 +17092,9 @@
}
},
"core-js-pure": {
- "version": "3.25.1",
- "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.25.1.tgz",
- "integrity": "sha512-7Fr74bliUDdeJCBMxkkIuQ4xfxn/SwrVg+HkJUAoNEXVqYLv55l6Af0dJ5Lq2YBUW9yKqSkLXaS5SYPK6MGa/A==",
+ "version": "3.25.5",
+ "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.25.5.tgz",
+ "integrity": "sha512-oml3M22pHM+igfWHDfdLVq2ShWmjM2V4L+dQEBs0DWVIqEm9WHCwGAlZ6BmyBQGy5sFrJmcx+856D9lVKyGWYg==",
"dev": true
},
"core-util-is": {
@@ -16913,17 +17230,17 @@
}
},
"csstype": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.0.tgz",
- "integrity": "sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA=="
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz",
+ "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw=="
},
"csv": {
- "version": "6.2.0",
- "resolved": "https://registry.npmjs.org/csv/-/csv-6.2.0.tgz",
- "integrity": "sha512-yT7dkCsJLJ36NUW0d0ei7parOcUCx/QVkK77puwA/rF4bMciTB5Kf+wuegL+7zh8s6revFM+BFQ2h+U2k4jgBQ==",
+ "version": "6.2.1",
+ "resolved": "https://registry.npmjs.org/csv/-/csv-6.2.1.tgz",
+ "integrity": "sha512-qTEPklcIZkJGaB/j6/2qNXZbKgWSXPVMyRnZvRcb1F7MGyvLqJexlZlbJ3NQkgmUoAeScZhsRHjlZEgImBfCYQ==",
"requires": {
"csv-generate": "^4.2.0",
- "csv-parse": "^5.3.0",
+ "csv-parse": "^5.3.1",
"csv-stringify": "^6.2.0",
"stream-transform": "^3.2.0"
}
@@ -16934,9 +17251,9 @@
"integrity": "sha512-zlIESlGQaYqIhNYwBN2pj5KXNMYbAXZYMOgNoVSoYV8MQyGZwcNWX+kx5LHxocp+zQDqzSgeKh+e+AZs+nCq4Q=="
},
"csv-parse": {
- "version": "5.3.0",
- "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-5.3.0.tgz",
- "integrity": "sha512-UXJCGwvJ2fep39purtAn27OUYmxB1JQto+zhZ4QlJpzsirtSFbzLvip1aIgziqNdZp/TptvsKEV5BZSxe10/DQ=="
+ "version": "5.3.1",
+ "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-5.3.1.tgz",
+ "integrity": "sha512-R4Hv6eGJNzgcKdThZ6XORbSQ873HVcNke74QIq+LbwpT90LaZ8Xzl7KKiuIP16xq/P7ofzRt0h7S0xm+fVScsw=="
},
"csv-stringify": {
"version": "6.2.0",
@@ -16979,9 +17296,9 @@
"dev": true
},
"defaults": {
- "version": "1.0.3",
- "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz",
- "integrity": "sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==",
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz",
+ "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==",
"requires": {
"clone": "^1.0.2"
}
@@ -17072,18 +17389,18 @@
}
},
"doctrine": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
- "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
+ "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
"dev": true,
"requires": {
"esutils": "^2.0.2"
}
},
"dotenv": {
- "version": "16.0.2",
- "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.2.tgz",
- "integrity": "sha512-JvpYKUmzQhYoIFgK2MOnF3bciIZoItIIoryihy0rIA+H4Jy0FmgyKYAHCTN98P5ybGSJcIFbh6QKeJdtZd1qhA=="
+ "version": "16.0.3",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz",
+ "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ=="
},
"drbg.js": {
"version": "1.0.1",
@@ -17110,9 +17427,9 @@
}
},
"electron-to-chromium": {
- "version": "1.4.247",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.247.tgz",
- "integrity": "sha512-FLs6R4FQE+1JHM0hh3sfdxnYjKvJpHZyhQDjc2qFq/xFvmmRt/TATNToZhrcGUFzpF2XjeiuozrA8lI0PZmYYw==",
+ "version": "1.4.284",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz",
+ "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==",
"peer": true
},
"elliptic": {
@@ -17151,9 +17468,9 @@
}
},
"engine.io-client": {
- "version": "6.2.2",
- "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.2.tgz",
- "integrity": "sha512-8ZQmx0LQGRTYkHuogVZuGSpDqYZtCM/nv8zQ68VZ+JkOpazJ7ICdsSpaO6iXwvaU30oFg5QJOJWj8zWqhbKjkQ==",
+ "version": "6.2.3",
+ "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.3.tgz",
+ "integrity": "sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw==",
"requires": {
"@socket.io/component-emitter": "~3.1.0",
"debug": "~4.3.1",
@@ -17194,21 +17511,21 @@
}
},
"es-abstract": {
- "version": "1.20.2",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz",
- "integrity": "sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ==",
+ "version": "1.20.4",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.4.tgz",
+ "integrity": "sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==",
"requires": {
"call-bind": "^1.0.2",
"es-to-primitive": "^1.2.1",
"function-bind": "^1.1.1",
"function.prototype.name": "^1.1.5",
- "get-intrinsic": "^1.1.2",
+ "get-intrinsic": "^1.1.3",
"get-symbol-description": "^1.0.0",
"has": "^1.0.3",
"has-property-descriptors": "^1.0.0",
"has-symbols": "^1.0.3",
"internal-slot": "^1.0.3",
- "is-callable": "^1.2.4",
+ "is-callable": "^1.2.7",
"is-negative-zero": "^2.0.2",
"is-regex": "^1.1.4",
"is-shared-array-buffer": "^1.0.2",
@@ -17218,6 +17535,7 @@
"object-keys": "^1.1.1",
"object.assign": "^4.1.4",
"regexp.prototype.flags": "^1.4.3",
+ "safe-regex-test": "^1.0.0",
"string.prototype.trimend": "^1.0.5",
"string.prototype.trimstart": "^1.0.5",
"unbox-primitive": "^1.0.2"
@@ -17318,14 +17636,69 @@
"text-table": "^0.2.0"
},
"dependencies": {
- "doctrine": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
- "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"requires": {
- "esutils": "^2.0.2"
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true
+ },
+ "globals": {
+ "version": "13.17.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz",
+ "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==",
+ "dev": true,
+ "requires": {
+ "type-fest": "^0.20.2"
+ }
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "requires": {
+ "has-flag": "^4.0.0"
}
+ },
+ "type-fest": {
+ "version": "0.20.2",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
+ "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
+ "dev": true
}
}
},
@@ -17364,12 +17737,6 @@
"requires": {
"ms": "^2.1.1"
}
- },
- "ms": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
- "dev": true
}
}
},
@@ -17384,6 +17751,22 @@
"is-glob": "^4.0.3",
"resolve": "^1.22.0",
"tsconfig-paths": "^3.14.1"
+ },
+ "dependencies": {
+ "glob": {
+ "version": "7.2.3",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+ "dev": true,
+ "requires": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ }
+ }
}
},
"eslint-module-utils": {
@@ -17403,12 +17786,6 @@
"requires": {
"ms": "^2.1.1"
}
- },
- "ms": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
- "dev": true
}
}
},
@@ -17442,6 +17819,15 @@
"ms": "2.0.0"
}
},
+ "doctrine": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "dev": true,
+ "requires": {
+ "esutils": "^2.0.2"
+ }
+ },
"ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
@@ -17472,9 +17858,9 @@
}
},
"eslint-plugin-react": {
- "version": "7.31.8",
- "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.8.tgz",
- "integrity": "sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw==",
+ "version": "7.31.10",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.10.tgz",
+ "integrity": "sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA==",
"dev": true,
"requires": {
"array-includes": "^3.1.5",
@@ -17493,6 +17879,15 @@
"string.prototype.matchall": "^4.0.7"
},
"dependencies": {
+ "doctrine": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "dev": true,
+ "requires": {
+ "esutils": "^2.0.2"
+ }
+ },
"resolve": {
"version": "2.0.0-next.4",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz",
@@ -17642,9 +18037,9 @@
}
},
"ethers": {
- "version": "5.7.1",
- "resolved": "https://registry.npmjs.org/ethers/-/ethers-5.7.1.tgz",
- "integrity": "sha512-5krze4dRLITX7FpU8J4WscXqADiKmyeNlylmmDLbS95DaZpBhDe2YSwRQwKXWNyXcox7a3gBgm/MkGXV1O1S/Q==",
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/ethers/-/ethers-5.7.2.tgz",
+ "integrity": "sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==",
"requires": {
"@ethersproject/abi": "5.7.0",
"@ethersproject/abstract-provider": "5.7.0",
@@ -17664,7 +18059,7 @@
"@ethersproject/networks": "5.7.1",
"@ethersproject/pbkdf2": "5.7.0",
"@ethersproject/properties": "5.7.0",
- "@ethersproject/providers": "5.7.1",
+ "@ethersproject/providers": "5.7.2",
"@ethersproject/random": "5.7.0",
"@ethersproject/rlp": "5.7.0",
"@ethersproject/sha2": "5.7.0",
@@ -17902,9 +18297,9 @@
"dev": true
},
"focus-lock": {
- "version": "0.11.2",
- "resolved": "https://registry.npmjs.org/focus-lock/-/focus-lock-0.11.2.tgz",
- "integrity": "sha512-pZ2bO++NWLHhiKkgP1bEXHhR1/OjVcSvlCJ98aNJDFeb7H5OOQaO+SKOZle6041O9rv2tmbrO4JzClAvDUHf0g==",
+ "version": "0.11.3",
+ "resolved": "https://registry.npmjs.org/focus-lock/-/focus-lock-0.11.3.tgz",
+ "integrity": "sha512-4n0pYcPTa/uI7Q66BZna61nRT7lDhnuJ9PJr6wiDjx4uStg491ks41y7uOG+s0umaaa+hulNKSldU9aTg9/yVg==",
"requires": {
"tslib": "^2.0.3"
}
@@ -18033,9 +18428,9 @@
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
},
"get-intrinsic": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz",
- "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==",
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz",
+ "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==",
"requires": {
"function-bind": "^1.1.1",
"has": "^1.0.3",
@@ -18062,14 +18457,14 @@
}
},
"glob": {
- "version": "7.2.3",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
- "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+ "version": "7.1.7",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
+ "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
"requires": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
"inherits": "2",
- "minimatch": "^3.1.1",
+ "minimatch": "^3.0.4",
"once": "^1.3.0",
"path-is-absolute": "^1.0.0"
}
@@ -18084,13 +18479,10 @@
}
},
"globals": {
- "version": "13.17.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz",
- "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==",
- "dev": true,
- "requires": {
- "type-fest": "^0.20.2"
- }
+ "version": "11.12.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
+ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
+ "peer": true
},
"globby": {
"version": "11.1.0",
@@ -18126,9 +18518,9 @@
"integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ=="
},
"has-flag": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
+ "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw=="
},
"has-property-descriptors": {
"version": "1.0.0",
@@ -18159,13 +18551,6 @@
"inherits": "^2.0.4",
"readable-stream": "^3.6.0",
"safe-buffer": "^5.2.0"
- },
- "dependencies": {
- "safe-buffer": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
- }
}
},
"hash.js": {
@@ -18299,42 +18684,55 @@
"wrap-ansi": "^7.0.0"
},
"dependencies": {
- "emoji-regex": {
- "version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
},
- "is-fullwidth-code-point": {
- "version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
},
- "rxjs": {
- "version": "7.5.6",
- "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz",
- "integrity": "sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==",
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"requires": {
- "tslib": "^2.1.0"
+ "color-name": "~1.1.4"
}
},
- "string-width": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+ },
+ "rxjs": {
+ "version": "7.5.7",
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz",
+ "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==",
"requires": {
- "emoji-regex": "^8.0.0",
- "is-fullwidth-code-point": "^3.0.0",
- "strip-ansi": "^6.0.1"
+ "tslib": "^2.1.0"
}
},
- "wrap-ansi": {
- "version": "7.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"requires": {
- "ansi-styles": "^4.0.0",
- "string-width": "^4.1.0",
- "strip-ansi": "^6.0.0"
+ "has-flag": "^4.0.0"
}
}
}
@@ -18389,14 +18787,14 @@
}
},
"is-callable": {
- "version": "1.2.5",
- "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.5.tgz",
- "integrity": "sha512-ZIWRujF6MvYGkEuHMYtFRkL2wAtFw89EHfKlXrkPkjQZZRWeh9L1q3SV13NIfHnqxugjLvAOkEHx9mb1zcMnEw=="
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
+ "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="
},
"is-core-module": {
- "version": "2.10.0",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz",
- "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==",
+ "version": "2.11.0",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz",
+ "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==",
"requires": {
"has": "^1.0.3"
}
@@ -18416,9 +18814,9 @@
"dev": true
},
"is-fullwidth-code-point": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
- "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w=="
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="
},
"is-generator-function": {
"version": "1.0.10",
@@ -18573,6 +18971,11 @@
"version": "12.20.55",
"resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz",
"integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ=="
+ },
+ "commander": {
+ "version": "2.20.3",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
+ "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
}
}
},
@@ -18582,9 +18985,9 @@
"integrity": "sha512-+kHj8HXArPfpPEKGLZ+kB5ONRTCiGQXo8RQYL0hH8t6pWXUBBK5KkkQmTNOwKK4LEsd0yTsgtjJVm4UBSZea4w=="
},
"joi": {
- "version": "17.6.0",
- "resolved": "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz",
- "integrity": "sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw==",
+ "version": "17.6.4",
+ "resolved": "https://registry.npmjs.org/joi/-/joi-17.6.4.tgz",
+ "integrity": "sha512-tPzkTJHZQjSFCc842QpdVpOZ9LI2txApboNUbW70qgnRB14Lzl+oWQOPdF2N4yqyiY14wBGe8lc7f/2hZxbGmw==",
"requires": {
"@hapi/hoek": "^9.0.0",
"@hapi/topo": "^5.0.0",
@@ -18599,9 +19002,9 @@
"integrity": "sha512-YqvUxoOcVPnCp0VU1/56f+iKSdvIRJYPznH22BdXV3xMk75SFXhWeJkZ8C9XxUWt1b5x2X1SxuFygW1U0FmkEQ=="
},
"js-sdsl": {
- "version": "4.1.4",
- "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.4.tgz",
- "integrity": "sha512-Y2/yD55y5jteOAmY50JbUZYwk3CP3wnLPEZnlR1w9oKhITrBEtAxwuWKebFf8hMrPMgbYwFoWK/lH2sBkErELw==",
+ "version": "4.1.5",
+ "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.5.tgz",
+ "integrity": "sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==",
"dev": true
},
"js-sha256": {
@@ -18688,18 +19091,15 @@
"integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA=="
},
"json5": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
- "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
- "dev": true,
- "requires": {
- "minimist": "^1.2.0"
- }
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz",
+ "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==",
+ "peer": true
},
"jsonify": {
- "version": "0.0.0",
- "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz",
- "integrity": "sha512-trvBk1ki43VZptdBI5rIlG4YOzyeH/WefQt5rj1grasPn4iiZWKet8nkgc4GlsAylaztn0qZfUYOiTsASJFdNA=="
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz",
+ "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg=="
},
"jsonparse": {
"version": "1.3.1",
@@ -18836,6 +19236,51 @@
"requires": {
"chalk": "^4.1.0",
"is-unicode-supported": "^0.1.0"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
}
},
"loglevel": {
@@ -18964,9 +19409,9 @@
}
},
"minimist": {
- "version": "1.2.6",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz",
- "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz",
+ "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g=="
},
"mri": {
"version": "1.1.4",
@@ -18979,9 +19424,9 @@
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
},
"multiformats": {
- "version": "9.8.1",
- "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-9.8.1.tgz",
- "integrity": "sha512-Cu7NfUYtCV+WN7w59WsRRF138S+um4tTo11ScYsWbNgWyCEGOu8wID1e5eMJs91gFZ0I7afodkkdxCF8NGkqZQ=="
+ "version": "9.9.0",
+ "resolved": "https://registry.npmjs.org/multiformats/-/multiformats-9.9.0.tgz",
+ "integrity": "sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg=="
},
"multistream": {
"version": "4.1.0",
@@ -19003,9 +19448,9 @@
"integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="
},
"nan": {
- "version": "2.16.0",
- "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz",
- "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA=="
+ "version": "2.17.0",
+ "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz",
+ "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ=="
},
"nanoid": {
"version": "3.3.4",
@@ -19036,6 +19481,14 @@
"tweetnacl": "^1.0.1"
},
"dependencies": {
+ "base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
"bn.js": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz",
@@ -19050,6 +19503,14 @@
"bs58": "^4.0.0",
"text-encoding-utf-8": "^1.0.2"
}
+ },
+ "bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "requires": {
+ "base-x": "^3.0.2"
+ }
}
}
},
@@ -19072,6 +19533,24 @@
"bs58": "^4.0.1",
"near-hd-key": "^1.2.1",
"tweetnacl": "^1.0.2"
+ },
+ "dependencies": {
+ "base-x": {
+ "version": "3.0.9",
+ "resolved": "https://registry.npmjs.org/base-x/-/base-x-3.0.9.tgz",
+ "integrity": "sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==",
+ "requires": {
+ "safe-buffer": "^5.0.1"
+ }
+ },
+ "bs58": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz",
+ "integrity": "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==",
+ "requires": {
+ "base-x": "^3.0.2"
+ }
+ }
}
},
"next": {
@@ -19267,6 +19746,51 @@
"log-symbols": "^4.1.0",
"strip-ansi": "^6.0.0",
"wcwidth": "^1.0.1"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
}
},
"os-tmpdir": {
@@ -19414,6 +19938,51 @@
"readable-stream": "^3.6.0",
"split2": "^3.1.1",
"strip-json-comments": "^3.1.1"
+ },
+ "dependencies": {
+ "ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "requires": {
+ "color-convert": "^2.0.1"
+ }
+ },
+ "chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "requires": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ }
+ },
+ "color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "requires": {
+ "color-name": "~1.1.4"
+ }
+ },
+ "color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
+ },
+ "has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="
+ },
+ "supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "requires": {
+ "has-flag": "^4.0.0"
+ }
+ }
}
},
"pino-std-serializers": {
@@ -19662,9 +20231,9 @@
"integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA=="
},
"react-modal": {
- "version": "3.15.1",
- "resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.15.1.tgz",
- "integrity": "sha512-duB9bxOaYg7Zt6TMFldIFxQRtSP+Dg3F1ZX3FXxSUn+3tZZ/9JCgeAQKDg7rhZSAqopq8TFRw3yIbnx77gyFTw==",
+ "version": "3.16.1",
+ "resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.16.1.tgz",
+ "integrity": "sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg==",
"requires": {
"exenv": "^1.2.0",
"prop-types": "^15.7.2",
@@ -19685,9 +20254,9 @@
}
},
"react-remove-scroll-bar": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.3.tgz",
- "integrity": "sha512-i9GMNWwpz8XpUpQ6QlevUtFjHGqnPG4Hxs+wlIJntu/xcsZVEpJcIV71K3ZkqNy2q3GfgvkD7y6t/Sv8ofYSbw==",
+ "version": "2.3.4",
+ "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.4.tgz",
+ "integrity": "sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==",
"requires": {
"react-style-singleton": "^2.2.1",
"tslib": "^2.0.0"
@@ -19714,9 +20283,9 @@
}
},
"regenerator-runtime": {
- "version": "0.13.9",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz",
- "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="
+ "version": "0.13.10",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz",
+ "integrity": "sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw=="
},
"regexp.prototype.flags": {
"version": "1.4.3",
@@ -19818,9 +20387,9 @@
},
"dependencies": {
"ws": {
- "version": "8.8.1",
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz",
- "integrity": "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA==",
+ "version": "8.9.0",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.9.0.tgz",
+ "integrity": "sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg==",
"requires": {}
}
}
@@ -19863,24 +20432,34 @@
}
},
"safe-buffer": {
- "version": "5.1.2",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
- "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
},
"safe-json-utils": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/safe-json-utils/-/safe-json-utils-1.1.1.tgz",
"integrity": "sha512-SAJWGKDs50tAbiDXLf89PDwt9XYkWyANFWVzn4dTXl5QyI8t2o/bW5/OJl3lvc2WVU4MEpTo9Yz5NVFNsp+OJQ=="
},
+ "safe-regex-test": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz",
+ "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==",
+ "requires": {
+ "call-bind": "^1.0.2",
+ "get-intrinsic": "^1.1.3",
+ "is-regex": "^1.1.4"
+ }
+ },
"safer-buffer": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
},
"salmon-adapter-sdk": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/salmon-adapter-sdk/-/salmon-adapter-sdk-1.0.0.tgz",
- "integrity": "sha512-mbZGlOcApxET1FQBeQPGG+Y2DhawIPULyVhGMSMCwf0wYJDaiyToqL90ZbsqkKklXnN5vmsfVsPo0+R/cchy2Q==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/salmon-adapter-sdk/-/salmon-adapter-sdk-1.1.0.tgz",
+ "integrity": "sha512-8uKgA4+pwtUZRJ1k4tgA+EdF3yqHAst+wrdEJEqS8y9quYEuEGb5+EFonRdNzW1A9N0lX4PBHFalAlbiQ5BZtg==",
"requires": {
"@project-serum/sol-wallet-adapter": "^0.2.0",
"eventemitter3": "^4.0.7"
@@ -19992,13 +20571,13 @@
"dev": true
},
"socket.io-client": {
- "version": "4.5.2",
- "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.2.tgz",
- "integrity": "sha512-naqYfFu7CLDiQ1B7AlLhRXKX3gdeaIMfgigwavDzgJoIUYulc1qHH5+2XflTsXTPY7BlPH5rppJyUjhjrKQKLg==",
+ "version": "4.5.3",
+ "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.3.tgz",
+ "integrity": "sha512-I/hqDYpQ6JKwtJOf5ikM+Qz+YujZPMEl6qBLhxiP0nX+TfXKhW4KZZG8lamrD6Y5ngjmYHreESVasVCgi5Kl3A==",
"requires": {
"@socket.io/component-emitter": "~3.1.0",
"debug": "~4.3.2",
- "engine.io-client": "~6.2.1",
+ "engine.io-client": "~6.2.3",
"socket.io-parser": "~4.2.0"
}
},
@@ -20121,42 +20700,22 @@
"integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
"requires": {
"safe-buffer": "~5.2.0"
- },
- "dependencies": {
- "safe-buffer": {
- "version": "5.2.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
- }
}
},
"string-width": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
- "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
"requires": {
- "emoji-regex": "^7.0.1",
- "is-fullwidth-code-point": "^2.0.0",
- "strip-ansi": "^5.1.0"
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
},
"dependencies": {
- "ansi-regex": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz",
- "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g=="
- },
"emoji-regex": {
- "version": "7.0.3",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
- "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="
- },
- "strip-ansi": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
- "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
- "requires": {
- "ansi-regex": "^4.1.0"
- }
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
}
}
},
@@ -20264,9 +20823,9 @@
"integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg=="
},
"semver": {
- "version": "7.3.7",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
- "integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
+ "version": "7.3.8",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz",
+ "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==",
"requires": {
"lru-cache": "^6.0.0"
}
@@ -20279,11 +20838,11 @@
"integrity": "sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ=="
},
"supports-color": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"requires": {
- "has-flag": "^4.0.0"
+ "has-flag": "^3.0.0"
}
},
"supports-preserve-symlinks-flag": {
@@ -20335,6 +20894,11 @@
"util-deprecate": "~1.0.1"
}
},
+ "safe-buffer": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
+ "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
+ },
"string_decoder": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
@@ -20346,9 +20910,9 @@
}
},
"tiny-invariant": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.2.0.tgz",
- "integrity": "sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg=="
+ "version": "1.3.1",
+ "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz",
+ "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw=="
},
"tmp": {
"version": "0.0.33",
@@ -20436,6 +21000,17 @@
"json5": "^1.0.1",
"minimist": "^1.2.6",
"strip-bom": "^3.0.0"
+ },
+ "dependencies": {
+ "json5": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz",
+ "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==",
+ "dev": true,
+ "requires": {
+ "minimist": "^1.2.0"
+ }
+ }
}
},
"tslib": {
@@ -20475,10 +21050,9 @@
}
},
"type-fest": {
- "version": "0.20.2",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
- "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
- "dev": true
+ "version": "0.21.3",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
+ "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="
},
"typescript": {
"version": "4.8.3",
@@ -20519,9 +21093,9 @@
}
},
"update-browserslist-db": {
- "version": "1.0.8",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.8.tgz",
- "integrity": "sha512-GHg7C4M7oJSJYW/ED/5QOJ7nL/E0lwTOBGsOorA7jqHr8ExUhPfwAotIAmdSw/LWv3SMLSNpzTAgeLG9zaZKTA==",
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz",
+ "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==",
"peer": true,
"requires": {
"escalade": "^3.1.1",
@@ -20561,24 +21135,23 @@
"requires": {}
},
"utf-8-validate": {
- "version": "5.0.9",
- "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.9.tgz",
- "integrity": "sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q==",
+ "version": "5.0.10",
+ "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.10.tgz",
+ "integrity": "sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==",
"optional": true,
"requires": {
"node-gyp-build": "^4.3.0"
}
},
"util": {
- "version": "0.12.4",
- "resolved": "https://registry.npmjs.org/util/-/util-0.12.4.tgz",
- "integrity": "sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==",
+ "version": "0.12.5",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz",
+ "integrity": "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==",
"requires": {
"inherits": "^2.0.3",
"is-arguments": "^1.0.4",
"is-generator-function": "^1.0.7",
"is-typed-array": "^1.1.3",
- "safe-buffer": "^5.1.2",
"which-typed-array": "^1.1.2"
}
},
@@ -20615,10 +21188,18 @@
"rxjs": "^7.1.0"
},
"dependencies": {
+ "axios": {
+ "version": "0.21.4",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz",
+ "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==",
+ "requires": {
+ "follow-redirects": "^1.14.0"
+ }
+ },
"rxjs": {
- "version": "7.5.6",
- "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz",
- "integrity": "sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==",
+ "version": "7.5.7",
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz",
+ "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==",
"requires": {
"tslib": "^2.1.0"
}
@@ -20709,48 +21290,35 @@
"dev": true
},
"wrap-ansi": {
- "version": "5.1.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
- "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==",
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
"requires": {
- "ansi-styles": "^3.2.0",
- "string-width": "^3.0.0",
- "strip-ansi": "^5.0.0"
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
},
"dependencies": {
- "ansi-regex": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz",
- "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g=="
- },
"ansi-styles": {
- "version": "3.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
- "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"requires": {
- "color-convert": "^1.9.0"
+ "color-convert": "^2.0.1"
}
},
"color-convert": {
- "version": "1.9.3",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
- "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"requires": {
- "color-name": "1.1.3"
+ "color-name": "~1.1.4"
}
},
"color-name": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
- "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
- },
- "strip-ansi": {
- "version": "5.2.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
- "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
- "requires": {
- "ansi-regex": "^4.1.0"
- }
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
}
}
},
@@ -20807,6 +21375,16 @@
"yargs-parser": "^13.1.2"
},
"dependencies": {
+ "ansi-regex": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz",
+ "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g=="
+ },
+ "emoji-regex": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz",
+ "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="
+ },
"find-up": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
@@ -20815,6 +21393,11 @@
"locate-path": "^3.0.0"
}
},
+ "is-fullwidth-code-point": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
+ "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w=="
+ },
"locate-path": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
@@ -20844,6 +21427,24 @@
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
"integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ=="
+ },
+ "string-width": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
+ "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
+ "requires": {
+ "emoji-regex": "^7.0.1",
+ "is-fullwidth-code-point": "^2.0.0",
+ "strip-ansi": "^5.1.0"
+ }
+ },
+ "strip-ansi": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
+ "requires": {
+ "ansi-regex": "^4.1.0"
+ }
}
}
},
diff --git a/package.json b/package.json
index b1a2492..8d4c428 100644
--- a/package.json
+++ b/package.json
@@ -7,8 +7,8 @@
"build": "next build",
"start": "next start",
"lint": "next lint",
- "create-bld-token": "ts-node ./tokens/bld/index.ts",
- "reset-candy-machine": "rm tokens/candy-machine/cache.json && cd tokens/candy-machine && sugar launch"
+ "create-TRVL-token": "ts-node ./tokens/TRVL/index.ts",
+ "reset-candy-machine": "rm tokens/candy-machine/cache.json; cd tokens/candy-machine && sugar launch -r https://api.devnet.solana.com"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.9",
diff --git a/pages/_app.tsx b/pages/_app.tsx
index 67c84d6..26ef379 100644
--- a/pages/_app.tsx
+++ b/pages/_app.tsx
@@ -6,7 +6,11 @@ import WalletContextProvider from "../components/WalletContextProvider"
const colors = {
background: "1F1F1F",
accent: "#833BBE",
- bodyText: "rgba(255, 255, 255, 0.75)"
+ bodyText: "rgba(255, 255, 255, 0.75)",
+ secondaryPurple: "#CB8CFF",
+ containerBg: "rgba(255, 255, 255, 0.4)",
+ containerBgSecondary: "7EFFA7",
+ buttonGreen: "rgb(255,255,0.75)"
}
const theme = extendTheme({ colors })
diff --git a/pages/newMint.tsx b/pages/newMint.tsx
index f212220..7ed2de8 100644
--- a/pages/newMint.tsx
+++ b/pages/newMint.tsx
@@ -8,6 +8,7 @@ import { MouseEventHandler, useCallback, useEffect, useMemo, useState } from "re
import { ArrowForwardIcon } from '@chakra-ui/icons'
import { PublicKey } from '@solana/web3.js'
import { Metaplex, walletAdapterIdentity } from '@metaplex-foundation/js'
+import { useRouter } from 'next/router'
interface NewMintProps {
mint: PublicKey
@@ -36,9 +37,13 @@ const NewMint: NextPage = ({ mint }) => {
})
}, [mint, metaplex, walletAdapter])
+ const router = useRouter()
+
const handleClick: MouseEventHandler = useCallback(
- async (event) => {},
- []
+ async (event) => {
+ router.push(`/stake?mint=${mint}&imageSrc=${metadata?.image}`)
+ },
+ [router, mint, metadata]
)
return (
diff --git a/pages/stake.tsx b/pages/stake.tsx
new file mode 100644
index 0000000..df1ee7a
--- /dev/null
+++ b/pages/stake.tsx
@@ -0,0 +1,103 @@
+import { PublicKey } from "@solana/web3.js";
+import { NextPage } from "next";
+import { VStack, Heading, Text, Flex, HStack, Image, Center } from '@chakra-ui/react'
+import MainLayout from "../components/MainLayout";
+import { useState } from "react";
+import { StakeOptionsDisplay } from "../components/StakeOptionsDisplay";
+import { ItemBox } from "../components/ItemBox";
+
+const Stake: NextPage = ({
+ mint,
+ imageSrc
+}) => {
+ const [isStaking, setIsStaking] =useState(false)
+ const[level, setLevel] = useState(1)
+ return (
+
+
+
+ Level up your Nomad
+
+
+ Stake your NoMad to send them off for supplies, earning 1- $TRVL per day gaining you access
+ to randomized lootboxes full of upgrades for your Nomadic journey.
+
+
+
+
+
+
+
+ {isStaking ? "STAKING" : "UNSTAKED" }
+
+
+
+
+ LEVEL {level}
+
+
+
+
+
+
+
+ Gear
+
+
+ mock
+ mock
+
+
+
+
+ Loot Boxes
+
+
+ mock
+ mock
+ mock
+
+
+
+
+
+
+
+
+ )
+}
+
+interface StakeProps {
+ mint: PublicKey
+ imageSrc: string
+}
+
+Stake.getInitialProps = async ({ query }: any) => {
+ const { mint, imageSrc } = query
+
+ if (!mint || !imageSrc) throw { error: "No mint"}
+
+ try {
+ const mintPubkey = new PublicKey(mint)
+ return { mint:mintPubkey, imageSrc: imageSrc }
+ } catch {
+ throw {error: "invalid mint"}
+ }
+}
+
+export default Stake
\ No newline at end of file
diff --git a/public/1379.png b/public/1379.png
deleted file mode 100644
index 6d8a08f..0000000
Binary files a/public/1379.png and /dev/null differ
diff --git a/public/763.png b/public/763.png
deleted file mode 100644
index 2df6e80..0000000
Binary files a/public/763.png and /dev/null differ
diff --git a/tokens/TRVL/assets/Truck.png b/tokens/TRVL/assets/Truck.png
new file mode 100644
index 0000000..816390a
Binary files /dev/null and b/tokens/TRVL/assets/Truck.png differ
diff --git a/tokens/TRVL/cache.json b/tokens/TRVL/cache.json
new file mode 100644
index 0000000..0d20264
--- /dev/null
+++ b/tokens/TRVL/cache.json
@@ -0,0 +1,7 @@
+{
+ "mint":"6ieHgTpLmG6cZ2hYn5megMGRhhvfRWjrzMtJSoiYUTRd",
+ "imageUri":"https://arweave.net/LfViG8AjAdsYgd8hIEznYTw2sRiJOAUZfA-tnL8gGlo",
+ "metadataUri":"https://arweave.net/rPZp8Gs5ICdeJznhIR0f3rzq5uz087ej8tb8vvzM3yo",
+ "tokenMetadata":"9878CoVriebR2MNYYrHZ6tfXMxEHxkaJ5UYaiiNf6aJk",
+ "metadaTransaction":"4cVXGmpkXwsBR8nybtGa4oGekzScTYcTFPPY9Lo3Kf1bqcHdaKjyKhA39ARwZY84ECAdjAQ5oTJDpsyS8hwrgo1a"
+}
\ No newline at end of file
diff --git a/tokens/bld/index.ts b/tokens/TRVL/index.ts
similarity index 90%
rename from tokens/bld/index.ts
rename to tokens/TRVL/index.ts
index aa9ea7a..c546ff1 100644
--- a/tokens/bld/index.ts
+++ b/tokens/TRVL/index.ts
@@ -14,13 +14,13 @@ import {
} from "@metaplex-foundation/mpl-token-metadata"
import * as fs from "fs"
-const TOKEN_NAME = "CoinPad"
-const TOKEN_SYMBOL = "CP"
-const TOKEN_DESCRIPTION ="A magical token for the wonder-stricken nomad"
-const TOKEN_IMAGE_PATH = "tokens/bld/assets/Hero-head.png"
-const TOKEN_IMAGE_NAME = "Hero-head.png"
+const TOKEN_NAME = "CoinPad Travel Tokens"
+const TOKEN_SYMBOL = "TRVL"
+const TOKEN_DESCRIPTION ="A magical token for the wonder-stricken NoMad"
+const TOKEN_IMAGE_PATH = "tokens/TRVL/assets/truck.png"
+const TOKEN_IMAGE_NAME = "truck.png"
-async function createBldToken(
+async function createTrvlToken(
connection: web3.Connection,
payer: web3.Keypair,
){
@@ -91,7 +91,7 @@ async function createBldToken(
)
fs.writeFileSync(
- "tokens/bld/cache.json",
+ "tokens/TRVL/cache.json",
JSON.stringify({
mint: tokenMint.toBase58(),
imageUri: imageUri,
@@ -106,7 +106,7 @@ async function main() {
const connection = new web3.Connection(web3.clusterApiUrl("devnet"))
const payer = await initializeKeypair(connection)
- await createBldToken(connection, payer)
+ await createTrvlToken(connection, payer)
}
diff --git a/tokens/bld/initializeKeypair.ts b/tokens/TRVL/initializeKeypair.ts
similarity index 100%
rename from tokens/bld/initializeKeypair.ts
rename to tokens/TRVL/initializeKeypair.ts
diff --git a/tokens/bld/assets/Hero-head.png b/tokens/bld/assets/Hero-head.png
deleted file mode 100644
index 5eddbc0..0000000
Binary files a/tokens/bld/assets/Hero-head.png and /dev/null differ
diff --git a/tokens/bld/assets/a.svg b/tokens/bld/assets/a.svg
deleted file mode 100644
index 40330a8..0000000
--- a/tokens/bld/assets/a.svg
+++ /dev/null
@@ -1,1234 +0,0 @@
-
-
-
diff --git a/tokens/bld/cache.json b/tokens/bld/cache.json
deleted file mode 100644
index 3bece65..0000000
--- a/tokens/bld/cache.json
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "mint":"G4E9UDYn1Nm8QE6uhsBGNM3uEc4wyYyr7AcpTukeHo8y",
- "imageUri":"https://arweave.net/XP7oZ4lcX1TpjaPUWIC_Csucp5BY4kOdA-7w8G_sXQ4",
- "metadataUri":"https://arweave.net/HH80jTcZb5103IQNyVO0bLI0PEhn-8nHohe-12N-540",
- "tokenMetadata":"7nAHqbRpooZzDhHrb3C9y7789xr9ddj48XzGWVcd3bbD",
- "metadaTransaction":"4gybbgMTxJbUXtX11JkREV5pAyPyHyrzmzqZuSiTEr9Jz7StVac7K8ZozhEFsWgXGeZkyi41R5RNM4eacvqcpaPb"
-}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/0.json b/tokens/candy-machine/assets/0.json
index 8f9bf5c..bdc87b0 100644
--- a/tokens/candy-machine/assets/0.json
+++ b/tokens/candy-machine/assets/0.json
@@ -1,7 +1,7 @@
{
- "name": "Grumpy Cat",
- "symbol": "CPAD",
- "description": "legendary travelers: your gateway to the CoinPad network",
+ "name": "50s CornMad",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
"image": "0.png",
"attributes": [
{
@@ -10,7 +10,11 @@
},
{
"trait_type": "Season",
- "value": "Winter"
+ "value": "Fall"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Cornifferous"
}
],
"properties": {
diff --git a/tokens/candy-machine/assets/0.png b/tokens/candy-machine/assets/0.png
index f56c5e1..3f02e68 100644
Binary files a/tokens/candy-machine/assets/0.png and b/tokens/candy-machine/assets/0.png differ
diff --git a/tokens/candy-machine/assets/1.json b/tokens/candy-machine/assets/1.json
index 0977187..8176f19 100644
--- a/tokens/candy-machine/assets/1.json
+++ b/tokens/candy-machine/assets/1.json
@@ -1,16 +1,20 @@
{
- "name": "Cotton Candy Lobster",
- "symbol": "CPAD",
- "description": "legendary travelers: your gateway to the CoinPad network",
+ "name": "50s CornMad",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
"image": "1.png",
"attributes": [
{
"trait_type": "Travels",
- "value": "Quarterly"
+ "value": "Monthly"
},
{
"trait_type": "Season",
"value": "Spring"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Cornifferous"
}
],
"properties": {
diff --git a/tokens/candy-machine/assets/1.png b/tokens/candy-machine/assets/1.png
index 923b38c..a905eb2 100644
Binary files a/tokens/candy-machine/assets/1.png and b/tokens/candy-machine/assets/1.png differ
diff --git a/tokens/candy-machine/assets/10.json b/tokens/candy-machine/assets/10.json
new file mode 100644
index 0000000..78a3ec8
--- /dev/null
+++ b/tokens/candy-machine/assets/10.json
@@ -0,0 +1,28 @@
+{
+ "name": "Grumpy Cat",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "10.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Rarely"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Spring"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Cats"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "10.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/10.png b/tokens/candy-machine/assets/10.png
new file mode 100644
index 0000000..2f5ffab
Binary files /dev/null and b/tokens/candy-machine/assets/10.png differ
diff --git a/tokens/candy-machine/assets/11.json b/tokens/candy-machine/assets/11.json
new file mode 100644
index 0000000..3d977e8
--- /dev/null
+++ b/tokens/candy-machine/assets/11.json
@@ -0,0 +1,28 @@
+{
+ "name": "Grumpy Cat 2",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "11.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Rarely"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Spring"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Cats"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "11.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/11.png b/tokens/candy-machine/assets/11.png
new file mode 100644
index 0000000..2ce6d4f
Binary files /dev/null and b/tokens/candy-machine/assets/11.png differ
diff --git a/tokens/candy-machine/assets/12.json b/tokens/candy-machine/assets/12.json
new file mode 100644
index 0000000..e727dca
--- /dev/null
+++ b/tokens/candy-machine/assets/12.json
@@ -0,0 +1,28 @@
+{
+ "name": "Grumpy Cat 3",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "12.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Rarely"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Cats"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "12.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/12.png b/tokens/candy-machine/assets/12.png
new file mode 100644
index 0000000..22e95cb
Binary files /dev/null and b/tokens/candy-machine/assets/12.png differ
diff --git a/tokens/candy-machine/assets/13.json b/tokens/candy-machine/assets/13.json
new file mode 100644
index 0000000..66a822e
--- /dev/null
+++ b/tokens/candy-machine/assets/13.json
@@ -0,0 +1,28 @@
+{
+ "name": "Ser Dogster",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "13.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Rarely"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Dream Lobsters"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "13.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/13.png b/tokens/candy-machine/assets/13.png
new file mode 100644
index 0000000..e38571e
Binary files /dev/null and b/tokens/candy-machine/assets/13.png differ
diff --git a/tokens/candy-machine/assets/14.json b/tokens/candy-machine/assets/14.json
new file mode 100644
index 0000000..580072d
--- /dev/null
+++ b/tokens/candy-machine/assets/14.json
@@ -0,0 +1,28 @@
+{
+ "name": "Lob-ser",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "14.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Rarely"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Dream Lobsters"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "14.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/14.png b/tokens/candy-machine/assets/14.png
new file mode 100644
index 0000000..9d429c3
Binary files /dev/null and b/tokens/candy-machine/assets/14.png differ
diff --git a/tokens/candy-machine/assets/15.json b/tokens/candy-machine/assets/15.json
new file mode 100644
index 0000000..c5f45c7
--- /dev/null
+++ b/tokens/candy-machine/assets/15.json
@@ -0,0 +1,28 @@
+{
+ "name": "Noble Crustie",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "15.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Rarely"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Dream Lobsters"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "15.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/15.png b/tokens/candy-machine/assets/15.png
new file mode 100644
index 0000000..4fd513d
Binary files /dev/null and b/tokens/candy-machine/assets/15.png differ
diff --git a/tokens/candy-machine/assets/16.json b/tokens/candy-machine/assets/16.json
new file mode 100644
index 0000000..69c0a0d
--- /dev/null
+++ b/tokens/candy-machine/assets/16.json
@@ -0,0 +1,28 @@
+{
+ "name": "Lobster Mobster",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "16.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Rarely"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Dream Lobsters"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "16.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/16.png b/tokens/candy-machine/assets/16.png
new file mode 100644
index 0000000..3e6434d
Binary files /dev/null and b/tokens/candy-machine/assets/16.png differ
diff --git a/tokens/candy-machine/assets/17.json b/tokens/candy-machine/assets/17.json
new file mode 100644
index 0000000..badb4eb
--- /dev/null
+++ b/tokens/candy-machine/assets/17.json
@@ -0,0 +1,28 @@
+{
+ "name": "Cotton Candy Lobster",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "17.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Rarely"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Dream Lobsters"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "17.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/17.png b/tokens/candy-machine/assets/17.png
new file mode 100644
index 0000000..96d3903
Binary files /dev/null and b/tokens/candy-machine/assets/17.png differ
diff --git a/tokens/candy-machine/assets/18.json b/tokens/candy-machine/assets/18.json
new file mode 100644
index 0000000..8b1f6e5
--- /dev/null
+++ b/tokens/candy-machine/assets/18.json
@@ -0,0 +1,28 @@
+{
+ "name": "Young Walden",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "18.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Constantly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "All Seasons"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Dreamer"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "18.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/18.png b/tokens/candy-machine/assets/18.png
new file mode 100644
index 0000000..0124907
Binary files /dev/null and b/tokens/candy-machine/assets/18.png differ
diff --git a/tokens/candy-machine/assets/19.json b/tokens/candy-machine/assets/19.json
new file mode 100644
index 0000000..2b43f7f
--- /dev/null
+++ b/tokens/candy-machine/assets/19.json
@@ -0,0 +1,28 @@
+{
+ "name": "Degenic Nomad 1",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "19.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Yearly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Degens"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "19.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/19.png b/tokens/candy-machine/assets/19.png
new file mode 100644
index 0000000..450daa3
Binary files /dev/null and b/tokens/candy-machine/assets/19.png differ
diff --git a/tokens/candy-machine/assets/2.json b/tokens/candy-machine/assets/2.json
index 1fbb1a2..745e3a8 100644
--- a/tokens/candy-machine/assets/2.json
+++ b/tokens/candy-machine/assets/2.json
@@ -1,16 +1,20 @@
{
- "name": "Walden",
- "symbol": "CPAD",
- "description": "legendary travelers: your gateway to the CoinPad network",
+ "name": "Candy CornMad",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
"image": "2.png",
"attributes": [
{
"trait_type": "Travels",
- "value": "Monthly"
+ "value": "Quarterly"
},
{
"trait_type": "Season",
- "value": "Fall"
+ "value": "Summer"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Cornifferous"
}
],
"properties": {
diff --git a/tokens/candy-machine/assets/2.png b/tokens/candy-machine/assets/2.png
index ab398c2..84c6ac0 100644
Binary files a/tokens/candy-machine/assets/2.png and b/tokens/candy-machine/assets/2.png differ
diff --git a/tokens/candy-machine/assets/20.json b/tokens/candy-machine/assets/20.json
new file mode 100644
index 0000000..c67dfa1
--- /dev/null
+++ b/tokens/candy-machine/assets/20.json
@@ -0,0 +1,28 @@
+{
+ "name": "Degenic Nomad 2",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "20.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Yearly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Degens"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "20.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/20.png b/tokens/candy-machine/assets/20.png
new file mode 100644
index 0000000..499ce82
Binary files /dev/null and b/tokens/candy-machine/assets/20.png differ
diff --git a/tokens/candy-machine/assets/21.json b/tokens/candy-machine/assets/21.json
new file mode 100644
index 0000000..494cd8d
--- /dev/null
+++ b/tokens/candy-machine/assets/21.json
@@ -0,0 +1,28 @@
+{
+ "name": "Degenic Nomad 3",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "21.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Yearly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Degens"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "21.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/21.png b/tokens/candy-machine/assets/21.png
new file mode 100644
index 0000000..2bc84b2
Binary files /dev/null and b/tokens/candy-machine/assets/21.png differ
diff --git a/tokens/candy-machine/assets/22.json b/tokens/candy-machine/assets/22.json
new file mode 100644
index 0000000..bf37a81
--- /dev/null
+++ b/tokens/candy-machine/assets/22.json
@@ -0,0 +1,28 @@
+{
+ "name": "Degenic Nomad 4",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "22.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Yearly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Degens"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "22.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/22.png b/tokens/candy-machine/assets/22.png
new file mode 100644
index 0000000..585ff98
Binary files /dev/null and b/tokens/candy-machine/assets/22.png differ
diff --git a/tokens/candy-machine/assets/23.json b/tokens/candy-machine/assets/23.json
new file mode 100644
index 0000000..444ca0b
--- /dev/null
+++ b/tokens/candy-machine/assets/23.json
@@ -0,0 +1,28 @@
+{
+ "name": "Degenic Nomad 5",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "23.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Yearly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Degens"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "23.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/23.png b/tokens/candy-machine/assets/23.png
new file mode 100644
index 0000000..562994c
Binary files /dev/null and b/tokens/candy-machine/assets/23.png differ
diff --git a/tokens/candy-machine/assets/24.json b/tokens/candy-machine/assets/24.json
new file mode 100644
index 0000000..2478c14
--- /dev/null
+++ b/tokens/candy-machine/assets/24.json
@@ -0,0 +1,28 @@
+{
+ "name": "Degenic Nomad 6",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "24.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Yearly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Degens"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "24.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/24.png b/tokens/candy-machine/assets/24.png
new file mode 100644
index 0000000..4a6dfd9
Binary files /dev/null and b/tokens/candy-machine/assets/24.png differ
diff --git a/tokens/candy-machine/assets/25.json b/tokens/candy-machine/assets/25.json
new file mode 100644
index 0000000..a8aa819
--- /dev/null
+++ b/tokens/candy-machine/assets/25.json
@@ -0,0 +1,28 @@
+{
+ "name": "Degenic Nomad 7",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "25.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Yearly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Degens"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "25.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/25.png b/tokens/candy-machine/assets/25.png
new file mode 100644
index 0000000..d1ee717
Binary files /dev/null and b/tokens/candy-machine/assets/25.png differ
diff --git a/tokens/candy-machine/assets/26.json b/tokens/candy-machine/assets/26.json
new file mode 100644
index 0000000..0b395bc
--- /dev/null
+++ b/tokens/candy-machine/assets/26.json
@@ -0,0 +1,28 @@
+{
+ "name": "Degenic Nomad 8",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "26.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Yearly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Degens"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "26.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/26.png b/tokens/candy-machine/assets/26.png
new file mode 100644
index 0000000..a6e39c0
Binary files /dev/null and b/tokens/candy-machine/assets/26.png differ
diff --git a/tokens/candy-machine/assets/27.json b/tokens/candy-machine/assets/27.json
new file mode 100644
index 0000000..cd9e221
--- /dev/null
+++ b/tokens/candy-machine/assets/27.json
@@ -0,0 +1,28 @@
+{
+ "name": "Degenic Nomad 9",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "27.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Yearly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Degens"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "27.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/27.png b/tokens/candy-machine/assets/27.png
new file mode 100644
index 0000000..efccb08
Binary files /dev/null and b/tokens/candy-machine/assets/27.png differ
diff --git a/tokens/candy-machine/assets/28.json b/tokens/candy-machine/assets/28.json
new file mode 100644
index 0000000..2c30643
--- /dev/null
+++ b/tokens/candy-machine/assets/28.json
@@ -0,0 +1,28 @@
+{
+ "name": "Degenic Nomad 10",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "28.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Yearly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Degens"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "28.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/28.png b/tokens/candy-machine/assets/28.png
new file mode 100644
index 0000000..f1645be
Binary files /dev/null and b/tokens/candy-machine/assets/28.png differ
diff --git a/tokens/candy-machine/assets/29.json b/tokens/candy-machine/assets/29.json
new file mode 100644
index 0000000..e636e78
--- /dev/null
+++ b/tokens/candy-machine/assets/29.json
@@ -0,0 +1,28 @@
+{
+ "name": "Degenic Nomad 11",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "29.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Yearly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Degens"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "29.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/29.png b/tokens/candy-machine/assets/29.png
new file mode 100644
index 0000000..7699d88
Binary files /dev/null and b/tokens/candy-machine/assets/29.png differ
diff --git a/tokens/candy-machine/assets/3.json b/tokens/candy-machine/assets/3.json
index 2dbcff6..524f5be 100644
--- a/tokens/candy-machine/assets/3.json
+++ b/tokens/candy-machine/assets/3.json
@@ -1,16 +1,20 @@
{
- "name": "Experiencer",
- "symbol": "CPAD",
- "description": "legendary travelers: your gateway to the CoinPad network",
+ "name": "Dream Traveler",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
"image": "3.png",
"attributes": [
{
"trait_type": "Travels",
- "value": "Weekly"
+ "value": "Randomly"
},
{
"trait_type": "Season",
- "value": "Summer"
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Gods"
}
],
"properties": {
diff --git a/tokens/candy-machine/assets/3.png b/tokens/candy-machine/assets/3.png
index 7ff6540..a90b3cb 100644
Binary files a/tokens/candy-machine/assets/3.png and b/tokens/candy-machine/assets/3.png differ
diff --git a/tokens/candy-machine/assets/30.json b/tokens/candy-machine/assets/30.json
new file mode 100644
index 0000000..fb97433
--- /dev/null
+++ b/tokens/candy-machine/assets/30.json
@@ -0,0 +1,28 @@
+{
+ "name": "Degenic Nomad 12",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "30.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Yearly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Degens"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "30.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/30.png b/tokens/candy-machine/assets/30.png
new file mode 100644
index 0000000..b9a031e
Binary files /dev/null and b/tokens/candy-machine/assets/30.png differ
diff --git a/tokens/candy-machine/assets/31.json b/tokens/candy-machine/assets/31.json
new file mode 100644
index 0000000..11d4b87
--- /dev/null
+++ b/tokens/candy-machine/assets/31.json
@@ -0,0 +1,28 @@
+{
+ "name": "Degenic Nomad 13",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "31.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Yearly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Degens"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "31.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/31.png b/tokens/candy-machine/assets/31.png
new file mode 100644
index 0000000..7d9ff27
Binary files /dev/null and b/tokens/candy-machine/assets/31.png differ
diff --git a/tokens/candy-machine/assets/32.json b/tokens/candy-machine/assets/32.json
new file mode 100644
index 0000000..3948b9a
--- /dev/null
+++ b/tokens/candy-machine/assets/32.json
@@ -0,0 +1,28 @@
+{
+ "name": "No Fks Given Nomad",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "32.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Quarterly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Spring"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Subjectives"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "32.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/32.png b/tokens/candy-machine/assets/32.png
new file mode 100644
index 0000000..d11a722
Binary files /dev/null and b/tokens/candy-machine/assets/32.png differ
diff --git a/tokens/candy-machine/assets/33.json b/tokens/candy-machine/assets/33.json
new file mode 100644
index 0000000..1b56e16
--- /dev/null
+++ b/tokens/candy-machine/assets/33.json
@@ -0,0 +1,28 @@
+{
+ "name": "Worryless Nomad",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "33.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Quarterly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Spring"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Subjectives"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "33.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/33.png b/tokens/candy-machine/assets/33.png
new file mode 100644
index 0000000..2a86ea6
Binary files /dev/null and b/tokens/candy-machine/assets/33.png differ
diff --git a/tokens/candy-machine/assets/34.json b/tokens/candy-machine/assets/34.json
new file mode 100644
index 0000000..c400f78
--- /dev/null
+++ b/tokens/candy-machine/assets/34.json
@@ -0,0 +1,28 @@
+{
+ "name": "survided Tide-pods",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "34.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Quarterly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Spring"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Subjectives"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "34.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/34.png b/tokens/candy-machine/assets/34.png
new file mode 100644
index 0000000..690496f
Binary files /dev/null and b/tokens/candy-machine/assets/34.png differ
diff --git a/tokens/candy-machine/assets/35.json b/tokens/candy-machine/assets/35.json
new file mode 100644
index 0000000..43656aa
--- /dev/null
+++ b/tokens/candy-machine/assets/35.json
@@ -0,0 +1,28 @@
+{
+ "name": "Better-Be-Nice Nomad",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "35.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Quarterly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Spring"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Subjectives"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "35.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/35.png b/tokens/candy-machine/assets/35.png
new file mode 100644
index 0000000..dae18e6
Binary files /dev/null and b/tokens/candy-machine/assets/35.png differ
diff --git a/tokens/candy-machine/assets/36.json b/tokens/candy-machine/assets/36.json
new file mode 100644
index 0000000..46c862c
--- /dev/null
+++ b/tokens/candy-machine/assets/36.json
@@ -0,0 +1,28 @@
+{
+ "name": "Wind Walker",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "36.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Monthly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Spring"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Travel Legends"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "36.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/36.png b/tokens/candy-machine/assets/36.png
new file mode 100644
index 0000000..eaf6c6e
Binary files /dev/null and b/tokens/candy-machine/assets/36.png differ
diff --git a/tokens/candy-machine/assets/37.json b/tokens/candy-machine/assets/37.json
new file mode 100644
index 0000000..c260ead
--- /dev/null
+++ b/tokens/candy-machine/assets/37.json
@@ -0,0 +1,28 @@
+{
+ "name": "The Thinker",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "37.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Monthly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Spring"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Travel Legends"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "37.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/37.png b/tokens/candy-machine/assets/37.png
new file mode 100644
index 0000000..d86a531
Binary files /dev/null and b/tokens/candy-machine/assets/37.png differ
diff --git a/tokens/candy-machine/assets/38.json b/tokens/candy-machine/assets/38.json
new file mode 100644
index 0000000..79a31b9
--- /dev/null
+++ b/tokens/candy-machine/assets/38.json
@@ -0,0 +1,28 @@
+{
+ "name": "Recharged Nomad",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "38.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Monthly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Spring"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Travel Legends"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "38.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/38.png b/tokens/candy-machine/assets/38.png
new file mode 100644
index 0000000..1d14d9d
Binary files /dev/null and b/tokens/candy-machine/assets/38.png differ
diff --git a/tokens/candy-machine/assets/39.json b/tokens/candy-machine/assets/39.json
new file mode 100644
index 0000000..bba118b
--- /dev/null
+++ b/tokens/candy-machine/assets/39.json
@@ -0,0 +1,28 @@
+{
+ "name": "Passport",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "39.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Monthly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Spring"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Travel Legends"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "39.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/39.png b/tokens/candy-machine/assets/39.png
new file mode 100644
index 0000000..d9d6aa9
Binary files /dev/null and b/tokens/candy-machine/assets/39.png differ
diff --git a/tokens/candy-machine/assets/4.json b/tokens/candy-machine/assets/4.json
index cdd6119..54389dd 100644
--- a/tokens/candy-machine/assets/4.json
+++ b/tokens/candy-machine/assets/4.json
@@ -1,16 +1,20 @@
{
- "name": "Futurist",
- "symbol": "CPAD",
- "description": "legendary travelers: your gateway to the CoinPad network",
- "image": "3.png",
+ "name": "SolarCity Nomad",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "4.png",
"attributes": [
{
"trait_type": "Travels",
- "value": "Daily"
+ "value": "yearly"
},
{
"trait_type": "Season",
- "value": "All"
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Tribes"
}
],
"properties": {
diff --git a/tokens/candy-machine/assets/4.png b/tokens/candy-machine/assets/4.png
index b5f9330..1d2cbd4 100644
Binary files a/tokens/candy-machine/assets/4.png and b/tokens/candy-machine/assets/4.png differ
diff --git a/tokens/candy-machine/assets/40.json b/tokens/candy-machine/assets/40.json
new file mode 100644
index 0000000..e886136
--- /dev/null
+++ b/tokens/candy-machine/assets/40.json
@@ -0,0 +1,28 @@
+{
+ "name": "Relic",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "40.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Monthly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Spring"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Travel Legends"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "40.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/40.png b/tokens/candy-machine/assets/40.png
new file mode 100644
index 0000000..cc2a6fe
Binary files /dev/null and b/tokens/candy-machine/assets/40.png differ
diff --git a/tokens/candy-machine/assets/41.json b/tokens/candy-machine/assets/41.json
new file mode 100644
index 0000000..6dff5e1
--- /dev/null
+++ b/tokens/candy-machine/assets/41.json
@@ -0,0 +1,28 @@
+{
+ "name": "Steadfast",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "41.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Monthly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Spring"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Travel Legends"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "41.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/41.png b/tokens/candy-machine/assets/41.png
new file mode 100644
index 0000000..d46ed00
Binary files /dev/null and b/tokens/candy-machine/assets/41.png differ
diff --git a/tokens/candy-machine/assets/42.json b/tokens/candy-machine/assets/42.json
new file mode 100644
index 0000000..c5347e0
--- /dev/null
+++ b/tokens/candy-machine/assets/42.json
@@ -0,0 +1,28 @@
+{
+ "name": "Relic",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "42.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Monthly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Spring"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Travel Legends"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "42.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/42.png b/tokens/candy-machine/assets/42.png
new file mode 100644
index 0000000..4376c03
Binary files /dev/null and b/tokens/candy-machine/assets/42.png differ
diff --git a/tokens/candy-machine/assets/43.json b/tokens/candy-machine/assets/43.json
new file mode 100644
index 0000000..7563238
--- /dev/null
+++ b/tokens/candy-machine/assets/43.json
@@ -0,0 +1,28 @@
+{
+ "name": "The Ancient One",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "43.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Monthly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Spring"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Travel Legends"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "43.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/43.png b/tokens/candy-machine/assets/43.png
new file mode 100644
index 0000000..a69b8a0
Binary files /dev/null and b/tokens/candy-machine/assets/43.png differ
diff --git a/tokens/candy-machine/assets/44.json b/tokens/candy-machine/assets/44.json
new file mode 100644
index 0000000..b5b6d90
--- /dev/null
+++ b/tokens/candy-machine/assets/44.json
@@ -0,0 +1,28 @@
+{
+ "name": "Take Me With You",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "44.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Monthly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Spring"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Travel Legends"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "44.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/44.png b/tokens/candy-machine/assets/44.png
new file mode 100644
index 0000000..aa8eb97
Binary files /dev/null and b/tokens/candy-machine/assets/44.png differ
diff --git a/tokens/candy-machine/assets/45.json b/tokens/candy-machine/assets/45.json
new file mode 100644
index 0000000..34898ec
--- /dev/null
+++ b/tokens/candy-machine/assets/45.json
@@ -0,0 +1,28 @@
+{
+ "name": "Vespucci",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "45.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Monthly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Spring"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Travel Legends"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "45.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/45.png b/tokens/candy-machine/assets/45.png
new file mode 100644
index 0000000..13ecb4b
Binary files /dev/null and b/tokens/candy-machine/assets/45.png differ
diff --git a/tokens/candy-machine/assets/46.json b/tokens/candy-machine/assets/46.json
new file mode 100644
index 0000000..6fd33df
--- /dev/null
+++ b/tokens/candy-machine/assets/46.json
@@ -0,0 +1,28 @@
+{
+ "name": "Degenic Nomad 14",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "46.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Yearly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Winter"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Degens"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "46.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/46.png b/tokens/candy-machine/assets/46.png
new file mode 100644
index 0000000..6daab48
Binary files /dev/null and b/tokens/candy-machine/assets/46.png differ
diff --git a/tokens/candy-machine/assets/47.json b/tokens/candy-machine/assets/47.json
new file mode 100644
index 0000000..197cdc5
--- /dev/null
+++ b/tokens/candy-machine/assets/47.json
@@ -0,0 +1,28 @@
+{
+ "name": "Blockfather Special 4",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "47.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "yes"
+ },
+ {
+ "trait_type": "Season",
+ "value": "yes"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Secret"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "47.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/47.png b/tokens/candy-machine/assets/47.png
new file mode 100644
index 0000000..36bc7ba
Binary files /dev/null and b/tokens/candy-machine/assets/47.png differ
diff --git a/tokens/candy-machine/assets/48.json b/tokens/candy-machine/assets/48.json
new file mode 100644
index 0000000..0aef94a
--- /dev/null
+++ b/tokens/candy-machine/assets/48.json
@@ -0,0 +1,28 @@
+{
+ "name": "Blockfather Special 3",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "48.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "yes"
+ },
+ {
+ "trait_type": "Season",
+ "value": "yes"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Secret"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "48.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/48.png b/tokens/candy-machine/assets/48.png
new file mode 100644
index 0000000..5385f3b
Binary files /dev/null and b/tokens/candy-machine/assets/48.png differ
diff --git a/tokens/candy-machine/assets/49.json b/tokens/candy-machine/assets/49.json
new file mode 100644
index 0000000..4a24bb6
--- /dev/null
+++ b/tokens/candy-machine/assets/49.json
@@ -0,0 +1,28 @@
+{
+ "name": "Blockfather Special 2",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "49.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "yes"
+ },
+ {
+ "trait_type": "Season",
+ "value": "yes"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Secret"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "49.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/49.png b/tokens/candy-machine/assets/49.png
new file mode 100644
index 0000000..82134d0
Binary files /dev/null and b/tokens/candy-machine/assets/49.png differ
diff --git a/tokens/candy-machine/assets/5.json b/tokens/candy-machine/assets/5.json
new file mode 100644
index 0000000..3123df5
--- /dev/null
+++ b/tokens/candy-machine/assets/5.json
@@ -0,0 +1,28 @@
+{
+ "name": "Vibiest Nomad",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "5.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Frequently"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Summer"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Vibies"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "5.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/5.png b/tokens/candy-machine/assets/5.png
new file mode 100644
index 0000000..536de48
Binary files /dev/null and b/tokens/candy-machine/assets/5.png differ
diff --git a/tokens/candy-machine/assets/50.json b/tokens/candy-machine/assets/50.json
new file mode 100644
index 0000000..79db247
--- /dev/null
+++ b/tokens/candy-machine/assets/50.json
@@ -0,0 +1,28 @@
+{
+ "name": "Blockfather Special 1",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "50.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "yes"
+ },
+ {
+ "trait_type": "Season",
+ "value": "yes"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Secret"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "50.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/50.png b/tokens/candy-machine/assets/50.png
new file mode 100644
index 0000000..84c5077
Binary files /dev/null and b/tokens/candy-machine/assets/50.png differ
diff --git a/tokens/candy-machine/assets/51.json b/tokens/candy-machine/assets/51.json
new file mode 100644
index 0000000..963f386
--- /dev/null
+++ b/tokens/candy-machine/assets/51.json
@@ -0,0 +1,28 @@
+{
+ "name": "Blockfather Special 0",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "51.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "yes"
+ },
+ {
+ "trait_type": "Season",
+ "value": "yes"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Secret"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "51.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/51.png b/tokens/candy-machine/assets/51.png
new file mode 100644
index 0000000..2c55082
Binary files /dev/null and b/tokens/candy-machine/assets/51.png differ
diff --git a/tokens/candy-machine/assets/6.json b/tokens/candy-machine/assets/6.json
new file mode 100644
index 0000000..bf2ca78
--- /dev/null
+++ b/tokens/candy-machine/assets/6.json
@@ -0,0 +1,28 @@
+{
+ "name": "Golden God Boomer",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "6.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Like a Golden God"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Golden Hour"
+ },
+ {
+ "trait_type": "crew",
+ "value": "GoldenGods"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "6.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/6.png b/tokens/candy-machine/assets/6.png
new file mode 100644
index 0000000..445d4a1
Binary files /dev/null and b/tokens/candy-machine/assets/6.png differ
diff --git a/tokens/candy-machine/assets/7.json b/tokens/candy-machine/assets/7.json
new file mode 100644
index 0000000..aa37084
--- /dev/null
+++ b/tokens/candy-machine/assets/7.json
@@ -0,0 +1,28 @@
+{
+ "name": "Golden God Millennial",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "7.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Like a Golden God"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Golden Hour"
+ },
+ {
+ "trait_type": "crew",
+ "value": "GoldenGods"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "7.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/7.png b/tokens/candy-machine/assets/7.png
new file mode 100644
index 0000000..0690143
Binary files /dev/null and b/tokens/candy-machine/assets/7.png differ
diff --git a/tokens/candy-machine/assets/8.json b/tokens/candy-machine/assets/8.json
new file mode 100644
index 0000000..683f765
--- /dev/null
+++ b/tokens/candy-machine/assets/8.json
@@ -0,0 +1,28 @@
+{
+ "name": "Cornonaut",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "8.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Yearly"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Fall"
+ },
+ {
+ "trait_type": "crew",
+ "value": "Cornifferous"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "8.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/8.png b/tokens/candy-machine/assets/8.png
new file mode 100644
index 0000000..d5abd86
Binary files /dev/null and b/tokens/candy-machine/assets/8.png differ
diff --git a/tokens/candy-machine/assets/9.json b/tokens/candy-machine/assets/9.json
new file mode 100644
index 0000000..463b81a
--- /dev/null
+++ b/tokens/candy-machine/assets/9.json
@@ -0,0 +1,28 @@
+{
+ "name": "Golden God Rambler",
+ "symbol": "NoMad",
+ "description": "legendary travelers: your gateway to the Wagmi.travel network",
+ "image": "9.png",
+ "attributes": [
+ {
+ "trait_type": "Travels",
+ "value": "Like a Golden God"
+ },
+ {
+ "trait_type": "Season",
+ "value": "Golden Hour"
+ },
+ {
+ "trait_type": "crew",
+ "value": "GoldenGods"
+ }
+ ],
+ "properties": {
+ "files": [
+ {
+ "uri": "9.png",
+ "type": "image/png"
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/tokens/candy-machine/assets/9.png b/tokens/candy-machine/assets/9.png
new file mode 100644
index 0000000..9af04ed
Binary files /dev/null and b/tokens/candy-machine/assets/9.png differ
diff --git a/tokens/candy-machine/assets/collection.json b/tokens/candy-machine/assets/collection.json
index 70bf155..d850bf8 100644
--- a/tokens/candy-machine/assets/collection.json
+++ b/tokens/candy-machine/assets/collection.json
@@ -1,6 +1,6 @@
{
- "name": "CoinPad Nomads",
- "description": "Every wonderlust nomad has a travel vibe, what's yours?",
+ "name": "Wagmi.travel NoMads",
+ "description": "Every wonderlust NoMad has a travel vibe and is prepared to make it, are you?",
"image": "collection.png",
"attributes": [],
"properties": {
diff --git a/tokens/candy-machine/cache.json b/tokens/candy-machine/cache.json
index 51ad662..9130a9a 100644
--- a/tokens/candy-machine/cache.json
+++ b/tokens/candy-machine/cache.json
@@ -1,56 +1,432 @@
{
"program": {
- "candyMachine": "2AVdQdNsR1tgehsWoUXX98tBuiHupciJGq2mgGxpgdeC",
- "candyMachineCreator": "FQVSNrNqJrPh9XaKwJYBhRgqHRpYTKEHbwbvzY1X8SC7",
- "collectionMint": "GvyHorJu2zSh5rEa5VD7ei1CVU65jQ43QS6JW1oQP9FM"
+ "candyMachine": "4mFtBjuMQRHGid5qCGPqrgZ81tA8zBh9CVYixhCsEUvT",
+ "candyMachineCreator": "GULaQVqHjRXLZaJf1en5doh3cqfSXP5McX4LKLpfVUwE",
+ "collectionMint": "Bc2SCPv1DNaNiDVqe271kmPJCtCA1oqJbgrPATVp8PTq"
},
"items": {
"-1": {
- "name": "CoinPad Nomads",
+ "name": "Wagmi.travel NoMads",
"image_hash": "4c804b67e95f7ce1b06877dd295d03bff39653fb91928c9daf6a891beeae78d5",
- "image_link": "https://arweave.net/X5He9bRgJZJtZnqI437dRtbh3f5bzVcBHlycSLeKpw8?ext=png",
- "metadata_hash": "ca9da81fcb3ca0abe4459b2d090761fbb8bb8abf33aff1b18e01a65915b92d9c",
- "metadata_link": "https://arweave.net/IeobDYMicGsGthSdqdU6lSrm8S599lgaOUJmngVbUTI",
+ "image_link": "https://arweave.net/zhpb-pgBfNVDror0tqT3ifQHuaI7WOW9r_nb4ooER4c?ext=png",
+ "metadata_hash": "87c715202a13848f456df0dc4f01c4b692b360e498c725b03d942685c2f505c1",
+ "metadata_link": "https://arweave.net/pc7copYxzf8zJpA4dct6fyd-Pukj2BGPfrOwzZOk5W4",
"onChain": true
},
"0": {
- "name": "Grumpy Cat",
- "image_hash": "1ff400f5c411767068ae4279569ae57714837eb7a3c570b127fa607ef14dc1c1",
- "image_link": "https://arweave.net/SRLDKg21pIvHtmvj8C7DIqykoWcb91fV8F2RXYHUgNo?ext=png",
- "metadata_hash": "375e9ee50c96d88eb275b998773b9310f95372fa0395b202a094d45bd53e74ba",
- "metadata_link": "https://arweave.net/EFRTpd1Qwmd3FBDNHQG5_kiFAayJLt-pmqa7ZkaydtY",
+ "name": "50s CornMad",
+ "image_hash": "0a7d205faac9d3d8f44df1edfb6984012e31da856c0540c8b986c5db453c635d",
+ "image_link": "https://arweave.net/JENvmPdB5eA-zZlS-ep5jqiZj3-e9Fas4hYZZ4sftbc?ext=png",
+ "metadata_hash": "da8da3b4e308bd7377d2be02b2c25f47233175f891eca3024feda4adc3ecdf4c",
+ "metadata_link": "https://arweave.net/EJqlz2Fd3hdtoJu1bbErXEDrIjY31bWkPN5BXPRcnu8",
"onChain": true
},
"1": {
+ "name": "50s CornMad",
+ "image_hash": "ab972ab50fb80d4eab51a73658ad64db4377f728d40d5cac5154942013173b01",
+ "image_link": "https://arweave.net/hYmCgQZ3RJy92e2CNZv_jWMysiSSvZOpL4FJdANS84E?ext=png",
+ "metadata_hash": "0015ccd93754dd44ef6b46abfcd96d35140e503de2217b861a5f36f3d942f1d2",
+ "metadata_link": "https://arweave.net/Ou6LuO_NCyYucWdeZuQLoJffUcPpZx_rSkjc5g9eKa4",
+ "onChain": true
+ },
+ "10": {
+ "name": "Grumpy Cat",
+ "image_hash": "8c1ce268dc8fb6167d0ca5a12f62e41b82dcc4351ee0d179e1a576d72667bfaf",
+ "image_link": "https://arweave.net/SnJ85QlZ0ouwBXxtYiV3EAmy2xY3LKrFGPKeQk1h1og?ext=png",
+ "metadata_hash": "96f44d5c590f8ce1b9921010e3112669162a335039f33ddfdb22e08a01626d85",
+ "metadata_link": "https://arweave.net/Ly5BvKztwMZGbZJ4K28TvBhKbML2qE3ZlPIyPoU-iKs",
+ "onChain": true
+ },
+ "11": {
+ "name": "Grumpy Cat 2",
+ "image_hash": "48f67ec35cda8054c7f6f744f8db02c4aeb3a001a15c50d321f9ef193ee4b021",
+ "image_link": "https://arweave.net/kGY6EpUK5fDqOQX-AG0yCE5yV8zSp9tLhRy_XiV_-RM?ext=png",
+ "metadata_hash": "a6e5e469f99321a02c47890311a64d354e9f4d0166ece8ce3888b1872428e230",
+ "metadata_link": "https://arweave.net/wwkYVfkamr6xHeZJaIk5YLDAsGDdGwrY55XHJ_SRwKA",
+ "onChain": true
+ },
+ "12": {
+ "name": "Grumpy Cat 3",
+ "image_hash": "c67499b39e0f3dd41805728fd4ca9c01c0a538dd20224610944c14934a4543f7",
+ "image_link": "https://arweave.net/WH7QFxYaLDb-V0ZHSfc1-MUHd4i1OqR8fscHuu1av10?ext=png",
+ "metadata_hash": "0c2067cb231cd1ce3aa46ab44f065e2963f83b647b74372292b9f97d2a77af0f",
+ "metadata_link": "https://arweave.net/76eyxSD-J38330_5W1gQQ5L-76TzwR56hb5w0wR5_5s",
+ "onChain": true
+ },
+ "13": {
+ "name": "Ser Dogster",
+ "image_hash": "07188765aea4c08d6825685acfe4226f2a6e44483f47160ba4a43441c47a0ba7",
+ "image_link": "https://arweave.net/pr8jMcZRtfVUT9SChJ8LjYgdeZewtEBBWjuraUAnTWQ?ext=png",
+ "metadata_hash": "56fb921e9738c798998925de6c6ef9d471b835e1f8db3549a99d7a4213dafa4a",
+ "metadata_link": "https://arweave.net/2Iv73eJrM4vlgK3jBst2Gcq1CBaMkx1ZHYswzIwdX8M",
+ "onChain": true
+ },
+ "14": {
+ "name": "Lob-ser",
+ "image_hash": "9fcd89f06df06f7a60360d4fbff9a3b30c28833573ead2b938b8e1587faa88dd",
+ "image_link": "https://arweave.net/E5yXiWPQXgYc6aY7K7SlWaHXZofvahbYiV6WZ0De1ws?ext=png",
+ "metadata_hash": "25478d4da8f8fc98b3f75f5ce351a2a5098e119f95b6963b6502766ec87aef92",
+ "metadata_link": "https://arweave.net/kT0DgL0dHQ1Aze5ZbXo1To0J6wcJr5uoghdTSFsAwKQ",
+ "onChain": true
+ },
+ "15": {
+ "name": "Noble Crustie",
+ "image_hash": "877c8943417a065c5a6b48ea6e6e5dfee854732fa2dae3d8bec36932ab8b0713",
+ "image_link": "https://arweave.net/VndpFRgCbDUplXCkqbrX_-ztQvpd-5sqBF1yaHQTwek?ext=png",
+ "metadata_hash": "23e5f85daf63e93140b86cd48a46f36255da69cba607706424b9e5455ffa272e",
+ "metadata_link": "https://arweave.net/y_Qf7a6P5kW-rOE9Nt-grqzJes8bbdsD66M55fKo7xs",
+ "onChain": true
+ },
+ "16": {
+ "name": "Lobster Mobster",
+ "image_hash": "fe364e19e0ad4a1c6a63188a6c2800eb8aa720e3e4164d50d73f88d5f1967e43",
+ "image_link": "https://arweave.net/bI8Y2HDduyrWNN98RlkueZNrAOeoi71bndTteotJ68c?ext=png",
+ "metadata_hash": "eba4cf0c46117f747f06bb23702b6c03f7a9297d6bfd5a57364bd257a0014f1c",
+ "metadata_link": "https://arweave.net/2y0-ywQ0Mj-UJDgffTMIDyNbUNmcethMocReIj-5sTI",
+ "onChain": true
+ },
+ "17": {
"name": "Cotton Candy Lobster",
- "image_hash": "de6c8fb8a904b993813f1ad82f062df04b5dd7e8ba6c4c8090a44e23a8f695db",
- "image_link": "https://arweave.net/0BLc1NmesmXO07ieorQ_ALOXkugGY1Y8x3NEeokrQcY?ext=png",
- "metadata_hash": "f2c4be89531e1838e2b64fbc111c5e5cc1cddcccd2f3c01e9ecd62796f531dfa",
- "metadata_link": "https://arweave.net/zsYgCdxKJYe_rc7ow0W9AVrqcKy_TnMs3CkfcafGDT0",
+ "image_hash": "a11976c6fce374972f3c22813f4aaf7dc421b29560371d109d61c6e46abd7c32",
+ "image_link": "https://arweave.net/EKlFE-wNnbXgkz6l2SIgJzN92OdtIqkTUJB3QUEYwvM?ext=png",
+ "metadata_hash": "7b7bb72bc7500e3708302a638ec48b3324bde582c9e3e2819888a91edf5d3334",
+ "metadata_link": "https://arweave.net/sY2fYvg8bX3zpYRAvmLcANxIJ49A4tqePH87DR9pJgY",
+ "onChain": true
+ },
+ "18": {
+ "name": "Young Walden",
+ "image_hash": "d0c7e1a71082bcd33d036e6a4f8dff3a4117c332aed9f696b68b5eeb588fa9c3",
+ "image_link": "https://arweave.net/1L3CkflFd6oowfkVML9G-D9IrsAHrCZRxh1d0o92elU?ext=png",
+ "metadata_hash": "5b8ab7db553922b63ef06906c5f9c0dc8e33da9abedb9d2ce18d2f1a0ddcdab5",
+ "metadata_link": "https://arweave.net/Eadr6hW6uqO5JdRHdkzTr9bBlp3lzo0uwga3YOo_Rnw",
+ "onChain": true
+ },
+ "19": {
+ "name": "Degenic Nomad 1",
+ "image_hash": "a1fe591bded8c0654d0ff7176db7701543f48cc2b4b9a33b6a0cefc6f5778376",
+ "image_link": "https://arweave.net/AKs8DhgRQqZOWxHtaqEx9vpoMMFc43MKCmZbcMWGUOc?ext=png",
+ "metadata_hash": "27a08f1aed2352ad5857e4cfbd067e1155f25a6ad55c4a98a9f5ac29fb5165c2",
+ "metadata_link": "https://arweave.net/7-ei-kuD1L4yrDCLwzamks-JQJb164J7oJTvEAWBDrQ",
"onChain": true
},
"2": {
- "name": "Walden",
- "image_hash": "65bd8372dc1413067199c0d33513e8a5ce6a7628739119057010438fc1579778",
- "image_link": "https://arweave.net/KQzkVcobOJnvaFqmmoOqcFQwRW0MA6g5AW-vXRBVqdw?ext=png",
- "metadata_hash": "4fb489a27945ed133b56a6e9df370bc85a48559a5ed031962418ef7e3e368c5c",
- "metadata_link": "https://arweave.net/ySjdSX4GbFXL23g7x2rWb7d4bkAhahJTj14qQlVhFu4",
+ "name": "Candy CornMad",
+ "image_hash": "f2e65725de15f46724f9266ac657714e273b74c346d55a58007e7ddd0d159760",
+ "image_link": "https://arweave.net/DvymDHCaBjzpii7aRnBZne03n28i_SFrpIStRQoEft4?ext=png",
+ "metadata_hash": "9b41c26d01d8429fc7c78a23bca02e37b482fcf2623636149406c39c14b8b1f5",
+ "metadata_link": "https://arweave.net/wXXOf6eAD26VGTJE6AXTuWxY0vYBnHtOL-rMDCWQ8bg",
+ "onChain": true
+ },
+ "20": {
+ "name": "Degenic Nomad 2",
+ "image_hash": "24d10d8b02f7a7dce73b28829ff8784e982e424e1baf4f8e08cc25900fcc827c",
+ "image_link": "https://arweave.net/CR4nSgFtEBcvPEfON0J6JNy5BPT_rJCFrClF3D0MndI?ext=png",
+ "metadata_hash": "6778aa8278e18a3b1444d0472032efbf962a1727c4b52fcf9d16bb7e55918cea",
+ "metadata_link": "https://arweave.net/ymnULnD3hKilNXN8cestyjkRIvLGS7bY0CHjjZ_U3fc",
+ "onChain": true
+ },
+ "21": {
+ "name": "Degenic Nomad 3",
+ "image_hash": "7e7e5b1e7935fcd2557906ac29b7afe8d33245c65febb7faf444ce8346d26be4",
+ "image_link": "https://arweave.net/p0sC6MdMkdh5z__Q1_LGGOV2SuTPyvg9Y7knjaGaLFk?ext=png",
+ "metadata_hash": "8ec77f45742ce858299df6af45def0c70d0184dc983b7f67f075246796c2079e",
+ "metadata_link": "https://arweave.net/4yTp1qcxn8GRmpbcwe-7zPgs2edTSEusxIz6V4Bw43M",
+ "onChain": true
+ },
+ "22": {
+ "name": "Degenic Nomad 4",
+ "image_hash": "b8f3a01b590c02524832ee4104b78c6574ddb9ce1419c03eca0cee698c61c5f8",
+ "image_link": "https://arweave.net/VeM4XRk_RO3uTR9A0pKKuiFQ60mGWQDxqlgAxaWny14?ext=png",
+ "metadata_hash": "59e20fa25197ae70f4e20759bdace54abc2d3b083e5f36577cd810d3afbe3e94",
+ "metadata_link": "https://arweave.net/ccty_SApzVT2zVBU5bnzxA_HnJTJ4TECqF_ufCTfeyU",
+ "onChain": true
+ },
+ "23": {
+ "name": "Degenic Nomad 5",
+ "image_hash": "562e30975db64bde886f22a13087082eef7a3fac2f1416d6834db1e531fb82d3",
+ "image_link": "https://arweave.net/4WeIAN4OACJq7CPbKnJA12E5iUBpQXrsAJ-Lwx9E3-s?ext=png",
+ "metadata_hash": "7fcc35c9a43f0d663c2f5635310b0d08b41b0175a03a841f40058041fc096858",
+ "metadata_link": "https://arweave.net/Kq8yoqksfyVcO7WIPq3y3I6L5GMm5Y168RYkgxdcKk4",
+ "onChain": true
+ },
+ "24": {
+ "name": "Degenic Nomad 6",
+ "image_hash": "fa0ddc2822ffe7601bac71b509778538a1afea7828c4089d37c75aa6503abe71",
+ "image_link": "https://arweave.net/av4fTHhWfBPB6wKjhkd7558X_XEAT9tITpTHt-IIm-A?ext=png",
+ "metadata_hash": "bbd6eca7533ca44b884994467be7d4a9445fccc3f752b9ddb00737e5af6d4551",
+ "metadata_link": "https://arweave.net/bRMDwncx3ZTMPpYtqp6NTpU-DUZg4yiRxFF81JmExYc",
+ "onChain": true
+ },
+ "25": {
+ "name": "Degenic Nomad 7",
+ "image_hash": "f273a601a2c274a9efcdfc8d7f13ea695578ba59c7dccef2dd3284a9d4a0f79b",
+ "image_link": "https://arweave.net/gGOpOEEBz0-xOxWrmvZyilRv0iOJTBoBrkDbFQFnqq8?ext=png",
+ "metadata_hash": "1da69b70ab5bfd6bb227d5e997097e546213a60973685565ba024d252c1fa3b6",
+ "metadata_link": "https://arweave.net/x9wAdj6xnYJDoH2rkvSJ6vc0jYE2qp8nnceVv-IaBI0",
+ "onChain": true
+ },
+ "26": {
+ "name": "Degenic Nomad 8",
+ "image_hash": "b7ac862d2f8cdf3246c7b69b569027830eef30c87191fd657a741c25f0f07349",
+ "image_link": "https://arweave.net/AI861RpeS5Fg7w4zxVTcJzoAEMmjQIqi0oAZMUy6Ovg?ext=png",
+ "metadata_hash": "dfb15946fe4096c454ba3774d333b5a57ec91bc558cd0a83430d688003558135",
+ "metadata_link": "https://arweave.net/sTtODzUXHB67z5_WGCs0OZRCmxqjE6dVKXsOCxlZIIQ",
+ "onChain": true
+ },
+ "27": {
+ "name": "Degenic Nomad 9",
+ "image_hash": "3c475aad959937f897b57cb02a1659ac7a7c316cf95599017950a34acc649f31",
+ "image_link": "https://arweave.net/BOvQNSlV9O3jddUX4q4GJ9fI8gYe3fWrPEQsESy2RkQ?ext=png",
+ "metadata_hash": "a4ac22ffe03e609f4d797bf1d388eedd5e489a9a5af46b0111c022d944ef9e10",
+ "metadata_link": "https://arweave.net/TnB01Obu8Az7HFiyXKrWkvKlzvIw8Fo1ixX6tXsyauc",
+ "onChain": true
+ },
+ "28": {
+ "name": "Degenic Nomad 10",
+ "image_hash": "75d4ceb7b7c511d4d239064c27a3ef98423897264b476e4696099f178e8a92d5",
+ "image_link": "https://arweave.net/wBy0-4LyMfnIpY1x4_RwdBz4YFMQkfR5Cpxh7WQlfow?ext=png",
+ "metadata_hash": "4e8777bd913f13f59abd47895d8f6033c844355337e928bd62f2cd2ee4462381",
+ "metadata_link": "https://arweave.net/qHpGQuAGuciJ0Ji8aMcLiLbftWNq2mTy9r-c7ERYKPU",
+ "onChain": true
+ },
+ "29": {
+ "name": "Degenic Nomad 11",
+ "image_hash": "66e2f16bedb771b22c8147c0771d6be8f856c4cd8860f6d81b950ec36b7cf383",
+ "image_link": "https://arweave.net/7yIZBzBfDF8nacHoE8L0Uugifiw2Sm5UHU7Y18H_YX8?ext=png",
+ "metadata_hash": "6616172fb3b8c0d28199ed589f510de0be96f2336ec3e4e20ac8b7c5673a3be6",
+ "metadata_link": "https://arweave.net/Q20hpcAI4oaN9-XYgcomeVWrXdPou4vfdQl3vxJIxUQ",
"onChain": true
},
"3": {
- "name": "Experiencer",
- "image_hash": "b9080bea92c5e92eb8769a6eb126d17fcaa01ffb7d1e9629aa8beb13d59f0eac",
- "image_link": "https://arweave.net/z_tYtR_ITuqftJps1VQUGE9jiwN8u-t3vfABfqRMPhU?ext=png",
- "metadata_hash": "55102c6f4faf11497be8c24f3f248906de0056bf239a1a856d2282d0fe9a8ad1",
- "metadata_link": "https://arweave.net/9ycASMdMsM3sMXLxkC07MUOeEq1UkpPIuSeLNEt3lNI",
+ "name": "Dream Traveler",
+ "image_hash": "81a26023670708715648b225fdc2fa426b6bd16c44350136f593926d3e572951",
+ "image_link": "https://arweave.net/A-CvDPXB29ZD3P-VnVfMCPEgDSxC0yOaWxq404NkYjI?ext=png",
+ "metadata_hash": "7d4973a14703a89ef55dae44d33ce0f3b31dbfe267a344980b85f2e50ca6c94b",
+ "metadata_link": "https://arweave.net/5dX7VoLn0fvrbZGGTnEwnkGivkq8EBrBpduySfs5ZnY",
+ "onChain": true
+ },
+ "30": {
+ "name": "Degenic Nomad 12",
+ "image_hash": "32d1a33451292545d95c9fc045265cc5d31eb847c82c5820c156fd412d045a3d",
+ "image_link": "https://arweave.net/6CLI9eoRSuhQA5R3rABcHmQ0Ot3idtpRRfq8PNsUHE4?ext=png",
+ "metadata_hash": "dd07d5d1c8ec3a0c55ea808df9d37244a86bb183f2427fafd06dea6e2146c71d",
+ "metadata_link": "https://arweave.net/h34Sps55scF0ryFN5VbefQo1wbflOdgNJaV_woQv_GQ",
+ "onChain": true
+ },
+ "31": {
+ "name": "Degenic Nomad 13",
+ "image_hash": "9db393302a736fc57f4198533e7532e9f013943def09113d001bb1e44328b408",
+ "image_link": "https://arweave.net/kIwTmz3IuChh0a643en7t3h9kQy8QnBfQvN7Gz2JI5A?ext=png",
+ "metadata_hash": "2f4b57a5cb8f7a93c92ce480353335004f71ef2766fa5e631f4eb36b2901a0a5",
+ "metadata_link": "https://arweave.net/397U37O_2leNiC4XGkaOF4crSfjhKbLXmqw1MAiTHTE",
+ "onChain": true
+ },
+ "32": {
+ "name": "No Fks Given Nomad",
+ "image_hash": "ae1ce2b79fd255ae72a467e80ef79deb54b192a28016c3459d136a901e4347a9",
+ "image_link": "https://arweave.net/bcexSiPI6L9z22gdpcA6oOAqqwry7L_22fCF0vPllWE?ext=png",
+ "metadata_hash": "f6210cb1ce74fdf948ed70e892cb87e8c6459f525815413abf08f58eced30be4",
+ "metadata_link": "https://arweave.net/ZyTS16llDrCGv8t134rrz2x_K6__OJ3PaJM-fnmULqs",
+ "onChain": true
+ },
+ "33": {
+ "name": "Worryless Nomad",
+ "image_hash": "8a930f1e479feec393400653f1ec21559103ab77281aff90006f29a662e92055",
+ "image_link": "https://arweave.net/JIxZ6XgWZfjbXpO07M8kXKhLAwuiZaQfYWg2MfhcYjg?ext=png",
+ "metadata_hash": "345e93e169db3aa015a36ebbf129f810e9f55d1cbda13b09cf4af0c369277aae",
+ "metadata_link": "https://arweave.net/GJWFEtdrlj8ugtex8ESfEL5VoiY7WmKVn74m67sgafY",
+ "onChain": true
+ },
+ "34": {
+ "name": "survided Tide-pods",
+ "image_hash": "1213a3af9b7d32d1abe9dd666e1535eb72f5231df1951d8eff36c28ae259497e",
+ "image_link": "https://arweave.net/e97LSrFtf2sbF-WKuBkqnDmeM7JIXk5BJDKmVtKwxNI?ext=png",
+ "metadata_hash": "b03f2b5f22177f944355301add242286754d90c6e6888d06d74d44d198cd8641",
+ "metadata_link": "https://arweave.net/5I5Rnn7_iVPJMtlAs8UYxOpwVCwQCFKm-atK56UGn74",
+ "onChain": true
+ },
+ "35": {
+ "name": "Better-Be-Nice Nomad",
+ "image_hash": "d56097a6f01b112405c9037b30661508e9caefbf86e49d5e4bc7e2e76b05af0f",
+ "image_link": "https://arweave.net/SAVMvw2RQrFYrS3YHQ2obzj-pG9ofTu3gf453yP4McM?ext=png",
+ "metadata_hash": "57c8b001451e817aa4666cd743c4ae7b00f476e9cb76c842c8d304d260a78b88",
+ "metadata_link": "https://arweave.net/ZleQItDb59Fw0xU7HdQYHYgWR5z6yE4Etvg1QV86RVk",
+ "onChain": true
+ },
+ "36": {
+ "name": "Wind Walker",
+ "image_hash": "106f5c1ac467cc8a7508de6279a62a5b7a66caf5a30ff50e2c7dc7b5799209de",
+ "image_link": "https://arweave.net/Mzeww_mqjDP4olxPLWYBCvuBa7XsYLRmlVy5LjX82kI?ext=png",
+ "metadata_hash": "7cdb9f98266bed7a7df3e52a2490fe2097b8cf7d75b7fabcc4754ef1923ee4dc",
+ "metadata_link": "https://arweave.net/52fLxIEzksL-oIK28oEMGQ-8tnZQcOczKWb-w_1T88o",
+ "onChain": true
+ },
+ "37": {
+ "name": "The Thinker",
+ "image_hash": "0f0c1f156f25d7d27fdc94d9fc8a478e3d04f514c29d4c7b134563df9d58de60",
+ "image_link": "https://arweave.net/ZSkRmOl7516z8w8luelF4AmO7rnS1qr3kH_JZy2Fjpk?ext=png",
+ "metadata_hash": "1294a181b2801633d23d41ff5717be73ca5081172d2c7e419104c5ce712bac4c",
+ "metadata_link": "https://arweave.net/l_zSUGz2WM5WfYJk7QdEymoP0qUbGBNAJmlurskW16U",
+ "onChain": true
+ },
+ "38": {
+ "name": "Recharged Nomad",
+ "image_hash": "d4bd5494b2aef2174dd286ced3b144bc374f630c9b40e222611d8b6224ca74f6",
+ "image_link": "https://arweave.net/_fS2vSoMtTYlmLorxJab4BJq3vpzjGoVY2Tj9VwSDL4?ext=png",
+ "metadata_hash": "ef68dc5804ef6550fb7cb0f78ef85df5e0bccd78bed0792961b41ffd1990a160",
+ "metadata_link": "https://arweave.net/UucglFnI_h8fiXZQfmR7kItyJMACttcYwTIanufKoMQ",
+ "onChain": true
+ },
+ "39": {
+ "name": "Passport",
+ "image_hash": "65a1a50a95474b37805ea89b1195303afcf5a2a5b5dc08398de72fd8cb525fd6",
+ "image_link": "https://arweave.net/XnwplVJhD2zpT3URhCVrDnSqWXazOQJMC_1_FDa4P8A?ext=png",
+ "metadata_hash": "9d9500f4cd491df736ede0f0de3e8d7cf19ebb53ea57e63ca4f51d0c670c65df",
+ "metadata_link": "https://arweave.net/TLrhdbBQNmYUeuUC7Y2HyPFu1n-7cHAm6RRK5SY4EEU",
"onChain": true
},
"4": {
- "name": "Futurist",
- "image_hash": "f7eaf8fe5f7c89371e7bb288d56a9b61f54d8d06550cba75293cf025279e2969",
- "image_link": "https://arweave.net/OLCnjdkFZbUJYqzgTFXD27KZxwJiDMe0LgSt00DPsHM?ext=png",
- "metadata_hash": "d83c7e66f97248dcb1b7b08745af3d508c7ad5e30eaffc533299df147a47f3d5",
- "metadata_link": "https://arweave.net/9_jI4XpX5lO2fi_DLd6YjAwIJhhHkNVpY8yEcvraLDE",
+ "name": "SolarCity Nomad",
+ "image_hash": "ec9954c8224756348e1b895547a78c3ed2d53c6625d9a95f13314455635a0f4f",
+ "image_link": "https://arweave.net/sfDTc98lINcWXGwOrvdk0FtFjPUPayaP6RPXzibx8wo?ext=png",
+ "metadata_hash": "61ee06f01e94142981ee9b7b95414d1f054d1b7f39c51757833dffc343e3ad6c",
+ "metadata_link": "https://arweave.net/elk2Jf5esJ-O3QgUnb1HWwkZjbOKLhYw5-3iPzrgTjA",
+ "onChain": true
+ },
+ "40": {
+ "name": "Relic",
+ "image_hash": "3ea719b34fdc49073aba1830ef29bee5c532bc4ca95c7ccd614bbbeb7c158563",
+ "image_link": "https://arweave.net/za0gr1bT3ZIWUmmcrH0CSxKB9w1mWb-36xSD8w0uUQ4?ext=png",
+ "metadata_hash": "ae2d84a9e8d533839caebb6de33fff0a87b833b67364b0022ac3848da936d961",
+ "metadata_link": "https://arweave.net/Akk2RpmyAJoLdIGVZvGFmxH7EvHFXF0_c5dgbA3oSuU",
+ "onChain": true
+ },
+ "41": {
+ "name": "Steadfast",
+ "image_hash": "03ec00dd6c1923cdcbf879ef09b9aeb441859d3dd7f7816a19892994b5418edb",
+ "image_link": "https://arweave.net/8mP5FMcGvHTLaGSzQhhznTSXFPxU1kD1rM5fJl_LbLM?ext=png",
+ "metadata_hash": "9c2948baac9f41790b01ada85b8ceec08bf7bd983e28d3bdc99b11357b628dca",
+ "metadata_link": "https://arweave.net/M76P13bgzMyYMUJF724F7zLY4c0DewrZhTZFhJnkHl0",
+ "onChain": true
+ },
+ "42": {
+ "name": "Relic",
+ "image_hash": "0f9f999181311509f5590a0c196c9b3ff863fa58ff850c9c3fa3ff5e4831cda9",
+ "image_link": "https://arweave.net/hw44Q9hxR3uIWYNKFPVIAVUY1AXENqcs2z2UVZ4DYAs?ext=png",
+ "metadata_hash": "29986f50817e246346dc05c5a24e84f3dd28eedbeb6fd26590b4c570db916e9f",
+ "metadata_link": "https://arweave.net/JgG2vxBeKKtB31HlzYQr6S7zRjXwhahaCM3FmmTvla0",
+ "onChain": true
+ },
+ "43": {
+ "name": "The Ancient One",
+ "image_hash": "5973ca32da4e8bc59b3eea3da62785a9675e17a452eeaf209f9f154e107bf0c9",
+ "image_link": "https://arweave.net/hUx1x1tYH-JEWWempd49QdzGjwTaOu2cbvtk52Fr46A?ext=png",
+ "metadata_hash": "687c993ad91f8bc0537b6e2c5f8aff40e57d7d7167080d99ad8acc68168971e1",
+ "metadata_link": "https://arweave.net/XBcjGjY9YhWFBJyp9GKrDbyzQ-Qed_G6RPIP3egeTHs",
+ "onChain": true
+ },
+ "44": {
+ "name": "Take Me With You",
+ "image_hash": "76d2ffb710aab947789bb51c5c2fe9cfdaeae97be72e52bc9647adb139b59737",
+ "image_link": "https://arweave.net/ga_x7wKzzUrMdUbD4lDLw3cGQ2bfTFhef3BvBT29MzU?ext=png",
+ "metadata_hash": "bfe0c8008202e61edd7c1724af057a3e9f84300000e8ced796f9eff3310e2e59",
+ "metadata_link": "https://arweave.net/dJStFQZs0i6ztCk3T_jXXNjABQJBoWkYD1SgSitTG2A",
+ "onChain": true
+ },
+ "45": {
+ "name": "Vespucci",
+ "image_hash": "bfc01fcf8fb4c7b292b63d663ff1aeb89b04484d2096625709aead4ca90f5552",
+ "image_link": "https://arweave.net/yq_dwr2Y_yClR2BzBONPkEs2JrIVlmx62KHzltEUtt4?ext=png",
+ "metadata_hash": "cd09e044225f7e955798ca45fe26ef6c2062857081f95f2c4d9d20b2f722111d",
+ "metadata_link": "https://arweave.net/rR5u1CV4lH215c74r7RmJrReZC5xC9PRquandmw3zIM",
+ "onChain": true
+ },
+ "46": {
+ "name": "Degenic Nomad 14",
+ "image_hash": "b1b8060080f235ac623641a442bb9775359371c889a4ca3ac417c78132801535",
+ "image_link": "https://arweave.net/e5cf12DN53B8qGkwbzaextYMplgm0zQfthFLLiBeTtw?ext=png",
+ "metadata_hash": "5d50aea8afe44da6db2a655233a78d0d4b1fb30b0dbe5bec94c4ff79f60f009b",
+ "metadata_link": "https://arweave.net/2mrHq75a_knaHNm87aI6Y5mJ5dSF3DzCcHeGu86fA4A",
+ "onChain": true
+ },
+ "47": {
+ "name": "Blockfather Special 4",
+ "image_hash": "b47dbd6cf07b1d8453a48805267c62ef8705772ea2e00648911cbdbfc697b5df",
+ "image_link": "https://arweave.net/bICeeHbIkjpuoGT5FoL8wfjpxg2RWwFuyFP-pzjfnrM?ext=png",
+ "metadata_hash": "1518d6e9730a1377def48ff5f8518cfb4b8986aedb66294560e766c9a86113a9",
+ "metadata_link": "https://arweave.net/w3O5nCUi4hZQCeZmEi6CpQbbZ92x0asb7P7ejU7-VyE",
+ "onChain": true
+ },
+ "48": {
+ "name": "Blockfather Special 3",
+ "image_hash": "90259e2444dc8bf72aa8e947c4c05fd3210d7dd6615abd11195b32106a315265",
+ "image_link": "https://arweave.net/XuQ7oARGfdqFP87S4jJWZQMr1Tk48rjZweruLQ5ymxs?ext=png",
+ "metadata_hash": "60a070c5ea66b7f9e6810d3bfd168cf571173d7ed995f3e4a8aa893047c59525",
+ "metadata_link": "https://arweave.net/FaDh1ImsepfJgj7UKfmlBSgnTk6HcJLEDc1naZxHDEI",
+ "onChain": true
+ },
+ "49": {
+ "name": "Blockfather Special 2",
+ "image_hash": "eee37496236e70a7cd0be943626fc85f2f7ac2a0035075e8a54499e172de7919",
+ "image_link": "https://arweave.net/x1xd6ElZ4YeHXFQmdgAYQ_dVbUIeC6EEq9SktXtHxCc?ext=png",
+ "metadata_hash": "493078b1762164beb57585bfec4ccd6b194d7fe33988c761baea9fdb24ae5fc7",
+ "metadata_link": "https://arweave.net/KgmzBOYxsUEz0utNNDFZqqJIejSxqPa8EyC-jNuI8f8",
+ "onChain": true
+ },
+ "5": {
+ "name": "Vibiest Nomad",
+ "image_hash": "d1a28fdb22f27f3b1720449a18668663a7b28ed1833f6ce905706988f6a0c787",
+ "image_link": "https://arweave.net/vJYX3llrjO1RV-wmEOJFpKjBct3RStzJZf4epmKYBLo?ext=png",
+ "metadata_hash": "754458096acc5dd846087f09546c965fa1da0029f7c6710432936f16581235ef",
+ "metadata_link": "https://arweave.net/7O95Q5jcWC5sAmgfmzrutLkUSF73xa1F4k2WoEmS6Gs",
+ "onChain": true
+ },
+ "50": {
+ "name": "Blockfather Special 1",
+ "image_hash": "4bc360347621dd554d5a82873174cb6f778fa1a7737d2cabde57b20e63d1a4de",
+ "image_link": "https://arweave.net/aTITJf0sCPuNx463z5G9CF5rfPSS7nWDe4GZb8NfK7c?ext=png",
+ "metadata_hash": "f305d47b6c783272fe241edc5cc91f260efb808f8e6302336c3d85210e159b40",
+ "metadata_link": "https://arweave.net/LMyYlhpoVQDUCypXmbLiyYGFYlcXGhtNapgFV1Ian70",
+ "onChain": true
+ },
+ "51": {
+ "name": "Blockfather Special 0",
+ "image_hash": "e37910b2ebe797075ff967461a2cd683de37fda53ea997236f94d42e40504727",
+ "image_link": "https://arweave.net/weIju0FjspBzR8Db3hJnGlY7gOSawo5ZopVi7CLbNHY?ext=png",
+ "metadata_hash": "40a98a0ea26098a375a5536df436b75513c2a42f581067faa774448daf7cf627",
+ "metadata_link": "https://arweave.net/RCr4KmkKyy_nftEmSibqvQKhXCYib5maNdGFpdYe9LI",
+ "onChain": true
+ },
+ "6": {
+ "name": "Golden God Boomer",
+ "image_hash": "e0ed562aa8531420b486175b813aba3513d4bf1cc9dded54da000a069702fca9",
+ "image_link": "https://arweave.net/YjhnhL48ic5ZOPbjQuY08XVOBl9pFPwxITeTmXRTt-Q?ext=png",
+ "metadata_hash": "5c0bf8e6c0922ed07dbe3b6aa86efdfa196c67154e754adb7c892341254f197d",
+ "metadata_link": "https://arweave.net/oYWUFRAulDtKh8vrZARhnBVwQHJfAbO-ZELll69MoD0",
+ "onChain": true
+ },
+ "7": {
+ "name": "Golden God Millennial",
+ "image_hash": "5c1bec1472942d416ecb2b82fa686b02d62d7892ab84a2aedee0fffb6c31426c",
+ "image_link": "https://arweave.net/CjMBM3_hT506xc9aXfjTh-avAS1tiqreSkNDF3P2f4Q?ext=png",
+ "metadata_hash": "4ac43be71c4ba3791ab7cf699d0a60b14e616efd877fbf0d3f1e5fce8da224d1",
+ "metadata_link": "https://arweave.net/c9Gq1LmyvKz31lXZIhBW-n--9R0IDqkAE7Hdn5jnP0Y",
+ "onChain": true
+ },
+ "8": {
+ "name": "Cornonaut",
+ "image_hash": "02f7f9cd2122d4283545512a2d7536990b68bd3d834cd6fa65780cfe509f8756",
+ "image_link": "https://arweave.net/o68aQpRjibg8eAFCZx6QSxmnG36Vexh9b1HD-fcwAFg?ext=png",
+ "metadata_hash": "b0418571686c4cefc0bdceece7217e6d446b21e6ad5e118dcd113ecb8001a10b",
+ "metadata_link": "https://arweave.net/GGunHPf4sTzum_WzYWAiQmJPISibb5IVDxCm2kVO2NE",
+ "onChain": true
+ },
+ "9": {
+ "name": "Golden God Rambler",
+ "image_hash": "1cc41125fbf7033b0301fea3c63256328b0f70db4d8f06d1384a41aa6c74cf34",
+ "image_link": "https://arweave.net/O1m5g36_YUtP8wLUlQRTZljxxbpjYwnMGL2-7Lklb6E?ext=png",
+ "metadata_hash": "f960b0db50bdba72f54536c8062384898a2a7d6d027f5c09d2f16b667ee78049",
+ "metadata_link": "https://arweave.net/uElbmcMJvrGox5QN4dF5RHulimT2uDgNZsvut8OTHyk",
"onChain": true
}
}
diff --git a/tokens/candy-machine/config.json b/tokens/candy-machine/config.json
index f3d215e..e7b1a20 100644
--- a/tokens/candy-machine/config.json
+++ b/tokens/candy-machine/config.json
@@ -1,17 +1,17 @@
{
- "price": 0.0,
- "number": 5,
+ "price": 0.05,
+ "number": 52,
"gatekeeper": null,
"creators": [
{
- "address": "5DBiywmEpXDq9ZShRf8pBwpWCgtHddEpb1pPuDrUAt7k",
+ "address": "DEx4N3FbMCC5HLK9vy5db2r4N7JZyYeoGx2pYh3ux5tA",
"share": 100
}
],
- "solTreasuryAccount": "5DBiywmEpXDq9ZShRf8pBwpWCgtHddEpb1pPuDrUAt7k",
+ "solTreasuryAccount": "DEx4N3FbMCC5HLK9vy5db2r4N7JZyYeoGx2pYh3ux5tA",
"splTokenAccount": null,
"splToken": null,
- "goLiveDate": "2022-09-21T22:29:38.096886+00:00",
+ "goLiveDate": "2022-10-21T19:00:00.738074+00:00",
"endSettings": null,
"whitelistMintSettings": null,
"hiddenSettings": null,
@@ -19,8 +19,8 @@
"uploadMethod": "bundlr",
"retainAuthority": true,
"isMutable": true,
- "symbol": "CPAD",
- "sellerFeeBasisPoints": 100,
+ "symbol": "NoMad",
+ "sellerFeeBasisPoints": 500,
"awsConfig": null,
"nftStorageAuthToken": null,
"shdwStorageAccount": null
diff --git a/tokens/candy-machine/sugar.log b/tokens/candy-machine/sugar.log
index 10945a5..af16161 100644
--- a/tokens/candy-machine/sugar.log
+++ b/tokens/candy-machine/sugar.log
@@ -1,5945 +1,11600 @@
-{"v":0,"name":"sugar","msg":"Lend me some sugar, I am your neighbor.","level":30,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.045119Z","target":"sugar","line":116,"file":"src/main.rs"}
-{"v":0,"name":"sugar","msg":"Validation complete, your metadata file(s) look good.","level":30,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.050565Z","target":"sugar_cli::validate::process","line":151,"file":"src/validate/process.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.068875Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.069515Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.069566Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.1366Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.256957Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.772932Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.773009Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.773216Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.773233Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.773272Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(64))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.773318Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.773334Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 64","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.773348Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.773357Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":64,"self.len":113}
-{"v":0,"name":"sugar","msg":"flushed 177 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.773487Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.773498Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.89355Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 462 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.89362Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.893628Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.893637Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":462}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.893667Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.893682Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.893688Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (81 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.893693Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(81)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.893702Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.893706Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.893717Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.893729Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.893734Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.893746Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.893753Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.894834Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.894849Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.895145Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.895164Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:54.895216Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::681a:1b9]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.012437Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::681a:1b9]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.037269Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.12975Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.129825Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.129947Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.129952Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.130051Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.130087Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.130114Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"flushed 64 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.13042Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.130435Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.377968Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.378105Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.379264Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.379294Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(591)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.37931Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.379331Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 10 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.379344Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (892 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.379353Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(892)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.379372Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(114)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.379388Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(114)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.379492Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"received 114 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.37953Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.379542Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.379556Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.379596Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.379607Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.37962Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.379632Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.379674Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.38019Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
-{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.380203Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.380212Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.380222Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"pool closed, canceling idle interval","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.380221Z","target":"hyper::client::pool","line":758,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.380336Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Total upload size: 10788016","level":30,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.383275Z","target":"sugar_cli::upload::methods::bundlr","line":271,"file":"src/upload/methods/bundlr.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.383356Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.38341Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.383453Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::681a:1b9]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.386141Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::681a:1b9]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.412767Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.506023Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.50607Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.50611Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.506124Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.506167Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.506184Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.506194Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"flushed 81 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.506292Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.506301Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.747219Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 589 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.747332Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.747384Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.747418Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":589}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(583)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.747439Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.747469Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 10 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.747486Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (6 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.747499Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(6)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.747535Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.747551Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.747572Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.747606Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.747623Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.747719Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.748686Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.749377Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.749399Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Getting balance for address: 2TrR3gXKrxakTsMBaa9fYoUjqyVDJSgQsL8Gi1Jx6fmC","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.749397Z","target":"sugar_cli::upload::methods::bundlr","line":150,"file":"src/upload/methods/bundlr.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.749513Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.749536Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.749587Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.749609Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.749625Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.74977Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.749786Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.888702Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 608 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.88888Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.888914Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.888952Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":608}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(590)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.888977Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.889027Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 10 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.889055Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.88907Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.889125Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.889142Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.889166Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.889198Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.889213Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.889247Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.889276Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.889331Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Bundlr balance 1896 lamports, require 968818 lamports","level":30,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.889347Z","target":"sugar_cli::upload::methods::bundlr","line":281,"file":"src/upload/methods/bundlr.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.890057Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.890129Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.890244Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:55.891924Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.011292Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.512167Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.512258Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.512349Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.512387Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.512449Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.512495Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.512528Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.512557Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.51258Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":60}
-{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.512712Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.512752Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.632203Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.632386Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.632417Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.632454Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.63249Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.632547Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.634116Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.634139Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.634172Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.634189Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.634267Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.634298Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.634313Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.634349Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.634373Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.634507Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.634796Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.634838Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.634859Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.634885Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(92))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.634903Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.63492Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 92","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.634934Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.634947Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":92,"self.len":113}
-{"v":0,"name":"sugar","msg":"flushed 205 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.635053Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.635069Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.754826Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 572 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.755025Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.755055Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.755091Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":572}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.755116Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.75517Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.755194Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (190 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.755209Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(190)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.755241Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.755259Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.755285Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.755319Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.755334Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.755378Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.7554Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.755489Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.75603Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.756057Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.756099Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(449))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.756123Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.756144Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 449","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.756342Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.756363Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":449}
-{"v":0,"name":"sugar","msg":"flushed 563 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.756541Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.756558Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.875813Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 506 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.875892Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.875905Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.875919Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":506}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.875933Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.875956Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.876477Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (124 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.876495Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(124)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.87651Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.876519Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.876534Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.876549Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.876558Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.876576Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.876588Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.876655Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.876862Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.876878Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.876896Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(159))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.87691Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.876922Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 159","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.876933Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.876941Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":159}
-{"v":0,"name":"sugar","msg":"flushed 273 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.877049Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.877061Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995652Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 485 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995717Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995728Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995741Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":485}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995753Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995771Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995781Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (103 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995789Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(103)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995801Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995807Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995818Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.99583Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995838Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995853Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995863Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995919Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995966Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995978Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.995993Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.996003Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.996012Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.996021Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.996028Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":137,"self.len":114}
-{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.996115Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:56.996137Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.115674Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 483 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.115786Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.115803Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.115823Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":483}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.115842Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.11587Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.115885Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (101 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.117096Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(101)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.117122Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.117133Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.11715Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.117169Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.11718Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.117213Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.117227Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.117309Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.622432Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.622472Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.622497Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(159))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.62251Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.62252Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 159","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.622529Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.622535Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":159,"self.len":114}
-{"v":0,"name":"sugar","msg":"flushed 273 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.62264Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.622651Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.742814Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 582 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.742905Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.742921Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.742939Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":582}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.742956Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.742983Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.742997Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (200 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.743007Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(200)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.743026Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.743036Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.74305Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.74307Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.743081Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.743104Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.743117Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.743242Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.743314Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.74333Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.743356Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(159))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.743373Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.743388Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 159","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.743401Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.743412Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":159}
-{"v":0,"name":"sugar","msg":"flushed 273 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.74353Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.743544Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.863443Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 582 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.863536Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.863553Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.863569Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":582}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.863582Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.863608Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.863621Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (200 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.86363Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(200)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.864981Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.864993Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.865008Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.865025Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.865035Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.865059Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.865075Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.865155Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.865364Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.865386Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.865442Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(99))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.865458Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.865475Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 99","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.865486Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.865495Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":135,"buf.len":99}
-{"v":0,"name":"sugar","msg":"flushed 234 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.865666Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:57.865677Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.339006Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 620 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.339233Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.339277Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.339328Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":620}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(602)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.339367Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.339435Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 10 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.339471Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.339496Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.339562Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.339589Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.339624Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.339757Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.339789Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.339906Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.339942Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Getting balance for address: 2TrR3gXKrxakTsMBaa9fYoUjqyVDJSgQsL8Gi1Jx6fmC","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.341472Z","target":"sugar_cli::upload::methods::bundlr","line":150,"file":"src/upload/methods/bundlr.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.341678Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.341704Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.341876Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.341904Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.341931Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.342151Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.342174Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.484468Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 610 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.484606Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.484627Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.484649Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":610}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(590)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.484667Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.484699Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 10 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.484714Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (20 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.484724Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(20)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.48476Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.484772Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.48479Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.48481Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.484886Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.485468Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.485485Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.485547Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.485564Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
-{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.485574Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.485585Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"pool closed, canceling idle interval","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.485574Z","target":"hyper::client::pool","line":758,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.485596Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.485731Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.493838Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.49388Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.495373Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.495401Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.495693Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.495737Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.495984Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.496087Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.496302Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.496322Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.496395Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.497353Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.497381Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.497448Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.49949Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.499513Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.499565Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::681a:b9]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.500914Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::681a:1b9]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.500926Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::681a:1b9]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.500933Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::681a:1b9]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.50095Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::681a:1b9]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.500968Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.502128Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::681a:1b9]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.50329Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::681a:1b9]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.526241Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::681a:1b9]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.526606Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::681a:1b9]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.526682Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::681a:1b9]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.527842Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::681a:b9]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.527905Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::681a:1b9]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.52796Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.610862Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.61092Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.610948Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.610961Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.610984Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(1771639))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.610998Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.61101Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 1771639","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.61102Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.611872Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":1771639,"self.len":135}
-{"v":0,"name":"sugar","msg":"flushed 1771774 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.612884Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.612893Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.6129Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.615141Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.61515Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.615161Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.615169Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.61518Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(2128795))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.615188Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.615195Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 2128795","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.615208Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.615213Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":135,"buf.len":2128795}
-{"v":0,"name":"sugar","msg":"flushed 2128930 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.616351Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.61636Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.616366Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.618886Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.618894Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.618907Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.618914Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.618924Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(1355630))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.618932Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.618939Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 1355630","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.618945Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.61895Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":1355630,"self.len":135}
-{"v":0,"name":"sugar","msg":"flushed 1355765 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.619703Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.619711Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.619717Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.622302Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.622311Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.622323Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.622331Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.62234Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(1615835))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.622348Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.622354Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 1615835","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.622361Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.622366Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":1615835,"self.len":135}
-{"v":0,"name":"sugar","msg":"flushed 1615970 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.623215Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.623223Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.623229Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.623249Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.623258Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.623268Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.623275Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.623284Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(2188735))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.623292Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.623298Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 2188735","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.623304Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.62331Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":2188735,"self.len":135}
-{"v":0,"name":"sugar","msg":"flushed 2188870 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.624449Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.624734Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.624742Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.624766Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.624773Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.624784Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.624801Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.62481Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(1644576))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.624818Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.624824Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 1644576","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.62483Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.624835Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":1644576,"self.len":135}
-{"v":0,"name":"sugar","msg":"flushed 1644711 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.625743Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.625751Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.625757Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.637448Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.637464Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.638622Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.638637Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.640046Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.640063Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.641244Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.641263Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.645067Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.645083Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.64675Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.646772Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.649641Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.649656Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.651387Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.651406Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.653942Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.653962Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.656941Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.656975Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.658951Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.658965Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.65914Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.659154Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.662587Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.662604Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.664637Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.664652Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.664814Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.664828Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.667494Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.667509Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.66955Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.669567Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.669666Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.669681Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.670616Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.670634Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.67152Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.671536Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.671684Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.671696Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.673559Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.673581Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.675083Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.675099Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.675988Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.676004Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.677159Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.677178Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.678122Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.678139Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.680681Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.680699Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.682748Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.682766Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.684962Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.684982Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.6874Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.687419Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.688779Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.6888Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.690562Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.690581Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.692995Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.693013Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.69574Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.695758Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.697203Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.697221Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.698981Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.698998Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.700865Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.700887Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.70298Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.702999Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.705223Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.705244Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.707736Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.707759Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.708827Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.708847Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.710714Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.710735Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.712736Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.712756Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.716442Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.716462Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.717633Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.717656Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.719665Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.719689Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.720137Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.720158Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.722896Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.722918Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.723032Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.723052Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.725619Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.725642Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.727591Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.727616Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.728164Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.728185Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.728693Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.728713Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.730677Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.730703Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.731293Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.731314Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.732003Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.732097Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.732765Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.732802Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.733841Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.733863Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.734502Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.734527Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.736103Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.736127Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.736691Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.736712Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.738705Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.738731Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.739405Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.739428Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.741419Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.741447Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.743454Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.743478Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.745049Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.745073Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.746103Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.746149Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.748005Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.748049Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.748888Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.748912Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.751272Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.751311Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.753277Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.753303Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.755331Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.755362Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.757334Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.757374Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.759262Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.759289Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.761795Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.761829Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.763819Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.763843Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.767779Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.767805Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.767849Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.76787Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.769894Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.769968Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.772389Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.772481Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.774448Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.774575Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.775827Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.775879Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.778005Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.778038Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.780213Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.780255Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.783804Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.783866Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.787055Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.787106Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.787607Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.787687Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.788606Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.788628Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.790471Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.790516Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.792812Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.792852Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.796364Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.796427Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.797441Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.797486Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.799994Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.800041Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.803485Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.803536Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.803545Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.803554Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.804952Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.804989Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.806901Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.806928Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.808372Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.808396Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.808408Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.808416Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.848687Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.849Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.887386Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.887494Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.91812Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.91818Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.920506Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.920553Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.923319Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.923431Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.928474Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.928535Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.943635Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.943694Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.948017Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.948065Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.950495Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.950529Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.953184Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.953392Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.953617Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.953708Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.960812Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.960938Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.961626Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.961642Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.966907Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.967025Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.967738Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.967779Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.970037Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.970154Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.97702Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.977228Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.979662Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.979793Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.988832Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.989718Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.992327Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.992457Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.993299Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.993331Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.994904Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.994946Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.997937Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.998043Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.999899Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:58.999933Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.0287Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.028815Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.03235Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.032408Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.034908Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.034996Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.037306Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.03737Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.038906Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.038986Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.042392Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.042496Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.043925Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.044002Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.046334Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.04638Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.047928Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.048069Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.050696Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.050806Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.051616Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.051807Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.053029Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.053077Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.057726Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.057781Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.099847Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.099905Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.101419Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.101533Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.101539Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.101707Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.102368Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.102729Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.107187Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.107437Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.108991Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.109112Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.120219Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.12074Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.12211Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.122184Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.123715Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.123759Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.126565Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.126773Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.127585Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.127613Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.130237Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.13029Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.132003Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.132043Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.134542Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.134572Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.136587Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.136623Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.138509Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.13855Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.14101Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.141038Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.160983Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.161045Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.161619Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.161764Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.165116Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.165277Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.167221Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.167347Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.168231Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.168398Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.168679Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.168758Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.171742Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.1718Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.17292Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.173082Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.174892Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.175006Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.176546Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.176647Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.18053Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.180674Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.181502Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.181533Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.183556Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.183637Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.185521Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.185612Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.18782Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.188309Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.188777Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.188795Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.191751Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.191789Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.19246Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.192478Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.194078Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.194165Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.196948Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.196972Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.217207Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.217341Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.218968Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.219093Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.221909Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.222045Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.222877Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.222959Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.238691Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.238743Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.240588Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.240642Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.242716Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.242841Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.245153Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.245199Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.247113Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.247127Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.249526Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.249541Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.251858Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.251872Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.251992Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.252001Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.273174Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.2732Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.282218Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.282236Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.282781Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.282793Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.28491Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.284936Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.292212Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.292283Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.296443Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.296481Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.29663Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.296643Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.306258Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.307164Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.310023Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.310071Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.315618Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.315756Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.320847Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.320883Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.322725Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.322761Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.325903Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.325987Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.332108Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.332157Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.334178Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.334204Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.336812Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.336853Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.338565Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.338604Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.339112Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.33914Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.342203Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.342248Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.34484Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.344886Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.345445Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.345455Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.345788Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.3458Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.348371Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.348383Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.350658Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.35067Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.353076Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.353088Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.354979Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.354989Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.358697Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.358717Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.360969Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.360979Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.362965Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.362977Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.363796Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.363808Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.366936Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.366946Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.367421Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.367431Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.370403Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.370663Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.372912Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.372924Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.374961Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.37497Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.375065Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.375072Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.377041Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.377053Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.378025Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.378042Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.379744Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.379764Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.381701Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.381712Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.38512Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.385133Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.385529Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.385541Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.387031Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.387044Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.389412Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.389434Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.389803Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.389813Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.393302Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.393348Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.39502Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.395032Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.396882Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.396895Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.397517Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.397527Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.401801Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.401876Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.402738Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.402751Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.403071Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.403112Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.403572Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.403582Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.40479Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.404804Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.407003Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.407014Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.407604Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.407614Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.408223Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.408263Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.410234Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.410247Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.411005Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.411016Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.41229Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.412302Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.418431Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.41847Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.418486Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.418495Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.418638Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.418649Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.420989Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.421032Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.423022Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.423035Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.423205Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.423216Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.426427Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.426466Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.428924Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.42894Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.430899Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.430913Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.43101Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.431023Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.433064Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.43308Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.43557Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.435614Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.437947Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.437959Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.440017Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.440037Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.44085Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.440871Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.442498Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.442511Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.444277Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.444315Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.447822Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.447873Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.44796Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.447973Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.448567Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.44858Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.45049Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.450531Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.453354Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.453369Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.453802Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.453821Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.457219Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.457237Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.458341Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.458354Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.458375Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.458386Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.460135Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.46015Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.461676Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.461713Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.466258Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.466273Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.466392Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.466407Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.46647Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.466486Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.467763Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.467777Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.470664Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.470706Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.471697Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.471711Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.472083Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.4721Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.473706Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.473736Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.474459Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.474478Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.476204Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.476223Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.476818Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.476833Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.478158Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.478178Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.479029Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.479044Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.481797Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.481815Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.482794Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.482812Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.49179Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.491812Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.49369Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.493715Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.496735Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.496826Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.499074Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.4991Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.500202Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.500234Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.500842Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.500864Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.503292Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.503324Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.505674Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.505689Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.506805Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.506822Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.508996Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.509012Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.510995Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.51103Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.515095Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.515115Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.515219Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.515232Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.517163Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.517177Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.517936Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.51795Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.519549Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.519571Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.522729Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.522747Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.523547Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.523566Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.526425Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.526441Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.526559Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.526572Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.52832Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.52834Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.530335Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.530366Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.532808Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.532821Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.532936Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.532955Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.533521Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.533535Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.536866Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.53688Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.538889Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.538903Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.539007Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.539021Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.540853Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.540868Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.540993Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.541012Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.541294Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.541307Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.543287Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.543299Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.55529Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.555305Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.555522Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.555541Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.555995Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.556007Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.557218Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.557251Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.558635Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.558673Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.559376Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.559394Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.560361Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.560378Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.561849Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.561886Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.562778Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.5628Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.563749Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.563768Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.565072Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.565085Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.566428Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.566446Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.568191Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.568205Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.570977Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.570996Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.571957Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.571983Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.57512Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.575153Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.57578Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.575803Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.577026Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.577042Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.57869Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.578706Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.581065Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.581086Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.583279Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.583299Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.585166Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.585189Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.587711Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.587743Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.589615Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.58965Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.593139Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.593161Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.593288Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.593302Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.596943Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.596986Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.597082Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.597117Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.599054Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.599091Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.599476Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.599507Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.599816Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.599862Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.603242Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.603406Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.604518Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.604571Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.606733Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.606779Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.609209Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.609275Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.609825Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.609894Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.611549Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.611609Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.613652Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.613712Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.614746Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.614819Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.61674Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.616821Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.619292Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.619392Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.619664Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.619718Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.620766Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.620813Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.621571Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.621624Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.622609Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.622662Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.623545Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.623593Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.624839Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.624896Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.625724Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.625773Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.627035Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.627088Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.629415Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.629478Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.630981Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.631068Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.6311Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.631137Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.631817Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.631863Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.633511Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.633558Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.63397Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.63402Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.636954Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.637009Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.63814Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.638195Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.640002Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.640072Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.64183Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.641917Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.64481Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.644917Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.645666Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.645719Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.64659Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.646654Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.648378Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.648428Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.650213Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.650269Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.652477Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.652545Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.654865Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.654936Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.657088Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.657162Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.660467Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.660524Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.662881Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.66295Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.664855Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.664942Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.667088Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.667182Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.670173Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.670701Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.672137Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.672183Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.674224Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.674306Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.676069Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.676115Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.67755Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.677599Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.679374Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.679452Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.68199Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.682052Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.684124Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.684223Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.687371Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.68747Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.688979Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.689042Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.689062Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.689089Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.690808Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.690847Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.691779Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.691862Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.692777Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.692813Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.695166Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.69534Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.696646Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.696695Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.697395Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.697446Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.700691Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.700763Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.700829Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.70089Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.70263Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.70268Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.703283Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.703337Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.703842Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.703892Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.705024Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.705081Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.707619Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.707669Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.710297Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.710393Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.711522Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.712057Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.71343Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.713479Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.716603Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.716716Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.71681Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.716861Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.71761Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.71768Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.719799Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.719846Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.722061Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.722116Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.723982Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.724053Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.726473Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.726546Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.728357Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.728413Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.731928Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.731989Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.734552Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.734675Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.73645Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.736496Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.737651Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.737686Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.740541Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.740583Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.742925Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.74297Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.745227Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.745286Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.746101Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.746132Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.748648Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.748674Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.749601Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.749626Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.751862Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.751893Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.752861Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.752892Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.755275Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.755304Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.757242Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.757256Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.759915Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.760212Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.762123Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.762305Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.76276Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.762779Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.763193Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.763215Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.764466Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.764488Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.764825Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.764846Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.766774Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.766924Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.768159Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.768229Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.769928Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.770041Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.77132Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.771358Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.77219Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.77223Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.775627Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.77567Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.776348Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.776404Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.777996Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.778064Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.778702Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.778747Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.7796Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.77966Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.779682Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.779713Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.781807Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.781869Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.783188Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.783271Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.786619Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.786725Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.788436Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.788542Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.789074Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.789127Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.791037Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.791289Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.791657Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.791701Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.79417Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.794211Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.796317Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.796341Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.798228Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.798653Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.800427Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.800471Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.80309Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.803178Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.805035Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.8051Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.806719Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.806761Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.808268Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.808302Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.810183Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.810305Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.8132Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.81333Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.813835Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.813886Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.815524Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.815573Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.818189Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.818286Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.819143Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.819196Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.820025Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.820083Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.821057Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.821104Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.822425Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.822528Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.824222Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.824274Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.824292Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.824327Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.827276Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.827554Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.8289Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.828984Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.830834Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.830884Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.832093Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.832142Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.83502Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.835092Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.835829Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.835873Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.836246Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.836282Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.837241Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.837271Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.839192Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.839476Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.839674Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.839702Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.840346Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.840374Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.84156Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.841596Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.843067Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.843126Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.844518Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.844592Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.84564Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.845692Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.846544Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.846582Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.847587Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.847633Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.850679Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.850762Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.850796Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.85084Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.852535Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.852628Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.854909Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.855055Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.855546Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.855599Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.857025Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.857118Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.860678Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.861226Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.862553Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.862619Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.866238Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.866293Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.868089Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.868139Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.868851Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.868896Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.870867Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.870976Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.873772Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.873816Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.875106Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.87516Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.877276Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.87737Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.879984Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.880007Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.880116Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.880116Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.881776Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.881852Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.885222Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.88529Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.887113Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.887185Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.889046Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.889086Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.889851Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.889889Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.893301Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.893381Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.894995Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.895097Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.895112Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.895137Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.897938Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.898083Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.8981Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.898128Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.899897Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.899931Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.901731Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.901846Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.903064Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.903115Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.903851Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.903882Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.907436Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.90757Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.908192Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.90822Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.911346Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.911441Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.913321Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.913398Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.913419Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.913449Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.914831Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.914873Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.91682Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.916858Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.917922Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.917964Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.917981Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.918009Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.919284Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.919368Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.919945Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.919986Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.921617Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.921654Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.922515Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.922553Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.923797Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.923825Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.927116Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.927248Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.92717Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.927315Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.928229Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.928289Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.931103Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.931157Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.931175Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.93121Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.932314Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.932348Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.934487Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.934542Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.937318Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.937398Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.94173Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.941834Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.941848Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.941873Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.943712Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.943781Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.945417Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.945457Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.948066Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.948099Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.95031Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.950361Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.9521Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.952141Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.95573Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.955772Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.956023Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.956049Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.957876Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.957917Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.960082Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.960113Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.96312Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.963184Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.964957Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.965011Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.966582Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.96661Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.968883Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.968913Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.971788Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.971818Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.971848Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.971861Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.975033Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.975075Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.976934Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.976995Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.978148Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.978202Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.980007Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.980039Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.98213Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.982166Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.98425Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.984274Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.986862Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.986901Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.988926Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.988959Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.990544Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.99057Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.991132Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.991157Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.99173Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.991758Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.99272Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.992786Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.993715Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.993752Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.996476Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.996518Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.996561Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.996585Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.997971Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.998002Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.999943Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:20:59.999965Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.002099Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.00215Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.005871Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.005932Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.005946Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.005964Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.006322Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.006342Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.009442Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.009477Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.00964Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.009657Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.010825Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.010852Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.01278Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.012816Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.01455Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.014574Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.016999Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.017021Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.019464Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.019516Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.022232Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.022281Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.02344Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.023461Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.024332Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.024357Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.030889Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.030923Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.030929Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.030936Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.031025Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.031039Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.032012Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.03204Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.033919Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.033939Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.036306Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.03636Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.038087Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.038107Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.039934Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.039962Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.041654Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.041676Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.04593Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.04597Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.046807Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.046844Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.048898Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.04892Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.051545Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.051575Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.05159Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.051609Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.054839Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.054871Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.056977Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.057Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.058986Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.059111Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.05989Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.05997Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.062211Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.062239Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.068423Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.06847Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.069399Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.069423Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.070038Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.070058Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.071314Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.07133Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.072017Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.072034Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.072092Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.072108Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.074314Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.074333Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.075977Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.076Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.076011Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.076026Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.078303Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.078337Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.079171Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.07919Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.080256Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.080276Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.081217Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.081237Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.082732Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.082748Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.086335Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.086375Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.08718Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.087196Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.087283Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.087299Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.088871Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.08889Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.090873Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.090889Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.092954Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.092982Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.095496Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.095524Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.096167Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.096193Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.097777Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.097796Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.100448Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.100475Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.102385Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.102415Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.104391Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.104415Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.104491Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.104512Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.106158Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.106175Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.108455Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.108471Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.109969Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.110052Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.112044Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.112073Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.113813Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.113833Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.116092Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.116116Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.117743Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.11777Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.120397Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.120429Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.123129Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.123148Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.125158Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.125185Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.127256Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.127293Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.128586Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.128604Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.129326Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.129342Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.13114Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.131156Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.133245Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.13327Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.133358Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.133375Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.136656Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.136688Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.136699Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.136717Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.139269Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.139465Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.139891Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.139907Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.141677Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.141696Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.143761Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.143797Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.145997Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.146023Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.147878Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.1479Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.149741Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.149763Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.151615Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.151643Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.152846Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.152866Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.152876Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.152888Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.154953Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.154968Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.155758Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.155771Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.156394Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.156424Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.159058Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.159108Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.159781Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.159809Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.159822Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.159838Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.161332Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.161393Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.162474Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.162519Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.163269Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.1633Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.165951Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.166111Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.168953Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.169003Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.171094Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.171132Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.171145Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.171159Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.172614Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.172647Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.173292Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.17332Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.175218Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.175394Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.176813Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.176834Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.178944Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.178988Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.179777Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.179835Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.183484Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.183525Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.183782Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.183799Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.185059Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.185082Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.187741Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.187766Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.188684Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.188703Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.19105Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.191072Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.193768Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.193794Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.195792Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.195821Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.197977Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.197999Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.200677Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.200698Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.20312Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.203138Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.205301Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.205319Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.207657Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.207675Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.209428Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.209453Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.210008Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.210022Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.212511Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.212527Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.214484Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.214499Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.216033Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.216055Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.216934Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.216956Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.219305Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.219319Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.221072Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.221084Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.221111Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.221261Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.222807Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.222824Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.226128Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.226146Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.226299Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.226309Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.226345Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.226354Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.228164Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.228183Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.230091Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.23011Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.232266Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.232288Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.234042Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.234065Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.234092Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.234105Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.234834Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.234846Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.237317Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.237347Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.237756Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.237779Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.240454Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.24047Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.240846Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.240865Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.241292Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.241309Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.242651Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.242665Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.245539Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.245553Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.245595Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.245607Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.246052Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.246069Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.24723Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.24725Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.248269Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.248304Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.249492Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.24952Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.25289Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.25291Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.254014Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.254028Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.256213Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.256412Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.258299Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.258328Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.261181Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.261197Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.261233Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.261244Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.26405Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.264063Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.264108Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.264116Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.266211Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.266229Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.268549Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.268653Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.270126Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.270215Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.272458Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.272479Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.274755Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.274836Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.276615Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.276663Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.278944Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.279035Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.280867Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.280909Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.28318Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.28321Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.28637Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.2864Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.288315Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.288342Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.290413Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.290522Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.292361Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.292394Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.295029Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.295123Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.295149Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.295171Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.29616Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.296184Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.298213Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.29824Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.300048Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.300199Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.301752Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.301827Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.302961Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.3033Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.304744Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.30479Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.30727Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.307322Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.308702Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.308767Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.310765Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.31088Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.312842Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.312936Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.3158Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.315853Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.316644Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.316689Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.318731Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.318874Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.318889Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.318915Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.320454Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.32059Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.321205Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.32142Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.32401Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.324028Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.324113Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.324125Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.32514Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.325154Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.327568Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.327604Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.327621Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.327642Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.32872Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.328749Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.329152Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.329181Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.330106Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.330195Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.332733Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.332755Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.333146Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.333166Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.334155Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.334197Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.335785Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.335813Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.336667Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.336695Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.33931Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.339476Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.341765Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.341806Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.341838Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.341863Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.345493Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.34565Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.345664Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.34569Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.347378Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.34745Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.349644Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.349736Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.350697Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.35074Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.353287Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.353325Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.355721Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.355738Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.357085Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.357251Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.362581Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.362608Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.362639Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.362718Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.363949Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.363967Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.365829Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.365861Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.367937Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.367975Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.370284Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.370623Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.373267Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.373356Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.375655Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.375739Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.378167Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.378322Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.380168Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.380285Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.382051Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.382102Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.386496Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.386631Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.387501Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.387559Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.387986Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.388022Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.390295Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.390409Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.396413Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.396517Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.396532Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.396564Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.396531Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.396599Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.398078Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.398154Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.400344Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.400414Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.402979Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.403128Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.405897Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.405976Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.405988Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.406013Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.409096Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.409128Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.409646Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.409686Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.410873Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.411129Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.41115Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.411177Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.413152Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.413186Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.413862Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.413941Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.414198Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.414232Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.416962Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.417037Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.419335Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.419304Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.419372Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.419403Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.420133Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.420161Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.421718Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.421727Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.422992Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.423008Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.423046Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.423056Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.424293Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.42446Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.428728Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.428879Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.430245Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.430262Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.430613Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.430628Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.432356Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.432385Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.435708Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.435884Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.437114Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.43714Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.439315Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.439341Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.439954Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.439985Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.441177Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.441306Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.443801Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.443944Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.445296Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.445329Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.446469Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.446497Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.449574Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.449735Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.450012Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.450059Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.453957Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.454064Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.455939Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.455951Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.458013Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.458023Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.460427Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.460633Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.462552Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.462587Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.465099Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.465119Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.467005Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.467171Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.46973Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.46989Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.472033Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.472064Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.47208Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.472101Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.474051Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.47408Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.476107Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.476136Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.478389Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.478415Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.478421Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.478451Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.480887Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.480899Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.483463Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.483495Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.483546Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.483574Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.486486Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.486765Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.489751Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.490371Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.490393Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.490425Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.4925Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.492537Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.496224Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.496254Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.496265Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.496278Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.498373Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.498492Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.500029Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.500056Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.500494Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.500534Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.501895Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.501979Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.502088Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.502119Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.503843Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.503892Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.504873Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.504914Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.505494Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.505541Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.50733Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.507375Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.508081Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.508114Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.508519Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.508549Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.510362Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.510412Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.512166Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.512187Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.513027Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.513049Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.513194Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.513224Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.515015Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.515038Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.517796Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.517824Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.518255Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.518278Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.521728Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.521758Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.523597Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.523618Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.523629Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.523645Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.525665Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.525707Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.527279Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.527312Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.52794Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.527967Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.530161Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.530186Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.531637Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.531671Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.533924Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.533949Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.534551Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.534584Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.535464Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.535497Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.538126Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.538151Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.540986Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.541014Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.542072Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.542098Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.544174Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.544208Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.547028Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.547065Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.54845Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.548495Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.550074Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.550108Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.552157Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.552195Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.554364Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.554404Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.557186Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.557225Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.559539Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.559568Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.561394Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.561557Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.563626Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.563664Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.56546Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.565507Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.565843Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.56587Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.567986Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.568022Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.570946Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.570999Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.572844Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.572901Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.572915Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.572937Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.574951Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.574981Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.57796Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.578021Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.580303Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.580342Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.58188Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.581921Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.585588Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.585654Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.58567Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.585698Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.587019Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.587045Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.5877Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.587728Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.590431Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.590458Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.592947Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.592991Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.594816Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.59485Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.595972Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.596015Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.599182Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.599344Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.599817Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.599866Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.600957Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.60099Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.60505Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.605369Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.610255Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.610365Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.614303Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.614413Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.616257Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.616305Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.617054Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.617097Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.619592Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.619672Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.621824Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.621857Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.62315Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.62318Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.62479Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.624831Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.626637Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.626723Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.62695Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.626976Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.628907Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.62893Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.629212Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.629236Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.631254Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.631288Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.633157Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.63345Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.634434Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.634498Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.637849Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.637898Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.638887Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.638921Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.641153Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.641345Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.643383Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.64344Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.645451Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.645501Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.647979Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.648011Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.649778Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.649826Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.653477Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.65358Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.655439Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.65548Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.65765Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.658002Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.660124Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.6602Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.662223Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.662282Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.664421Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.664477Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.666073Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.666127Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.668159Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.668223Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.670068Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.670115Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.671965Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.672022Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.678073Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.678255Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.67812Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.678349Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.679202Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.679271Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.680861Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.680896Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.682073Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.6821Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.685307Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.685339Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.687335Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.687586Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.689436Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.689483Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.69361Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.693803Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.70788Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.708082Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.709364Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.709401Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.709421Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.709448Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.712755Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.712825Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.714706Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.714806Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.715755Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.715858Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.715887Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.715936Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.718154Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.718231Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.720487Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.721974Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.722007Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.722049Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.722577Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.722632Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.723519Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.723581Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.725261Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.725335Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.727296Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.727333Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.72764Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.727667Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.72944Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.729476Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.731452Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.731634Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.732125Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.732178Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.734076Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.734107Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.736286Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.736365Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.7383Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.738359Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.740502Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.74056Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.742726Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.742788Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.744476Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.744553Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.746314Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.746464Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.748122Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.748205Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.751775Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.751842Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.753526Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.753613Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.755853Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.755936Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.758238Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.75829Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.761038Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.761156Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.766866Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.767057Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.767994Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.768108Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.77221Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.775529Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.795411Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.795679Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.795758Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.795843Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.797091Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.797128Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.797443Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.797485Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.799027Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.799089Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.80028Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.800331Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.803285Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.803386Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.805094Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.805166Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.806367Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.806424Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.808513Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.808592Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.810786Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.810845Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.810875Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.810898Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.812785Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.812918Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.812943Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.812983Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.816364Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.816652Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.817269Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.817299Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.821633Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.821793Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.821814Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.821848Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.82309Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.823143Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.825273Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.825303Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.827473Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.827583Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.829251Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.829305Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.831724Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.83178Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.833596Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.833653Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.836161Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.837055Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.837943Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.838026Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.839836Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.839898Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.842165Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.842319Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.844711Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.844963Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.846133Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.846175Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.848548Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.848586Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.850304Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.850463Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.852191Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.852251Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.855631Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.855669Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.857195Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.857236Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.859129Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.859177Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.860958Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.861014Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.862204Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.862254Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.863154Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.86321Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.863556Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.863617Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.866114Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.866232Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.868381Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.868443Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.869305Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.869359Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.870231Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.870308Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.872194Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.872251Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.873285Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.873334Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.875746Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.875802Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.876058Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.87616Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.878666Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.878712Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.879615Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.879668Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.879696Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.879769Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.881411Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.881461Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.882908Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.882961Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.883429Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.883479Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.885288Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.885346Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.88606Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.886109Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.887276Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.887326Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.89Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.89008Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.892526Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.892681Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.893991Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.894078Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.895003Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.895063Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.896895Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.896983Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.898456Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.898495Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.899241Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.899277Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.902467Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.902501Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.904848Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.904881Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.906956Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.907021Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.907371Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.907428Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.910945Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.911028Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.912326Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.912398Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.915179Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.915235Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.916962Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.917021Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.919243Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.919327Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.921088Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.921164Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.92337Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.923453Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.925829Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.925932Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.925956Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.925995Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.928837Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.928941Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.93014Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.930195Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.932561Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.932659Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.947418Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.947629Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.951077Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.951237Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.952328Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.952382Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.952398Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.952425Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.952686Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.952719Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.955344Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.955398Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.956178Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.956236Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.958296Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.958392Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.95894Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.958968Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.960044Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.960075Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.960908Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.960952Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.962263Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.9623Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.964433Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.96449Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.965686Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.96579Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.966628Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.96668Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.967102Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.967459Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.968352Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.968412Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.970421Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.97047Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.971318Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.971369Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.97369Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.973817Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.974651Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.974678Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.977141Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.977206Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.979551Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.9796Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.981547Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.981597Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.984007Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.984062Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.986039Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.98608Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.986095Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.986115Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.988035Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.988106Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.990143Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.990222Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.992417Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.992493Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.992505Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.992529Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.994708Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.994745Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.9965Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.996548Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.998567Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:00.998638Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.00409Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.004172Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.007438Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.007507Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.008266Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.008303Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.010892Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.01093Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.014186Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.01426Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.015771Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.015822Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.018047Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.018082Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.040469Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.040597Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.042364Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.042438Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.042944Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.04302Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.046343Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.046462Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.047239Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.047297Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.049265Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.049336Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.05138Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.051432Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.05143Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.051511Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.054204Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.054297Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.054366Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.054433Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.056609Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.056665Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.057538Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.057587Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.059528Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.059589Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.060611Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.06069Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.061234Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.061286Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.062724Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.062801Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.06336Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.063411Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.066293Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.066337Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.066631Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.066659Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.068656Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.068737Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.071362Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.071484Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.073093Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.073157Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.075305Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.075366Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.075617Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.075662Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.077391Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.077405Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.077491Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.077513Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.080384Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.080469Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.080499Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.080542Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.082193Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.082248Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.084152Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.084222Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.086359Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.086482Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.088487Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.088549Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.09048Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.090526Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.092546Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.092584Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.095373Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.095483Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.096207Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.096252Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.097668Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.097716Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.09961Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.099665Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.101279Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.101331Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.103473Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.103547Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.105529Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.105612Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.107755Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.107837Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.11022Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.110282Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.112739Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.11281Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.113574Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.113629Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.132927Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.133092Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.13488Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.134966Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.135179Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.135223Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.137579Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.137639Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.139307Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.139361Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.141638Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.141708Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.141738Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.14188Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.145234Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.145332Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.146671Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.146717Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.14754Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.147586Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.149586Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.149607Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.149659Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.149776Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.151124Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.151189Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.151203Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.151244Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.15405Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.154111Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.154139Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.154187Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.155006Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.155057Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.157Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.157085Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.160221Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.160275Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.160547Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.160597Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.161785Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.161845Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.161873Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.161913Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.163754Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.16381Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.165739Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.165794Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.168215Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.16827Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.170014Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.170064Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.17152Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.171584Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.172424Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.172471Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.174259Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.174315Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.176069Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.176137Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.177674Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.17772Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.178532Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.178589Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.181645Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.182156Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.18386Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.183959Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.185698Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.185747Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.188026Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.188123Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.188142Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.188166Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.19006Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.190109Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.193329Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.193447Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.195827Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.195891Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.198107Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.198235Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.20044Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.200502Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.202546Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.202679Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.20734Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.207439Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.207467Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.2075Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.207508Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.207558Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.209207Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.209299Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.21092Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.210987Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.212875Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.212932Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.213229Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.213257Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.215832Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.215883Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.2159Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.21593Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.218381Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.218426Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.22073Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.220786Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.221134Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.221186Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.222532Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.222579Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.224552Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.224611Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.225694Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.226158Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.22619Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.22623Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.228118Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.228229Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.228262Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.228308Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.230698Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.230754Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.231986Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.232048Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.232636Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.232683Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.2351Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.23515Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.237386Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.237443Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.239837Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.239902Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.241817Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.241884Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.243819Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.243872Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.246297Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.246351Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.247322Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.247373Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.248077Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.248161Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.25033Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.25038Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.250715Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.250766Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.252297Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.252349Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.25433Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.254386Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.256193Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.256238Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.256732Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.256802Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.259812Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.259861Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.261374Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.261435Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.263911Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.263965Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.265417Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.265483Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.268131Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.268501Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.268944Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.268984Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.270882Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.270944Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.272728Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.272778Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.27571Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.275792Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.279119Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.279535Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.281732Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.28183Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.283527Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.283565Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.284709Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.28474Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.286612Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.286643Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.287425Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.287471Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.289678Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.289713Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.291487Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.291527Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.291942Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.291979Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.293754Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.29388Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.29614Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.296223Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.298605Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.298644Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.299256Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.299289Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.301088Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.301129Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.305802Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.305919Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.305955Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.305994Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.30717Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.307291Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.307323Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.307371Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.30804Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.308093Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.311117Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.311209Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.311556Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.311926Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.312651Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.312697Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.314289Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.314337Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.316695Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.316776Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.319172Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.319228Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.321119Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.321169Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.323159Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.323236Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.325022Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.325124Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.325155Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.325196Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.327779Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.327854Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.329644Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.329692Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.330082Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.330145Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.332188Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.332264Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.334366Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.33442Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.336301Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.336346Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.337421Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.337495Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.340369Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.340443Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.343295Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.343377Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.34438Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.344463Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.346204Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.346295Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.348793Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.348847Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.348874Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.348916Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.351492Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.35156Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.353296Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.353361Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.355138Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.355185Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.356849Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.357226Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.359908Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.359995Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.36264Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.362736Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.364881Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.364933Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.36595Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.366003Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.366346Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.366397Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.369356Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.369433Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.371352Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.371454Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.374144Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.374204Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.375656Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.375708Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.375736Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.375792Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.378401Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.378459Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.378486Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.378525Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.381335Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.381397Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.382566Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.382613Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.383281Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.383327Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.385915Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.385961Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.386316Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.386406Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.38644Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.386485Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.389598Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.38987Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.389929Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.389976Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.391862Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.391985Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.393232Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.393318Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.394039Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.394091Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.39506Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.395109Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.396217Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.396277Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.399422Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.399485Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.399509Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.399549Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.400486Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.400541Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.40266Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.402716Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.404817Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.404907Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.407203Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.407262Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.408148Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.4082Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.410373Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.410439Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.411522Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.411598Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.413763Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.413833Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.41557Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.415626Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.4178Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.417854Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.418932Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.418983Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.421437Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.421496Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.423807Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.423866Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.426762Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.426817Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.427587Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.42764Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.430451Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.430526Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.43058Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.430622Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.432362Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.432412Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.434328Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.434403Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.436263Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.43634Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.437748Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.437828Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.440391Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.440442Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.442797Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.44288Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.445356Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.445416Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.44722Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.447269Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.449246Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.449318Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.449347Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.449387Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.449547Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.449591Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.452099Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.452163Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.452825Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.452883Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.455372Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.4554Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.455425Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.455452Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.457584Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.457657Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.459396Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.459444Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.460123Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.460167Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.462333Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.462373Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.463908Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.463955Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.464627Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.464654Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.465803Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.465828Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.46665Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.466687Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.468604Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.468638Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.469435Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.46948Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.469498Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.469527Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.471446Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.471481Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.472257Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.472304Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.473753Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.473827Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.477515Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.477563Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.478177Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.478224Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.479783Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.479836Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.48239Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.482458Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.482485Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.482526Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.486126Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.4862Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.486798Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.486855Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.489433Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.489487Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.490217Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.490268Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.492347Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.492397Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.494504Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.494552Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.494953Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.495028Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.496636Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.496709Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.49937Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.499449Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.501633Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.501697Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.50313Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.5032Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.505499Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.505585Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.507708Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.507798Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.509759Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.509812Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.511934Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.511986Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.513786Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.513833Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.516293Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.516331Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.516348Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.516376Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.518945Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.518981Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.521311Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.521339Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.522986Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.523091Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.524918Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.524971Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.527708Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.527776Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.529436Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.529464Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.530233Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.530258Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.532709Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.532768Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.532799Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.532832Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.533581Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.533619Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.536579Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.536669Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.539265Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.539349Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.539377Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.53942Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.541912Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.541966Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.543738Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.543813Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.544089Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.544318Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.546715Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.546785Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.548417Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.548453Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.548718Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.548756Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.55031Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.550362Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.551041Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.551093Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.552749Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.552824Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.554352Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.554408Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.555072Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.55512Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.55694Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.556989Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.558304Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.55835Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.558924Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.558978Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.559497Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.559572Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.562888Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.562952Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.562979Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.563019Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.56518Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.565235Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.567159Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.567237Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.56727Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.567368Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.569622Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.569671Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.571819Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.571884Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.576114Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.576188Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.576335Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.576383Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.577133Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.577209Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.579214Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.579278Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.580337Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.580391Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.582778Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.582837Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.58524Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.585298Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.587167Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.587239Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.588267Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.588343Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.591572Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.591659Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.593794Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.593876Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.595512Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.595564Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.596873Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.596945Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.599381Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.599457Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.600861Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.600908Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.602953Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.603005Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.603451Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.603499Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.605973Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.606018Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.608258Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.60832Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.610299Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.610377Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.612851Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.612907Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.614753Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.614806Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.616488Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.616534Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.61841Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.61848Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.618512Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.618564Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.620162Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.620216Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.622411Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.622455Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.62246Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.622516Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.624784Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.624837Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.62657Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.626628Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.627331Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.62738Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.629631Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.629651Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.62968Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.6297Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.631529Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.631583Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.633344Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.633387Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.634606Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.634652Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.635407Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.635452Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.636846Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.636898Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.637511Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.637561Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.640537Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.640595Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.64243Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.642482Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.642508Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.642546Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.644716Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.645136Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.646732Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.646829Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.65048Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.650544Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.654658Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.654746Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.656481Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.656553Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.659006Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.659067Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.661136Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.661218Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.662916Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.662967Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.666967Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.667021Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.667228Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.667277Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.667599Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.667654Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.669523Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.66958Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.671583Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.671652Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.673646Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.673722Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.67648Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.676572Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.676605Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.676645Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.678663Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.678742Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.6809Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.680947Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.683596Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.683731Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.684852Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.684913Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.686653Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.686728Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.688362Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.688413Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.691541Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.69161Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.691643Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.691688Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.693632Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.693716Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.695487Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.695905Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.697371Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.697427Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.699512Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.699568Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.701385Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.701461Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.703717Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.703785Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.705469Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.705546Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.706331Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.70639Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.709741Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.709792Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.711656Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.711705Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.713608Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.713679Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.715408Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.715459Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.71699Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.717078Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.717111Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.717156Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.718524Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.71857Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.719182Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.719232Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.723382Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.723472Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.725292Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.725339Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.731379Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.731458Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.731489Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.731529Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.732859Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.732913Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.735556Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.735627Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.740708Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.740759Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.746164Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.746246Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.753567Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.753669Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.753736Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.753789Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.755721Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.756744Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.756778Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.756824Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.757511Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.757561Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.759589Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.759674Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.76153Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.761619Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.763892Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.763981Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.76579Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.765905Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.765946Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.765991Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.76802Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.768077Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.769998Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.77006Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.771885Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.771962Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.774125Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.774179Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.775379Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.775454Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.777489Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.777546Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.779676Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.779741Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.780661Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.780716Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.782512Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.782563Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.783295Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.783351Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.785561Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.785638Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.787766Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.787842Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.790251Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.79032Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.792205Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.792336Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.794385Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.794472Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.79655Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.796601Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.796649Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.7967Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.800461Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.800857Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.801773Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.801831Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.80616Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.806557Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.806651Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.806722Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.806791Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.806843Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.809222Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.809327Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.809361Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.809404Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.812621Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.812677Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.814055Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.814102Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.817049Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.81711Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.8247Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.824795Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.824809Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.824831Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.82548Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.82551Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.826701Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.826746Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.833362Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.833418Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.840861Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.840942Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.842626Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.842719Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.844592Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.844681Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.845682Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.845733Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.848223Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.848305Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.849379Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.849428Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.849786Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.849838Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.851758Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.851813Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.854372Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.854455Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.856543Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.856593Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.856663Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.858021Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.859485Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.859564Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.861798Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.86185Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.863677Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.863727Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.865772Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.865825Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.867693Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.867747Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.868898Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.868965Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.871597Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.871694Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.871728Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.871771Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.874508Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.874565Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.875923Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.875973Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.877168Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.877244Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.878926Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.878975Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.880261Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.880316Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.882623Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.882677Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.884557Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.88462Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.886669Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.886744Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.889006Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.88906Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.889638Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.889711Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.893293Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.893361Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.895136Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.895211Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.899102Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.89926Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.899328Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.899377Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.901654Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.901732Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.9036Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.903661Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.904284Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.904339Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.904892Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.904937Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.907344Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.907393Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.908338Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.908384Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.911968Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.912017Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.914533Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.91462Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.91465Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.91469Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.915914Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.915961Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.917449Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.917512Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.92035Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.920399Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.922086Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.922147Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.924768Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.924816Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.926995Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.927071Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.927634Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.92768Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.928883Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.928932Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.930168Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.930218Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.933723Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.933772Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.935808Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.935872Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.93627Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.936309Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.937719Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.937788Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.940529Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.940581Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.9406Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.940634Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.943735Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.943767Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.945987Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.946014Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.94818Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.948206Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.950322Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.950447Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.952482Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.952512Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.953316Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.953369Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.955803Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.955845Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.956449Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.956487Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.959353Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.959406Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.96034Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.960393Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.961255Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.961333Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.963655Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.963703Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.965566Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.965619Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.967688Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.967763Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.969491Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.969556Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.971969Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.972056Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.973519Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.973572Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.974051Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.974103Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.974513Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.97456Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.975575Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.975622Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.978732Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.978883Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.978937Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.978986Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.983025Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.983089Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.983118Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.983159Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.985059Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.985126Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.986568Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.986616Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.987211Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.987267Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.987377Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.987426Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.990138Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.990194Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.990512Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.990554Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.992495Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.992556Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.994276Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.994334Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.994387Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.994434Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.995327Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.995398Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.996777Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.99684Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.999539Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:01.999586Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.000809Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.000899Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.003993Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.004045Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.00566Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.005746Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.007454Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.007582Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.007893Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.007973Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.009453Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.009525Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.01084Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.010893Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.012604Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.012659Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.015674Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.015759Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.017037Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.017141Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.018964Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.019Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.019672Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.019722Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.021843Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.02188Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.026457Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.026536Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.032118Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.032173Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.034669Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.034722Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.035498Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.035551Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.037937Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.037987Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.039896Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.039956Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.042693Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.042875Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.044556Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.04461Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.046423Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.046482Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.048839Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.048903Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.050644Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.050716Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.05186Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.051934Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.054023Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.054109Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.054357Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.054433Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.057929Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.058027Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.060635Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.060702Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.061737Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.06179Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.066739Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.066861Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.066896Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.066942Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.070172Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.070217Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.070546Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.070592Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.071686Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.071733Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.073751Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.073799Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.074657Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.074705Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.075169Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.075216Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.075994Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.076041Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.077338Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.077392Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.079987Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.080035Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.083039Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.083105Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.083681Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.083755Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.085446Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.085521Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.087367Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.087414Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.089052Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.089101Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.091946Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.092028Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.099925Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.100092Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.115673Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.11576Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.115967Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.11599Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.116414Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.116437Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.118937Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.118956Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.121411Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.121435Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.12303Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.123053Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.124975Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.124996Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.126824Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.126846Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.129086Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.129107Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.13115Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.131172Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.132585Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.132605Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.133328Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.133352Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.134735Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.134755Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.135444Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.13547Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.136073Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.136097Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.138624Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.138645Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.14004Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.140065Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.141831Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.14186Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.141992Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.142015Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.14404Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.144065Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.146227Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.146252Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.146755Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.146779Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.147714Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.147735Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.149838Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.149862Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.150661Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.150686Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.154455Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.154482Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.15525Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.155276Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.157408Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.157435Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.157449Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.157467Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.158529Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.15856Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.15975Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.159775Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.161736Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.161761Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.163014Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.163044Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.165971Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.165996Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.16611Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.166137Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.166714Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.16674Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.169708Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.169879Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.170986Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.171032Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.173612Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.173663Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.182025Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.182154Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.190596Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.190644Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.192834Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.192862Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.193807Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.193839Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.195764Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.195874Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.198004Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.198263Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.203247Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.203295Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.203312Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.203335Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(684)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.20335Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.203387Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.203401Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.20341Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.203432Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(801)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.203448Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(801)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.203507Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"received 801 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.203529Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.203537Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.203554Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.203573Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.203582Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.203596Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.20361Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.203963Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.204818Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.208006Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.208038Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.209903Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.20993Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.211776Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.211858Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.21523Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.21528Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.217507Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.217542Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.21762Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.217638Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.221745Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.221795Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.222385Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.222408Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.222997Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.223011Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.226561Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.226589Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.226598Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.226609Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.227494Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.227513Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.227608Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.227626Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.228968Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.228981Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.230089Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.230108Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.231934Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.231957Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.233154Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.233166Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.240692Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.240709Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.240816Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.240851Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.242767Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.242779Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.242925Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.242937Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.245037Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.245049Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.247059Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.247072Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.247176Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.247186Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.252539Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.25255Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.266541Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.266553Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.26846Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.268473Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.27002Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.270034Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.274432Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.274443Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.275054Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.275065Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.276346Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.276358Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.27868Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.278692Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.280887Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.280899Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.281019Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.281032Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.284165Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.284177Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.285088Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.2851Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.28607Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.286082Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.286667Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.286678Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.288011Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.288025Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.289014Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.289026Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.289062Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.289073Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.290328Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.290342Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.290823Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.29084Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.294119Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.294132Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.296867Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.296879Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.298669Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.298688Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.301721Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.301734Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.30375Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.303792Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.306026Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.30606Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.306977Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.306991Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.312791Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.31281Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.316756Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.316774Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.317701Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.317714Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.319165Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.319202Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.32016Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.320174Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.321146Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.321161Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.321618Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.321632Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.324974Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.325019Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.32519Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.325206Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.329395Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.329434Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.331667Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.331683Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.33182Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.331838Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.333255Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.333294Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.333303Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.333492Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.334603Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.334619Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.335617Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.335637Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.336703Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.33672Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.336817Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.336831Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.337815Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.337833Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.338807Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.338822Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.343302Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.343321Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.345825Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.345858Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.347813Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.347829Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.349791Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.349826Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.349944Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.34998Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.350671Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.350691Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.352476Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.352491Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.352618Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.352631Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.353074Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.353093Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.354283Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.354298Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.355471Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.355488Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.355921Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.35594Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.357673Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.357689Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.358093Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.358109Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.359328Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.359349Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.361933Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.361951Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.364361Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.36438Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.366405Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.366423Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.366497Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.366617Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.366632Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.366647Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.368239Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.36826Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.369807Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.369825Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.370565Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.37059Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.371614Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.371634Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.372348Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.372369Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.374135Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.374153Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.374833Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.37485Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.375588Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.375609Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.379683Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.379716Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.381813Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.381836Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.382546Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.382568Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.38586Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.385895Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.387756Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.3878Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.3879Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.387925Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.388028Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.388051Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.388784Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.388807Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.389222Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.389245Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.389777Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.389802Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.390912Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.390939Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.391771Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.391792Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.392935Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.392957Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.393898Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.393921Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.394961Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.394982Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.3962Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.396301Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.400814Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.400848Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.402828Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.402848Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.402939Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.402954Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.403Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.403018Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.404002Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.404024Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.404046Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.40406Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.406086Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.406108Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.407588Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.407612Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.408081Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.408101Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.408368Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.408395Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.409575Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.409598Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.41263Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.412653Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.412669Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.412687Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.412819Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.412847Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.415866Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.415898Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.418757Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.418795Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.419577Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.419605Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.420097Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.420125Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.421796Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.421822Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.424969Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.425166Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.42519Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.425219Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.425717Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.425755Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.427646Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.427677Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.427955Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.427988Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.428638Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.428908Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.429048Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.429086Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.430581Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.430612Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.431112Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.431153Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.432772Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.432828Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.434753Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.434806Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.436893Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.436947Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.439901Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.440025Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.440058Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.440101Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.441698Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.441754Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.442533Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.442606Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.444714Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.444802Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.444834Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.444881Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.445431Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.445478Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.446934Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.446985Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.448032Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.448079Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.44912Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.449171Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.45305Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.453142Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.455067Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.455145Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.45572Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.455772Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.457787Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.457901Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.458163Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.458214Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.459774Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.459824Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.461039Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.461093Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.462088Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.462138Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.462848Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.463227Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.464934Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.464994Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.465186Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.465231Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.465656Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.465701Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.467012Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.467063Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.468754Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.468806Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.469635Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.469684Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.470132Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.470203Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.471038Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.47109Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.472154Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.472213Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.475654Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.475703Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.477827Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.477914Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.478741Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.479521Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.479554Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.479626Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.481284Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.481332Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.485352Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.485441Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.488249Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.488333Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.490237Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.490312Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.501692Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.501881Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.502006Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.502051Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.504465Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.504619Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.506096Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.506131Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.510806Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.510841Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.517166Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.517201Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.519553Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.519609Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.522403Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.522423Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.524184Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.524197Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.529169Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.529209Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.531263Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.531289Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.535015Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.535038Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.537308Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.537335Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.539546Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.539584Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.539692Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.539716Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.540295Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.540321Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.547274Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.547302Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.547385Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.547412Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.552913Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.553109Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.55962Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.559798Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.560812Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.560873Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.567024Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.567159Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.569968Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.570003Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.573701Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.573759Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.575331Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.575411Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.578228Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.57831Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.580193Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.580282Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.582349Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.582409Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.58839Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.588516Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.589336Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.589407Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.595024Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.59512Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.597526Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.597579Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.59969Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.599791Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.602017Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.602094Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.603936Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.604013Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.606073Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.606121Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.608002Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.608095Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.61025Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.610278Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.611266Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.611307Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.61421Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.614264Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.616723Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.616782Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.617696Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.617718Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.62055Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.620574Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.622397Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.622448Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.626829Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.626884Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.630085Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.630175Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.631106Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.631169Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.633088Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.633136Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.633972Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.633993Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.636812Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.63687Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.640104Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.640169Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.640193Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.640218Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.641152Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.641175Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.643008Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.643037Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.646312Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.646412Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.648743Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.648831Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.649639Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.64971Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.652809Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.653263Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.656127Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.656168Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.659229Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.659271Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.661282Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.661312Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.662222Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.662251Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.663739Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.66378Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.665783Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.665832Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.669153Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.669212Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.671118Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.671168Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.67328Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.673332Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.674123Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.674158Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.675611Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.67564Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.678314Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.678345Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.679213Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.679243Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.680674Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.680699Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.682752Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.682795Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.686308Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.686416Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.688275Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.688377Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.69042Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.69045Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.693016Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.693043Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.69521Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.695267Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.697183Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.697253Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.698117Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.698189Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.701231Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.701289Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.701828Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.701901Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.705001Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.705048Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.706897Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.706926Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.708917Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.708973Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.711995Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.71209Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.715153Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.71521Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.717446Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.717558Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.719819Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.719891Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.722936Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.722979Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.725473Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.725534Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.72733Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.727359Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.73023Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.730262Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.730733Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.73076Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.734348Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.734373Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.736334Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.736359Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.73652Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.736541Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.738125Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.738156Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.740154Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.740175Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.74028Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.740304Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.742789Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.742814Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.746886Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.746926Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.746943Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.746961Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.747069Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.747095Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.750154Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.750182Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.750826Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.750853Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.753054Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.753157Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.755319Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.755352Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.756563Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.756589Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.760014Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.760049Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.762016Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.762046Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.762148Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.762172Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.762852Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.762882Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.764848Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.764872Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.767102Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.767132Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.770397Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.770556Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.771186Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.771234Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.774321Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.774352Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.775077Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.775112Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.776659Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.776717Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.779699Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.779789Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.78186Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.781935Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.78424Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.784307Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.786108Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.786157Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.786977Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.787018Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.789875Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.78996Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.790163Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.79021Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.791983Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.792038Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.794996Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.795044Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.796991Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.797088Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.79787Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.79794Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.799851Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.799908Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.802882Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.802959Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.803672Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.803743Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.806762Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.806832Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.807295Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.807345Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.809064Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.809119Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.812057Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.812135Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.814151Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.814251Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.816197Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.816299Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.81908Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.81915Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.820471Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.82051Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.822521Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.822561Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.825614Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.825677Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.826892Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.826948Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.82905Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.829098Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.831599Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.831641Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.833267Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.833328Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.837819Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.838019Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.84043Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.840492Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.840797Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.840866Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.844885Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.845008Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.845058Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.845102Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.84604Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.84611Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.84816Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.848209Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.85634Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.856939Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.975546Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.976719Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.976781Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.976845Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.976889Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.976981Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.977017Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.977045Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.977098Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.977155Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.977755Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.977819Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.977847Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.97789Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.977935Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.977962Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.978002Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.978037Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:02.978155Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.356397Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.356519Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.35654Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.356569Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.356591Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.356644Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.356662Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.356675Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.3567Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.356721Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.357112Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.357149Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.357164Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.357185Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.357211Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.357227Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.357256Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.357277Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.357307Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.357487Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.35751Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.357539Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(688)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.35756Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.3576Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.357617Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.35763Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.357651Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(805)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.357674Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(805)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.358061Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"received 805 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.358096Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.35811Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.358134Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.358152Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.358164Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.359023Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.359502Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.357339Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.359556Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.649274Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.649531Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.649562Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.649603Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.649629Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.649697Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.649721Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.649734Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.649768Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.649819Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.650349Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.6504Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.650416Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.650445Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.650471Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.650484Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.650488Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.650513Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:03.650597Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.073893Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.074121Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.074147Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.074177Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(682)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.0742Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.074266Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.074291Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.074305Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.074341Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(799)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.074376Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(799)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.074887Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"received 799 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.074916Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.074929Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.074985Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.07501Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.075024Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.075049Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.075069Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.075142Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.083693Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.08374Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.083772Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.083778Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(651))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.083786Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.083831Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.083841Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 651","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.083867Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.083865Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.083878Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084173Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084134Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":651,"self.len":131}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(639))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.0842Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084145Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084233Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084256Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084304Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084211Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 639","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084337Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084351Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":639,"self.len":131}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084353Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084379Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084299Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084404Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084326Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"flushed 782 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084359Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(633))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084383Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(566))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084432Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"flushed 770 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084384Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084452Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084484Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.08443Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(638))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084418Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084466Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084542Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(500))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084557Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 566","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084511Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084584Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 633","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084586Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084515Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 638","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084567Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084637Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":633}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084619Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":566,"self.len":131}
-{"v":0,"name":"sugar","msg":"sized write, len = 500","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084623Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084658Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":638}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084726Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":500}
-{"v":0,"name":"sugar","msg":"flushed 631 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084766Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed 764 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.08477Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084798Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed 697 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084813Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084831Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed 769 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084778Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084776Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.084856Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381304Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381355Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381363Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381378Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(672)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381386Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381637Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381649Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381655Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381665Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(789)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381673Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(789)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381699Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"received 789 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381712Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381716Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.38172Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381722Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381732Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381747Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381732Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381769Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.38174Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381748Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381796Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381796Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381749Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381815Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.38183Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381827Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381841Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
-{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.3818Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381802Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381857Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381872Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381875Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(672)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381897Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381895Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381758Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381921Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381913Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.38193Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381938Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(684)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381846Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381947Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381907Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381962Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381947Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381976Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381985Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381899Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381991Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.38197Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382051Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(789)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382002Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381952Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382061Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.381959Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382097Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(789)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382112Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382057Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.38212Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382285Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 789 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382293Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382294Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.38231Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382306Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382055Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382342Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382353Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382325Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382362Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382337Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382109Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382364Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382419Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382406Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382432Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382412Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382426Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382413Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382473Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382439Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382442Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382488Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382519Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382502Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382527Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382525Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382532Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382558Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382578Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382587Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382573Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382591Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382598Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382635Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382588Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382637Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382673Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382666Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382474Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382685Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(801)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382703Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382709Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382714Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382721Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(801)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382716Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382731Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 801 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382746Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382932Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382941Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382949Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382953Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382959Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382964Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.382977Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461303Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
-{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461346Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461355Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
-{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461372Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.46138Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
-{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461359Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461413Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.46143Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461439Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461453Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461468Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461401Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461498Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461311Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
-{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461529Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461383Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461549Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461565Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461311Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
-{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461533Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"pool closed, canceling idle interval","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461457Z","target":"hyper::client::pool","line":758,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461556Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461599Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461651Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461508Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461735Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461586Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461805Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461831Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461844Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.461865Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Cache exists, loading...","level":30,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.498449Z","target":"sugar_cli::cache","line":157,"file":"src/cache.rs"}
-{"v":0,"name":"sugar","msg":"Candy machine address is empty, creating new candy machine...","level":30,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.501952Z","target":"sugar_cli::deploy::process","line":117,"file":"src/deploy/process.rs"}
-{"v":0,"name":"sugar","msg":"Initializing candy machine with account size of: 1927 and address of: 2AVdQdNsR1tgehsWoUXX98tBuiHupciJGq2mgGxpgdeC","level":30,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.504079Z","target":"sugar_cli::deploy::initialize","line":122,"file":"src/deploy/initialize.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.504284Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.504317Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.504362Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.505513Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:04.624526Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.033607Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.033697Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.033747Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.033774Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.035044Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(85))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.035105Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.035798Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 85","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.035826Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.035841Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":85}
-{"v":0,"name":"sugar","msg":"flushed 198 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.036104Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.036122Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.155577Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 424 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.155882Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.155907Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.155943Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":424}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.155966Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.156018Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.156039Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (43 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.156053Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(43)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.156084Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.156098Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.156125Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.156155Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.156169Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.156213Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.156233Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.156335Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.157627Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.157701Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.157784Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.159193Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.289365Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.936382Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.936442Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.936474Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.936493Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.936529Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.93655Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.936568Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.936584Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.936595Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":60}
-{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.936657Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:05.936671Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.121514Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.121719Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.12174Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.121762Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.121779Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.121806Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.121822Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.121833Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.121851Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.121862Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.121882Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.121902Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.121914Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.122093Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.122109Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.122492Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.122525Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.122551Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.122583Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(177))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.122601Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.122616Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 177","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.122628Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.12264Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":177}
-{"v":0,"name":"sugar","msg":"flushed 291 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.122745Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.122761Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.328033Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 616 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.32828Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.328322Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.32836Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":616}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.328385Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.328446Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.328486Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (234 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.328499Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(234)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.328539Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.328555Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.328591Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.328629Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.328643Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.328692Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.328712Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.329565Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.332098Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.332161Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.332225Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.333252Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:06.530547Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.146584Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.146642Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.146677Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.146697Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.146736Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.146758Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.146777Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.146793Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.146804Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":60}
-{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.146893Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.146907Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.351773Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.351883Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.351929Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.351962Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.35198Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.35201Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.352025Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.352778Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.352882Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.352897Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.35295Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.352969Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.35298Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.353004Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.353017Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.353109Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.353169Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.353184Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.35321Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(92))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.353226Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.35324Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 92","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.353251Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.353264Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":92,"self.len":113}
-{"v":0,"name":"sugar","msg":"flushed 205 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.35338Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.353393Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.35454Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.554771Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 572 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.554973Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555035Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":572}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555059Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555109Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555134Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (190 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555145Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(190)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555171Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555187Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555212Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555246Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555259Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555294Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555311Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555702Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555838Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555863Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555917Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(869))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555935Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555955Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 869","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.55597Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.555987Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":869}
-{"v":0,"name":"sugar","msg":"flushed 983 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.556138Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.556152Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.759193Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 507 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.75947Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.759492Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.759511Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":507}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.759528Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.759553Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.759569Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (125 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.760104Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(125)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.760129Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.760141Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.76016Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.760179Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.760191Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.760214Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.760228Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.760295Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.760386Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.760402Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.760425Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.760441Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.760455Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.760467Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.760478Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":160}
-{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.76054Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.760553Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967119Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 485 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967425Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.96745Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967473Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":485}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967493Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967522Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.96754Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (103 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967553Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(103)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967572Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967585Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967603Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967626Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967642Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967672Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967689Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967777Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.96788Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967898Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967927Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967954Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967974Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.967988Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.968003Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":137}
-{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.968435Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:07.968449Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.099236Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 483 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.099347Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.099366Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.099385Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":483}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.099402Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.099431Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.099446Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (101 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.099458Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(101)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.099963Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.09998Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.100003Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.100024Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.100036Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.10006Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.100075Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.100157Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.615418Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.615485Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.615532Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.615554Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.615584Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.615707Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.615756Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":160,"self.len":114}
-{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.61588Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.615892Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.749088Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 582 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.749208Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.74924Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.749275Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":582}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.749343Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.749391Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.749717Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (200 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.749756Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(200)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.749791Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.749813Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.749848Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.749888Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.749913Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.749951Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.749978Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.750082Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Candy machine initialized with sig: 4cUHSu9F47f16Zqw7N1Jdm8RptDeomFu4UbCKyRhQWmnfUE1EEm72scpNXsceT6xot7QwSv35iF79dqbtk2asPrK","level":30,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.750717Z","target":"sugar_cli::deploy::process","line":161,"file":"src/deploy/process.rs"}
-{"v":0,"name":"sugar","msg":"Candy machine created with address: 2AVdQdNsR1tgehsWoUXX98tBuiHupciJGq2mgGxpgdeC","level":30,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.750765Z","target":"sugar_cli::deploy::process","line":162,"file":"src/deploy/process.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.758141Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.75825Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.758374Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.766748Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:08.898601Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.498868Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.498928Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.498964Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.499014Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.499064Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(83))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.499088Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.499108Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 83","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.499125Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.499137Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":83}
-{"v":0,"name":"sugar","msg":"flushed 196 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.499215Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.499228Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.705321Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 423 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.70559Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.705624Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.70566Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":423}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.705687Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.705746Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.705776Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (42 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.705792Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(42)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.705831Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.705851Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.70588Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.705921Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.705937Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.705992Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.706019Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.706145Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.707703Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.707792Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.707964Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.710263Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:09.829846Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.246913Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.247049Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.247086Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.247106Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.247144Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.247169Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.247187Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.247203Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.247215Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":60}
-{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.248074Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.248199Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.36715Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.367435Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.367471Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.367515Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.367547Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.367608Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.367641Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.367662Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.367707Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.367736Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.367821Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.367871Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.367897Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.367955Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.36799Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.368139Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.368646Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.368697Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.370162Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(92))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.370205Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.370244Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 92","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.370273Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.370341Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":92}
-{"v":0,"name":"sugar","msg":"flushed 205 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.370521Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.370552Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.370605Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.488498Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 572 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.488587Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.488603Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.488619Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":572}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.488635Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.488659Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.488672Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (190 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.488688Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(190)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.488703Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.488712Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.488725Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.48874Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.48875Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.488769Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.48878Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.488855Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.489025Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.489041Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.48906Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(1457))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.489073Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.489086Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 1457","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.489096Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.489105Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":115,"buf.len":1457}
-{"v":0,"name":"sugar","msg":"flushed 1572 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.489229Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.489241Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.613994Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 506 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.614243Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.614267Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.6143Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":506}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.614325Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.614378Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.614475Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (124 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.614498Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(124)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.614697Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.614715Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.614743Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.614779Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.614792Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.61484Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.614863Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.614958Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.615173Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.615195Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.616243Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(159))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.616262Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.616278Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 159","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.616291Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.616302Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":159}
-{"v":0,"name":"sugar","msg":"flushed 273 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.616479Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.616494Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.73587Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 485 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.736101Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.736129Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.736166Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":485}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.736198Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.736258Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.736285Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (103 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.736302Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(103)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.736336Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.736355Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.736386Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.736428Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.736444Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.736497Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.736522Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.73664Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.736916Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.73694Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.736989Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.737011Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.737034Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.737052Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.73707Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":137,"self.len":114}
-{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.737193Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.73721Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.856382Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 483 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.856648Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.856681Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.856799Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":483}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.856919Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.856991Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.857024Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (101 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.857045Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(101)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.857091Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.857111Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.857149Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.857329Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.857354Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.857407Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.857433Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:10.857577Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.362087Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.362291Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.362396Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(159))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.363362Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.36341Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 159","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.363444Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.363465Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":159}
-{"v":0,"name":"sugar","msg":"flushed 273 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.365962Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.366076Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.489035Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 582 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.489262Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.489286Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.489323Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":582}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.48935Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.489404Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.490485Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (200 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.490526Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(200)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.490559Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.490574Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.490609Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.490642Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.490655Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.4907Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.491245Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Num of config line chunks: 1","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.498091Z","target":"sugar_cli::deploy::config_lines","line":104,"file":"src/deploy/config_lines.rs"}
-{"v":0,"name":"sugar","msg":"Uploading config lines in chunks...","level":30,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.498124Z","target":"sugar_cli::deploy::config_lines","line":105,"file":"src/deploy/config_lines.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.502584Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.502675Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.503007Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.505063Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:11.635739Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.093471Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.093635Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.093729Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.09378Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.093914Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.094206Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.09426Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.094288Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.094309Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":60}
-{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.09444Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.094458Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.226173Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.226335Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.226357Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.22638Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.2264Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.22644Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.226457Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.226467Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.226492Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.226503Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.226528Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.226549Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.226563Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.227416Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.227498Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.227612Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.227737Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.227756Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.227784Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(92))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.227801Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.227817Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 92","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.227829Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.22784Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":92,"self.len":113}
-{"v":0,"name":"sugar","msg":"flushed 205 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.228011Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.228024Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.228056Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.358455Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 572 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.358551Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.358566Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.358581Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":572}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.358595Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.358619Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.358632Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (190 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.35864Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(190)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.358656Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.358664Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.358677Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.358693Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.358702Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.358723Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.358734Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.3588Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.358984Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.358998Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.359017Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(1001))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.359029Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.35904Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 1001","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.359049Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.359058Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":1001,"self.len":115}
-{"v":0,"name":"sugar","msg":"flushed 1116 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.359191Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.359201Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.491492Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 507 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.491762Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.491795Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.491833Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":507}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.49186Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.491921Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.491949Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (125 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.491968Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(125)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.492006Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.492027Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.492057Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.492097Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.492113Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.493124Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.493146Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.494306Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.494338Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.494394Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.494416Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.494442Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.494461Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.494477Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":160,"self.len":114}
-{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.495053Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.495079Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.625849Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 485 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.626131Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.626173Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.626226Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":485}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.626267Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.626347Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.626385Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (103 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.626412Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(103)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.62646Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.62649Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.626532Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.626584Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.62661Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.626679Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.626716Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.627842Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.627901Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.627962Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.627993Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.628021Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.628044Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.628065Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":137,"self.len":114}
-{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.628396Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.628421Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.759037Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 483 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.7593Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.75933Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.759362Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":483}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.759386Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.759443Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.759469Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (101 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.759482Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(101)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.759521Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.759539Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.759566Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.759599Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.759612Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.759665Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.759688Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:12.759806Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.264821Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.264978Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.265095Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.265139Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.265175Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.265201Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.265219Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":160,"self.len":114}
-{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.265743Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.265765Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.396495Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 582 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.396775Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.396819Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.396873Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":582}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.396913Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.396984Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.397023Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (200 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.397047Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(200)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.397094Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.397122Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.397161Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.397209Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.397236Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.397306Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.397341Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.397537Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Cache exists, loading...","level":30,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.402053Z","target":"sugar_cli::cache","line":157,"file":"src/cache.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.41457Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.414654Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.416535Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.425608Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:13.556885Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.016186Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.016729Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.016776Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.016797Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.016835Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.016857Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.016875Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.016891Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.016903Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":60,"self.len":113}
-{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.017083Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.017104Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.147988Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.148081Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.148098Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.148117Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.148134Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.14816Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.148175Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.148187Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.148204Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.149167Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.149223Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.14926Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.149274Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.14933Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.149354Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.149826Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.149848Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.149902Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(177))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.149923Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.149945Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 177","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.149961Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.149976Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":177,"self.len":114}
-{"v":0,"name":"sugar","msg":"flushed 291 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.150145Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.15016Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.150193Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.281938Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 1269 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.282068Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.2821Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.282137Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1269}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.28217Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.282213Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.282242Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (887 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.282265Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(887)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.282295Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.282319Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.282349Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.282389Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.282415Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.2825Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.282544Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.285865Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.286023Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.286215Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.293717Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.41587Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.849374Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.849425Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.849459Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.849478Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.849517Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.849574Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.849596Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.849612Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.849624Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":60}
-{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.8497Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.849714Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.968147Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.968261Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.968279Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.968301Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.969649Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.969707Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.969733Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.969747Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.969778Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.969793Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.969817Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.969853Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.969866Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.969917Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.96994Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.970053Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.970279Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.970302Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.970344Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(177))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.970365Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.970385Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 177","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.9704Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.970415Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":177}
-{"v":0,"name":"sugar","msg":"flushed 291 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.970519Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.970532Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:14.971806Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:15.091617Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 720 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:15.091874Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:15.091901Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:15.09194Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":720}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:15.091969Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:15.09203Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:15.092063Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (338 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:15.092082Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(338)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:15.092121Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:15.09214Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:15.092179Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:15.092235Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:15.092255Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:15.092306Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:15.092331Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:15.092467Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.117431Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.117503Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.117579Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.12319Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.245155Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.670655Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.670802Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.670881Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.670916Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.671007Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(64))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.671053Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.67109Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 64","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.671607Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.671628Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":64}
-{"v":0,"name":"sugar","msg":"flushed 177 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.671705Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.671719Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.790811Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 462 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.791633Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.791678Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.791759Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":462}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.791786Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.791842Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.791865Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (81 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.791879Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(81)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.79191Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.791926Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.791951Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.791983Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.791996Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.792333Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.79236Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":41185,"time":"2022-09-22T01:21:16.792484Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-ers/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:25.942356Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":160}
-{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:25.942483Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:25.942501Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248225Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 485 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248445Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248465Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248486Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":485}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248504Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248551Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248614Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (103 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248629Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(103)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248649Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248662Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248683Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248717Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248729Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248761Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248776Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248837Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248932Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248949Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248973Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.248991Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.249006Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.249018Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.249029Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":137}
-{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.249125Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.249141Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.555693Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 483 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.555934Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.555965Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.557078Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":483}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.557134Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.557215Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.557256Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (101 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.557281Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(101)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.55733Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.557359Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.557411Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.557467Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.557495Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.557558Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.557594Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:26.55774Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.06027Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.060399Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.060529Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.060677Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.060737Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.060788Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.060827Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":160,"self.len":114}
-{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.061402Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.061475Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.374489Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 582 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.375353Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.375418Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.375483Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":582}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.37554Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.37563Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.375684Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (200 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.375718Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(200)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.375779Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.375821Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.376092Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.376157Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.376198Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.376273Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.376316Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Cache exists, loading...","level":30,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.3803Z","target":"sugar_cli::cache","line":157,"file":"src/cache.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.382212Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.38227Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.382355Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to 147.75.42.217:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.384377Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to 147.75.42.217:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:27.612078Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.603555Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.603758Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.603843Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.603883Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.60398Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.604038Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.604077Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.604115Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.604166Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":60}
-{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.6043Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.604339Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.910476Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.912947Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.912984Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.913031Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.913064Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.913131Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.913159Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.913178Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.913222Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.913243Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.913276Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.913323Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.913341Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.913395Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.913423Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.915163Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.915317Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.91534Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.915388Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(177))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.915411Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.915468Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 177","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.915488Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.915504Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":177}
-{"v":0,"name":"sugar","msg":"flushed 291 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.915692Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:28.915712Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.217169Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 1273 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.217237Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.217247Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.217258Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1273}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.217267Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.217282Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.21729Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (891 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.217296Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(891)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.217307Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.217313Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.217323Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.217343Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.217348Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.21736Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.217367Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.217409Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.217982Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.21801Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.218055Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to 147.75.42.217:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.219393Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to 147.75.42.217:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:29.439539Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.236626Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.236837Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.23694Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.236982Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.237076Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.23712Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.23716Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.237192Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.237213Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":60,"self.len":113}
-{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.237347Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.23737Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465269Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465341Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465361Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465382Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465402Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465428Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465445Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465457Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465475Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465488Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465515Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465534Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465547Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465572Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465588Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465685Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465741Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465764Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465789Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(177))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.46581Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465828Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 177","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465844Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.465857Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":177,"self.len":114}
-{"v":0,"name":"sugar","msg":"flushed 291 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.466008Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.466026Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.466058Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.757275Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 720 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.75755Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.757593Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.757632Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":720}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.757667Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.757727Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.757757Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (338 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.757774Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(338)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.757811Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.757832Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.75786Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.7579Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.757918Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.757971Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:30.757998Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:31.78024Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:31.780396Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:31.780568Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
-{"v":0,"name":"sugar","msg":"connecting to 147.75.42.217:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:31.781634Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"connected to 147.75.42.217:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.01074Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
-{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.755675Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
-{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.757426Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.757546Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.757615Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.757739Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(64))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.757812Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.757872Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"sized write, len = 64","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.757922Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
-{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.75796Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":64}
-{"v":0,"name":"sugar","msg":"flushed 177 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.758144Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.758182Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.986455Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"received 462 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.986825Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.986886Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.986955Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":462}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.987524Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.987618Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
-{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.987665Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
-{"v":0,"name":"sugar","msg":"incoming body is content-length (81 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.9877Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"decode; state=Length(81)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.987758Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
-{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.987928Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.988051Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.9881Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.988125Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
-{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.988392Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
-{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":36771,"time":"2022-09-21T23:03:32.988429Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Lend me some sugar, I am your neighbor.","level":30,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.039522Z","target":"sugar","line":116,"file":"src/main.rs"}
+{"v":0,"name":"sugar","msg":"Validation complete, your metadata file(s) look good.","level":30,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.063181Z","target":"sugar_cli::validate::process","line":151,"file":"src/validate/process.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.171601Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.172142Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.172184Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.209384Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.340365Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.803195Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.803323Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.803565Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.803593Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.803654Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(64))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.803722Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.803744Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 64","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.803763Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.803776Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":64,"self.len":113}
+{"v":0,"name":"sugar","msg":"flushed 177 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.803921Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.803938Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.934289Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 462 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.93434Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.934349Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.934359Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":462}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.934394Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.934409Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.934417Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (81 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.934423Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(81)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.934433Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.934438Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.934447Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.934457Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.934463Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.934476Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.934484Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.935593Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.935609Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.93597Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.935988Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:20.936036Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.036983Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.062759Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.155209Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.155244Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.15528Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.155287Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.155331Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.155347Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.155356Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 64 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.155448Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.155459Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.295233Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.295374Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.29541Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.295452Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(591)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.295477Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.295515Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 10 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.295533Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (892 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.295544Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(892)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.295581Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(114)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.295606Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(114)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.295783Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 114 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.29583Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.295845Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.295867Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.295892Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.29591Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.295929Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.295946Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.295978Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.297159Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.297554Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"pool closed, canceling idle interval","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.297576Z","target":"hyper::client::pool","line":758,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.29758Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.297645Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.297669Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.29783Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Total upload size: 21703821","level":30,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.321647Z","target":"sugar_cli::upload::methods::bundlr","line":271,"file":"src/upload/methods/bundlr.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.321705Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.321734Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.321762Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.323466Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.348186Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.434092Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.434124Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.43415Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.434163Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.434186Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.434196Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.434202Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 81 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.434269Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.434274Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.670523Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 594 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.67078Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.670827Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.670927Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":594}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(587)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.670962Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.671027Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 10 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.671056Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (7 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.671074Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(7)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.671129Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.671153Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.671184Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.671228Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.671246Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.67127Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.671311Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.672568Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.673168Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Getting balance for address: AEaGniN8a3nPrHN7ipZXLpN2HvQ9ktmZkDM3uks1iquz","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.673219Z","target":"sugar_cli::upload::methods::bundlr","line":150,"file":"src/upload/methods/bundlr.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.673349Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.673378Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.673445Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.673475Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.673509Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.673793Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.673815Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.812604Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 613 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.812867Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.812895Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.81293Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":613}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(594)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.812961Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.813016Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 10 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.813041Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (19 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.813057Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(19)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.813107Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.813124Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.813212Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.813258Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.813274Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.813302Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.813323Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Bundlr balance 21949 lamports, require 2396120 lamports","level":30,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.813396Z","target":"sugar_cli::upload::methods::bundlr","line":281,"file":"src/upload/methods/bundlr.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.813619Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.814396Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.814484Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.814615Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.817197Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:21.936427Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.355931Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.35607Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.356182Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.356214Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.356489Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.356537Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.356571Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.3566Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.356613Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":60,"self.len":113}
+{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.35689Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.356905Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.475253Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.475479Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.475522Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.475572Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.475614Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.47569Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.475727Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.475751Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.4758Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.475828Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.475871Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.475929Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.475954Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.476019Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.476057Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.476663Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.476814Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.476851Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.476936Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(92))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.47697Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.477004Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 92","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.477033Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.477061Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":92,"self.len":113}
+{"v":0,"name":"sugar","msg":"flushed 205 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.477294Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.477324Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.477476Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.594703Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 571 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.594887Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.594922Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.594958Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":571}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.594991Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.595036Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.595065Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (189 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.595088Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(189)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.595119Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.59514Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.595174Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.595209Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.595234Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.595272Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.595298Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.595434Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.596353Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.596397Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.596442Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(449))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.596476Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.596505Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 449","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.59653Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.596552Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":449}
+{"v":0,"name":"sugar","msg":"flushed 563 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.596838Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.596868Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.716778Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 507 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.717063Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.717107Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.717158Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":507}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.717197Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.717281Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.71732Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (125 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.717347Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(125)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.717391Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.717419Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.717461Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.717515Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.717541Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.717604Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.717637Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.717781Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.719095Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.719147Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.719212Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.719249Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.719285Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.719314Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.71934Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":160}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.719681Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.719725Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.838391Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 484 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.838533Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.838558Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.838582Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":484}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.838605Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.838646Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.838663Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (102 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.838677Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(102)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.838704Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.838717Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.838737Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.838765Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.83878Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.838815Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.838832Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.838926Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.839084Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.839107Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.839138Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.839157Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.839176Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.839191Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.839203Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":137}
+{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.839384Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.8394Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.957398Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 482 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.95746Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.957473Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.957486Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":482}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.957498Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.957517Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.95753Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (100 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.957538Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(100)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.95755Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.957558Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.95757Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.957584Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.957593Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.957609Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.957618Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:22.957673Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.459316Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.459397Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.459464Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.45949Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.459523Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.459543Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.459557Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":160,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.459841Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.459874Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.57948Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 581 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.579701Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.579724Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.579748Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":581}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.579766Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.579797Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.579812Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (199 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.579824Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(199)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.579846Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.579858Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.579876Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.579897Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.579908Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.579936Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.580031Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.580623Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.580698Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.580717Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.580749Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.58077Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.580792Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.580807Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.580819Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":160}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.580954Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.580971Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.698763Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 581 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.698868Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.698884Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.698912Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":581}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.698945Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.698972Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.69899Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (199 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.699007Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(199)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.699025Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.699043Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.69906Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.69908Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.699091Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.699118Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.699131Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.699185Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.699371Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.699392Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.699449Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(100))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.699468Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.699484Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 100","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.699497Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.699511Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":136,"buf.len":100}
+{"v":0,"name":"sugar","msg":"flushed 236 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.699613Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.699628Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.936422Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 604 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.936734Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.936776Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.936825Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":604}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(586)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.936864Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.936932Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 10 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.936971Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.936997Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.93707Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.937098Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.937139Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.937196Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.937223Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.937457Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.937491Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.938424Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Getting balance for address: AEaGniN8a3nPrHN7ipZXLpN2HvQ9ktmZkDM3uks1iquz","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.938709Z","target":"sugar_cli::upload::methods::bundlr","line":150,"file":"src/upload/methods/bundlr.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.938882Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.938907Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.939024Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.939051Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.939074Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.939504Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:23.939523Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.076019Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 613 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.076114Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.076131Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.07615Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":613}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(592)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.07617Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.076202Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 10 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.076218Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (21 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.07623Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(21)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.076263Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.076276Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.076299Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.07632Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.076335Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.076354Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.07637Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.076518Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.076594Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.076613Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.076633Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"pool closed, canceling idle interval","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.076566Z","target":"hyper::client::pool","line":758,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.076823Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.078694Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.078756Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.078815Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.080022Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.080071Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.080534Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.080567Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.080643Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.080674Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.080856Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.080896Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.081216Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.081252Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.081665Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.081726Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.081759Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.081835Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.082396Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.082549Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.082573Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.082787Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.083509Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.083549Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.083665Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.083721Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.083815Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.083855Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.083905Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.083929Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.083943Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.083983Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.084111Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.084147Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.08426Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.084284Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.084389Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.084416Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.084565Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.084598Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.084718Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.084824Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.08485Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.084854Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.085135Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.0852Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.085249Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.085285Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.085332Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.085432Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.085469Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.085476Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.085567Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.085594Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.086149Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.086163Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.08678Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.086798Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.087163Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.087191Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.087284Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.087303Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.087579Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.087606Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.087991Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.088004Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.088174Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.08544Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.088221Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.085598Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.088253Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.088275Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.088298Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.088475Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.088527Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.088544Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.088555Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.08867Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.089162Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.089179Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.089203Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.089208Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.08918Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.089268Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.090039Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.090055Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.090422Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.090452Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.090484Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.090523Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.090557Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.090617Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.090637Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.090699Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.090789Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.090804Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.090858Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.091014Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.091032Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.091083Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.092234Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.092256Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.092263Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.092321Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.092329Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.092347Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.092376Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.092399Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.092377Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.092466Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.092581Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.09261Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.092788Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.092803Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.092886Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.093114Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.093133Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.093227Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.093236Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.093255Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.093298Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.093802Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.093824Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.093838Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.09384Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.093889Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.093927Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.094352Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.094519Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.094534Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.094584Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.094645Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"devnet.bundlr.network\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.094657Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.094695Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.094993Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.095018Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"devnet.bundlr.network\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.095072Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.096301Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.09964Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.103261Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.10509Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.105558Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.107761Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.107821Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.108164Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.109363Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.110646Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.110666Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.110689Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.111138Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.11116Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.111189Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.111788Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.11188Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.111935Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.112627Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.11268Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.112704Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.113197Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.113219Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.113908Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.113916Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.114191Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.114245Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.114257Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.114266Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.114668Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.11494Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.115294Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.115348Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.115358Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.115388Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.115433Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.115475Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.115528Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.115531Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.115566Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.11557Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.115569Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.115588Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.115658Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.118003Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.121228Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.124774Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.127997Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.130618Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.131338Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.133817Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.133886Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.134175Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.135233Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.135296Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.136617Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.136709Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.137159Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.13726Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.137276Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.13731Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.137324Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.137341Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.137325Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.13739Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.138233Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.138288Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.14403Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.144153Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.144227Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.144247Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.144277Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.144286Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.144345Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.144462Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.144571Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.144585Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.144611Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.144655Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.144766Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.144851Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.144918Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.144932Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.144955Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.145073Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.145144Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.145192Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.145242Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to [2606:4700:20::ac43:489d]:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.145293Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.218141Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.218165Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.218179Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.218189Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.218205Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(67152))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.218213Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.218223Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 67152","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.218229Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.218234Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":67152,"self.len":133}
+{"v":0,"name":"sugar","msg":"flushed 67285 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.218302Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.218308Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.221892Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.221903Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.221912Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.221921Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.22193Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(489496))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.221937Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.221945Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 489496","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.22195Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.221953Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":489496}
+{"v":0,"name":"sugar","msg":"flushed 489630 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.2221Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.222106Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.22211Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.222128Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.222133Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.222139Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.222146Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.222152Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(208379))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.222158Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.222162Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 208379","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.222166Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.22217Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":208379}
+{"v":0,"name":"sugar","msg":"flushed 208513 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.222238Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.222242Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.223259Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.223265Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.223276Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.223281Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.223287Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(380649))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.223293Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.223297Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 380649","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.223301Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.223305Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":380649,"self.len":134}
+{"v":0,"name":"sugar","msg":"flushed 380783 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.223443Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.223448Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226093Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226099Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226106Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226114Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.22612Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(204139))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226125Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226129Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 204139","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226133Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226137Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":204139}
+{"v":0,"name":"sugar","msg":"flushed 204273 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226234Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226238Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226256Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.22626Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226267Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226272Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226277Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(63742))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226282Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226286Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 63742","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.22629Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226294Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":133,"buf.len":63742}
+{"v":0,"name":"sugar","msg":"flushed 63875 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.226346Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.22635Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.227193Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.227198Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.227207Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.227212Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.227217Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(294839))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.227222Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.227226Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 294839","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.22723Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.227233Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":294839}
+{"v":0,"name":"sugar","msg":"flushed 294973 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.227334Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.227338Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.230518Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.230524Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.230531Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.230536Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.230544Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(373183))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.230549Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.230553Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 373183","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.230557Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.23056Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":373183,"self.len":134}
+{"v":0,"name":"sugar","msg":"flushed 373317 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.23071Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.230715Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233118Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233124Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233133Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233139Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233144Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(332793))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.23315Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233154Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 332793","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233158Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233162Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":332793}
+{"v":0,"name":"sugar","msg":"flushed 332927 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.23332Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233325Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233345Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233349Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233358Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.23336Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233363Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233367Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233373Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(287993))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233379Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.23338Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233383Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233389Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 287993","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233392Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233399Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":287993,"self.len":134}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233399Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(529677))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.23341Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233414Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 529677","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233419Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233423Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":529677,"self.len":134}
+{"v":0,"name":"sugar","msg":"flushed 288127 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233518Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233523Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed 529811 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233644Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233649Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.233653Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.234637Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.234642Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.23465Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.234655Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.234664Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(417042))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.23467Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.234675Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 417042","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.234679Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.234682Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":417042}
+{"v":0,"name":"sugar","msg":"flushed 417176 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.234861Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.234866Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235227Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235232Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235241Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235248Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235254Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(210334))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.23526Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235264Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 210334","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235268Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235272Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":210334}
+{"v":0,"name":"sugar","msg":"flushed 210468 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235361Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235366Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235382Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235386Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235394Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235399Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235405Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(400099))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.23541Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235415Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 400099","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235419Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235423Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":400099}
+{"v":0,"name":"sugar","msg":"flushed 400233 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235632Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235636Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235651Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235656Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235663Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235668Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235673Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(682004))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235678Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235682Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 682004","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235686Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.23569Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":682004,"self.len":134}
+{"v":0,"name":"sugar","msg":"flushed 682138 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235907Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235912Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.235916Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.239362Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.23937Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.239381Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.239386Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.239392Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(358453))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.239398Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.239403Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 358453","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.239407Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.23941Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":358453}
+{"v":0,"name":"sugar","msg":"flushed 358587 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.23961Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.239615Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.243426Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.243432Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.24344Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.243446Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.243452Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(509548))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.243457Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.243461Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 509548","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.243465Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.243469Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":509548}
+{"v":0,"name":"sugar","msg":"flushed 509682 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.243686Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.243691Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.243695Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.245094Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.245102Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.245114Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.245121Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.245131Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(618199))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.245138Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.245144Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 618199","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.245149Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.245153Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":618199}
+{"v":0,"name":"sugar","msg":"flushed 618333 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.245431Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.245437Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.245443Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246773Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246781Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246791Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246796Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246805Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(75380))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246811Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246816Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 75380","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246821Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246824Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":133,"buf.len":75380}
+{"v":0,"name":"sugar","msg":"flushed 75513 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246898Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246903Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246922Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246926Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246934Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246942Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246948Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(362797))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246954Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246958Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 362797","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246963Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.246967Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":362797}
+{"v":0,"name":"sugar","msg":"flushed 362931 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.247134Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.247139Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.252623Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.252631Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.252641Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.252647Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.252657Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(539471))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.252663Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.252668Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 539471","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.252673Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.252677Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":539471}
+{"v":0,"name":"sugar","msg":"flushed 539605 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.252914Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.25292Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.252924Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254258Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254264Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254276Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254282Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254288Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(233650))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254293Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254298Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 233650","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254302Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254306Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":233650,"self.len":134}
+{"v":0,"name":"sugar","msg":"flushed 233784 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254413Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254418Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254442Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254447Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254467Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254457Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254479Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254536Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254468Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254544Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(71832))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254583Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254574Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254588Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254602Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 71832","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254609Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254613Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254613Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":71832,"self.len":133}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254625Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(333764))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254635Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254643Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 333764","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254647Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254651Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":333764,"self.len":134}
+{"v":0,"name":"sugar","msg":"flushed 71965 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254691Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254696Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed 333898 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254809Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.254814Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.258516Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.25853Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.262839Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.262855Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.262893Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.262903Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.262964Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.262978Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.26511Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.265124Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.26939Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.269402Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.269441Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.269451Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.269936Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.269943Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.269953Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.269959Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.269969Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(445959))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.269976Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.269981Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 445959","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.269987Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.269993Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":445959}
+{"v":0,"name":"sugar","msg":"flushed 446093 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.270207Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.270217Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.270222Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.270244Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.270246Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.270249Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.270261Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.270266Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.270276Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.270283Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(357996))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.27029Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.270295Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 357996","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.270299Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.270304Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":357996,"self.len":134}
+{"v":0,"name":"sugar","msg":"flushed 358130 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.270495Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.270501Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.272414Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.272425Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.274878Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.274888Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.279547Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.27956Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.281142Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.281151Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.281897Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.281906Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.283561Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.28357Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.286165Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.286171Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.286181Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.286187Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.286194Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(589404))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.286201Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.286206Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 589404","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.286211Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.286215Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":589404}
+{"v":0,"name":"sugar","msg":"flushed 589538 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.286491Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.286497Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.286502Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.286508Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.286518Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.287887Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.2879Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.288869Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.288882Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291431Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291438Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291447Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291453Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.29146Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(342166))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291466Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291471Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 342166","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291476Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291481Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":342166}
+{"v":0,"name":"sugar","msg":"flushed 342300 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291683Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291689Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291712Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291718Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291728Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291732Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291734Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291741Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291748Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(617276))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291756Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291757Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291762Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.29177Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291783Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(467221))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291791Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 617276","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291774Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291797Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 467221","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291841Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291835Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":617276}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.291846Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":467221}
+{"v":0,"name":"sugar","msg":"flushed 467355 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.292227Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.292235Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.29224Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed 617410 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.292267Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.292274Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.292279Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.292316Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.292323Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.292334Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.292341Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.292351Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(575485))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.292358Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.292365Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 575485","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.29237Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.292375Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":575485,"self.len":134}
+{"v":0,"name":"sugar","msg":"flushed 575619 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.292668Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.292674Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.292679Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.293918Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.293935Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.293997Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.294009Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.296439Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.29645Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.297851Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.29787Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.297926Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.297936Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.298323Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.298333Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.298807Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.298819Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.301595Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.301607Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.303216Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.303229Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.304684Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.304697Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308372Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308379Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.30839Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308399Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308406Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(88389))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308415Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.30842Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 88389","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308426Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.30843Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":133,"buf.len":88389}
+{"v":0,"name":"sugar","msg":"flushed 88522 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308546Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308553Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308576Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308582Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308575Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308592Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308602Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308609Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.30861Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(263631))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308623Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308628Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 263631","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308633Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308637Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":263631}
+{"v":0,"name":"sugar","msg":"flushed 263765 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308811Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.308817Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.309822Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.309833Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.313954Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.313962Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.313974Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.313981Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.313991Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(1644576))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.313999Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.314006Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 1644576","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.314013Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.314018Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":135,"buf.len":1644576}
+{"v":0,"name":"sugar","msg":"flushed 1644711 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.314938Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.314945Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.314951Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.314958Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.31497Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.315691Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.315706Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.319126Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.319139Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.320978Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.320995Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.321756Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.321774Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.322614Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.32263Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.324715Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.32474Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.325271Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.325283Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.32581Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.325822Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.329531Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.329547Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.329658Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.329667Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.329677Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.329684Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.329692Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(184140))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.3297Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.329705Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 184140","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.329711Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.329715Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":184140}
+{"v":0,"name":"sugar","msg":"flushed 184274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.329882Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.329888Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.331653Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.331666Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.331705Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.331717Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.331768Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.331775Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.331785Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.331792Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.3318Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(350563))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.331807Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.331813Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 350563","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.331818Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.331822Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":350563}
+{"v":0,"name":"sugar","msg":"flushed 350697 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.332101Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.332107Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.333408Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.333427Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.341033Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.341047Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.342756Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.342763Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.342775Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.342781Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.34279Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(435836))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.342797Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.342804Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 435836","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.34281Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.342815Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":435836,"self.len":134}
+{"v":0,"name":"sugar","msg":"flushed 435970 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.343093Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.343101Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.343106Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.343114Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.343123Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.34516Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.345174Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.346678Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.346691Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.358405Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.35842Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.358472Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.358484Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.365108Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.365195Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.368988Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.369004Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.377849Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.377884Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.380347Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.380377Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.384792Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.384827Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.391301Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.391355Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.398104Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.398126Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.399739Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.399758Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.402611Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.402645Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.415674Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.415706Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.437847Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.437872Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.440802Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.440827Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.442422Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.442444Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.443796Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.443824Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.455758Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.455794Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.456629Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.456666Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.459778Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.459836Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.460653Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.460699Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.470272Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.470665Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.48704Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.4871Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.489026Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.489085Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.501156Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.501204Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.501242Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.50126Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.501294Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(589678))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.501314Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.50133Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 589678","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.501343Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.501351Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":589678}
+{"v":0,"name":"sugar","msg":"flushed 589812 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.502077Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.502094Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.502102Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.502117Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.502146Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.506892Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.506922Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.506978Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.506987Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.507008Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.507019Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.507034Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(420981))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.507045Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.507055Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 420981","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.507086Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.507094Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":420981}
+{"v":0,"name":"sugar","msg":"flushed 421115 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.507586Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.507597Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.507606Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.508389Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.508415Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.509242Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.509266Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.50929Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.509314Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.509352Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(681791))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.509385Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.509403Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 681791","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.50942Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.509441Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":681791}
+{"v":0,"name":"sugar","msg":"flushed 681925 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.510075Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.51009Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.5101Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.51015Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.510167Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.510188Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.510207Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.510228Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(496775))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.510245Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.510254Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 496775","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.510263Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.510271Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":496775}
+{"v":0,"name":"sugar","msg":"flushed 496909 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.510724Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.510736Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.510744Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.512208Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.512231Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.513242Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.51327Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.513863Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.513882Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.513907Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.513919Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.513939Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(380951))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.513956Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.51397Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 380951","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.51398Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.513989Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":380951,"self.len":134}
+{"v":0,"name":"sugar","msg":"flushed 381085 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.514482Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.5145Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.516807Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.516841Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.517669Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.517696Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.519095Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.519108Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.51913Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.519174Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.519207Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(549827))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.519222Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.519237Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 549827","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.519248Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.519259Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":549827,"self.len":134}
+{"v":0,"name":"sugar","msg":"flushed 549961 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.519769Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.51978Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.519789Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.525613Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.525643Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.526556Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.526579Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.527228Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.527242Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.527263Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.527276Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.527295Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(108997))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.527308Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.527325Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 108997","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.527335Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.527343Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":108997}
+{"v":0,"name":"sugar","msg":"flushed 109131 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.527567Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.527578Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.528096Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.528118Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.532748Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.53281Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.544705Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.544748Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.5466Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.546623Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.54965Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.54968Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.549864Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.549887Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.551928Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.551965Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.568154Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.568325Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.569973Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.570055Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.570517Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.570574Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.572098Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.572186Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.575431Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.575511Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.576599Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.576658Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.578714Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.578814Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.580938Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.581024Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.586585Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.586715Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.590385Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.590503Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.593662Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.593726Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.597412Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.597581Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.601243Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.601296Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.603927Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.604044Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.607128Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.607191Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.611499Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.61205Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.614468Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.614551Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.616178Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.616287Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.627288Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.627496Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.627843Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.627902Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.628652Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.628725Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.63066Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.63075Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.635165Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.635246Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.653297Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.653465Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.654714Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.654755Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.655745Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.655791Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.656413Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.656469Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.657496Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.657545Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.65843Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.658501Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.661774Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.661936Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.662527Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.662583Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.665432Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.665596Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.667029Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.667066Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.679509Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.679679Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.681462Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.681556Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.683219Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.683254Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.685641Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.685715Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.698794Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.699015Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.70777Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.707958Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.714791Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.714982Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.725748Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.725933Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.734083Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.734215Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.7362Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.736305Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.736324Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.736349Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.738437Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.738481Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.740996Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.74108Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.741106Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.741393Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.744065Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.744225Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.744251Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.744307Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.744329Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.744368Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.750085Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.750283Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.756605Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.756782Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.763397Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.763505Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.763554Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.763588Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.763656Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(190338))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.763691Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.763734Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 190338","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.76376Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.763777Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":190338,"self.len":134}
+{"v":0,"name":"sugar","msg":"flushed 190472 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.764179Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.764199Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.769913Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.770065Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.770141Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.770157Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.770173Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.770196Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.770142Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.770216Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.771266Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.77133Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.772065Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.772099Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.772964Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.772996Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.778512Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.77865Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.781567Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.781649Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.781801Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.781841Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.785698Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.785846Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.786687Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.786725Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.788859Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.788901Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.794361Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.794501Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.795019Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.795051Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.797934Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.798003Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.798779Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.798825Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.800385Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.800487Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.81159Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.811741Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.814349Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.814474Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.815826Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.817194Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.825063Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.825227Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.826418Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.826487Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.828716Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.828769Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.831015Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.831056Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.832682Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.832771Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.84504Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.845207Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.84972Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.849872Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.853723Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.853854Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.854573Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.85464Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.858527Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.858687Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.861085Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.861168Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.873364Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.873501Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.875786Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.875881Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.87744Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.877516Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.882297Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.882486Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.884768Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.884855Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.88721Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.887313Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.887862Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.887924Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.890501Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.890672Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.893931Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.89414Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.907293Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.907457Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.914043Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.914214Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.914726Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.914761Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.916772Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.916842Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.917654Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.917734Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.91938Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.919506Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.92005Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.920124Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.925189Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.925344Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.925902Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.925934Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.955798Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.956036Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.956595Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.956673Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.961451Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.961732Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.962604Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.962659Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.965196Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.965266Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.965824Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.965894Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.966919Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.966959Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.979805Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.980004Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.984431Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.984562Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.986374Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.986514Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.991057Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.991134Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.994278Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.994391Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.99635Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.996476Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.999689Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:24.99976Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.001388Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.001438Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.00307Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.003209Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.007401Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.007558Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.007648Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.00775Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.010366Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.010492Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.012603Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.012746Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.020566Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.020768Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.021349Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.021416Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.022689Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.022749Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.024959Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.025021Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.029022Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.029226Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.031033Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.031181Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.032275Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.032336Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.036762Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.036949Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.038656Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.038775Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.038968Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.039019Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.041718Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.041838Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.043Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.043135Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.045196Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.045364Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.048323Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.04848Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.050515Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.050597Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.05347Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.053661Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.056951Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.057149Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.062744Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.062918Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.070027Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.07024Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.073242Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.073295Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.079147Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.0794Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.079425Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.079461Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.085391Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.085577Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.088573Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.088843Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089246Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089296Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089316Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089371Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089392Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089418Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.08944Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089487Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089507Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089521Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089549Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089568Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089754Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089785Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089799Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089798Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089814Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089884Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089903Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089834Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089971Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.089986Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.09001Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.090026Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.090111Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.090152Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.092319Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.092388Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.093241Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.093283Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.110833Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.110928Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.113135Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.113161Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.114315Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.114339Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.118834Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.118859Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.12076Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.120794Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.122827Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.122852Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.123402Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.123423Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.125785Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.12581Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.126835Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.126856Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.133044Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.133078Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.135321Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.135362Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.137875Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.137903Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.138126Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.138154Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.139324Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.139355Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.144117Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.144147Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.145836Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.145887Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.147794Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.147836Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.159421Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.159474Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.160751Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.160792Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.166735Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.166777Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.16801Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.168024Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.174583Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.174625Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.175895Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.175926Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.17594Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.176019Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.178175Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.178228Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.181722Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.181762Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.182906Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.182926Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.196423Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.196479Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.198804Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.198839Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.206958Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.207002Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.218513Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.218562Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.221327Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.221365Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.222315Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.222352Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.223959Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.223985Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.224607Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.22462Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.22831Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.228364Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.228373Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.228385Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.234413Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.234451Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.234483Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.234537Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.237179Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.237205Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.237406Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.237418Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.238469Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.23848Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.239448Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.239463Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.241773Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.241785Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.243852Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.243869Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.247036Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.247073Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.255916Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.256018Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.261543Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.261595Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.264102Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.264119Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.264802Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.264826Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.268878Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.268911Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.270833Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.270855Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.272245Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.272263Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.276957Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.276991Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.278342Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.278364Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.281235Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.281277Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.282995Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.283025Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.290114Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.290152Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.297322Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.297375Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.302452Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.30248Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.303795Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.303807Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.30464Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.304706Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.305876Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.305894Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.312397Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.312442Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.314482Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.314495Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.319921Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.319935Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.320139Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.320151Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.320171Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.320187Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.322116Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.32213Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.323822Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.323836Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.326537Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.326555Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.326639Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.32665Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.329077Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.329118Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.332142Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.332192Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.332713Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.332724Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.333963Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.333974Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.335921Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.335934Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.336014Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.336025Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.337308Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.337318Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.341591Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.341606Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.350176Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.350211Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.353075Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.353089Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.356291Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.35649Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.358726Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.358745Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.361066Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.361097Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.362741Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.362764Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.372368Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.37238Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.372388Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.372398Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.373219Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.373241Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.37438Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.374402Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.382162Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.38222Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.385712Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.385736Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.389238Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.389258Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.390461Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.390476Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.402014Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.402057Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.402067Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.40208Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(684)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.402091Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.402107Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.402116Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.402122Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.402132Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(801)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.402141Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(801)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.40217Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 801 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.402184Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.402189Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.402198Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.402209Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.402215Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.402225Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.402233Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.402256Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.41393Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.413979Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.415805Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.415822Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.417366Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.41738Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.421161Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.421176Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.424364Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.424384Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.426645Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.426662Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.430117Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.43022Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.431894Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.431973Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.439388Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.439429Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.457033Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.457081Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.457819Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.457838Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.471948Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.472033Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.477Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.477173Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.480414Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.480509Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.487344Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.487402Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.487421Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.487442Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.497403Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.497913Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.499002Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.49911Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.502665Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.502708Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.507103Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.507244Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.509285Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.50933Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.511774Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.512145Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.516265Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.516423Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.518593Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.518615Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.518678Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.518694Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.524915Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.524976Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.526149Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.526178Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.528231Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.52846Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.529417Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.529441Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.529593Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.52962Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.532563Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.532742Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.53577Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.536026Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.549332Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.549428Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.553556Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.553613Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.555278Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.555325Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.556065Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.556099Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.557035Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.557065Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.557861Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.557887Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.566816Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.566941Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.567329Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.567362Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.571103Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.571303Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.579514Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.579883Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.581614Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.581752Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.597752Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.598085Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.598321Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.598456Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.598652Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.598684Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.604199Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.604427Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.606634Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.60668Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.61086Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.61093Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.614009Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.614059Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.615062Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.615119Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.618483Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.618523Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.623099Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.623304Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.631136Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.631323Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.635087Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.635274Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.637888Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.637989Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.639491Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.63953Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.645551Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.645661Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.64731Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.647338Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.647976Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.647988Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.65036Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.650386Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.652417Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.652565Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.65461Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.654658Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.657746Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.657833Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.660528Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.660623Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.661399Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.661463Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.662559Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.662665Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.664272Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.664342Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.666495Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.666673Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.668137Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.668226Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.671538Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.671603Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.673245Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.673374Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.675897Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.675974Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.679695Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.679981Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.680129Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.680245Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.680802Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.680847Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.684739Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.684769Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.685085Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.685107Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.688153Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.688316Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.690141Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.690176Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.691318Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.69136Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.692059Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.692133Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.696522Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.696624Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.702958Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.703045Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.711245Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.711966Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.712083Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.712133Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.714604Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.714704Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.714722Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.714754Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.716452Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.716522Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.723013Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.723162Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.724264Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.724328Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.726043Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.726187Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.726205Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.726238Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.729213Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.72934Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.733146Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.733207Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.733994Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.73402Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.737334Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.737366Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.737506Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.737552Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.741831Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.741998Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.742534Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.742579Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.746107Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.746383Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.764501Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.764641Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.764655Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.764679Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.766777Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.766824Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.781677Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.781779Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.781795Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.781812Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.783917Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.783942Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.785883Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.785937Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.788066Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.788094Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.789783Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.789882Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.796288Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.796616Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.798896Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.798956Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.80102Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.801081Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.804495Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.804549Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.805042Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.805065Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.805076Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.805093Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.808667Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.808691Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.810199Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.810385Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.812586Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.812687Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.813407Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.813464Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.816691Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.816841Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.816864Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.816985Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.819078Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.819108Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.821332Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.821369Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.822542Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.822561Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.825938Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.826229Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.82682Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.826984Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.828275Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.828357Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.833549Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.833573Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.833615Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.833635Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.834428Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.834451Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.8366Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.836647Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.838333Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.838376Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.839962Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.839986Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.842879Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.842931Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.856165Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.856224Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.859522Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.859545Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.86226Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.862308Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.865108Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.865212Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.865986Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.866002Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.872998Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.873045Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.882012Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.882065Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.882075Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.882086Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.883252Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.883277Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.889045Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.889091Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.890955Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.891036Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.893835Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.893872Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.896638Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.896681Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.898619Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.898642Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.898652Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.898662Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.89881Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.898824Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.901399Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.90142Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.901467Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.901484Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.903549Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.903576Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.906169Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.906188Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.907242Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.907281Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.909551Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.909572Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.911377Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.911418Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.912948Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.912991Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.914994Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.915024Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.916952Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.916969Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.930701Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.930762Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.932766Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.932785Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.93407Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.934122Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.93722Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.937343Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.937706Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.937746Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.939129Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.939505Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.946161Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.946227Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.946244Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.94626Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.952455Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.952497Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.953246Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.953277Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.957229Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.957264Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.957317Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.957339Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.961062Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.961094Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.961849Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.96187Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.967758Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.967821Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.976778Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.976835Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.98486Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.984925Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.985513Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.985539Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.988391Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.988471Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.988514Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.988531Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.990894Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.990928Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.99094Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.99096Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.993722Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.993755Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.995466Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.995499Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.995939Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.995975Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.998162Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:25.998198Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.007308Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.007368Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.011002Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.011035Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.012289Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.012327Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.013494Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.013535Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.01652Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.016549Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.018331Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.018354Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.018611Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.018634Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.019732Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.019758Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.022991Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.02302Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.026402Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.026428Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.047013Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.047203Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.053196Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.053523Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.053553Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.05361Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.054967Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.055005Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.056154Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.056193Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.057245Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.057463Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.058162Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.058231Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.058247Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.058269Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.059154Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.059229Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.063527Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.063637Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.063653Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.06368Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.073897Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.074075Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.074505Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.074531Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.076181Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.076308Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.076323Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.076354Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.082527Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.082652Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.083414Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.083453Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.08432Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.084355Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.088538Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.08898Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.091141Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.091252Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.092694Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.092772Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.098845Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.099215Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.099255Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.099712Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.10389Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.103972Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.106199Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.106323Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.107987Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.108035Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.1094Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.109442Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.109456Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.109487Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.112165Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.112399Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.112991Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.113031Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.115322Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.115391Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.120769Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.120772Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.120977Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.120999Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.12199Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.122028Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.12388Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.123923Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.128541Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.128728Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.128742Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.128793Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.131458Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.131535Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.133266Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.133301Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.137056Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.137154Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.13727Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.1373Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.143532Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.143658Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.143683Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.143736Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.15703Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.157255Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.165171Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.165502Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.167852Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.167917Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.167935Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.167982Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.174498Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.174591Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.174692Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.174719Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.179001Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.179182Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.182427Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.182532Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.184282Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.184334Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.192458Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.192579Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.192583Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.192618Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.192699Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.192706Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.202556Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.202701Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.204663Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.204732Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.207712Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.207809Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.213697Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.214017Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.218396Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.218461Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.220223Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.22029Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.221106Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.221195Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.225227Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.225297Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.225953Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.226002Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.228811Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.228884Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.230892Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.230966Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.234409Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.23446Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.237983Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.238093Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.239901Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.239961Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.24218Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.242262Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.242607Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.243301Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.244227Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.244351Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.245053Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.245171Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.250226Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.25033Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.258356Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.258543Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.26422Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.264422Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.26445Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.264507Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.26453Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.264579Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.265898Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.265949Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.267561Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.267596Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.269137Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.269199Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.27426Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.274418Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.274479Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.274491Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.274519Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.274536Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.274537Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.27457Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.275112Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.27519Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.29848Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.298693Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.299281Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.299347Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.304286Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.30446Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.305891Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.306046Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.306597Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.306651Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.328488Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.328682Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.353735Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.353915Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.359284Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.359624Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.36255Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.362802Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.363649Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.363782Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.363803Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.363839Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.380873Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.381088Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.387095Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.387358Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.388477Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.388545Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.389689Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.389742Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.398576Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.398852Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.398896Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.39895Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.400217Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.400377Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.400449Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.400517Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.403249Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.40346Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.421806Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.422053Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.423083Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.423154Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.425918Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.426098Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.428598Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.428751Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.431579Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.431647Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.434035Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.434103Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.439717Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.439923Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.441322Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.44138Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.445475Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.445578Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.446961Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.447068Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.449251Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.449347Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.454751Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.45495Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.456872Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.456938Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.459381Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.459451Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.459798Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.459877Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.462787Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.462899Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.464871Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.464929Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.469009Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.469154Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.470534Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.470633Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.472922Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.473Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.474512Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.474587Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.481396Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.48158Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.485652Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.485767Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.486952Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.487031Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.487387Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.487436Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.492937Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.49297Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.493153Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.493175Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.494241Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.494316Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.498162Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.498372Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.515282Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.515471Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.516447Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.516509Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.519075Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.519144Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.519168Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.51921Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.520234Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.520381Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.521796Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.521842Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.525096Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.52515Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.525562Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.525604Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.530034Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.530209Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.530233Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.530282Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.533852Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.533961Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.53742Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.537463Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.540659Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.540862Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.540895Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.540939Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.542522Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.542598Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.542631Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.542687Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.544253Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.544297Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.560619Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.560776Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.567108Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.567195Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.571268Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.57136Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.577545Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.577845Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.577879Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.57794Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.582847Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.582947Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.586491Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.586571Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.589164Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.589248Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.592683Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.592787Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.592824Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.592879Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.594882Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.594942Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.595787Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.595865Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.597955Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.598045Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.599784Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.599865Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.602253Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.602291Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.602304Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.602324Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.610419Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.610745Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.615947Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.61609Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.619489Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.61959Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.620986Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.621058Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.62626Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.626385Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.630059Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.630132Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.635293Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.635406Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.638581Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.638682Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.638702Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.638735Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.641726Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.641823Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.646174Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.646239Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.649906Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.649976Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.651095Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.651151Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.651173Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.651214Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.653432Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.653487Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.654645Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.654704Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.65745Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.657561Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.664396Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.664705Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.66599Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.666019Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.675177Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.675362Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.677554Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.677777Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.679026Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.67911Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.684178Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.684299Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.68744Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.68757Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.68808Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.688136Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.695453Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.695609Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.697939Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.698073Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.698109Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.698178Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.705512Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.705705Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.710406Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.711096Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.711988Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.71207Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.712095Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.712146Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.713577Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.713633Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.724489Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.724789Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.728288Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.728351Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.729423Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.729466Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.730185Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.733392Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.746022Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.746312Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.750798Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.750924Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.756058Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.756194Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.764433Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.766228Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.767071Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.76714Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.768739Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.7688Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.773075Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.773233Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.773511Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.77357Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.774779Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.77484Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.777701Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.777801Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.778578Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.778688Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.787273Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.787463Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.791547Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.791725Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.791794Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.79188Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.794979Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.795106Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.798338Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.798724Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.80232Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.802366Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.809213Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.809315Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.811533Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.81159Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.816604Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.81678Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.817538Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.817581Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.819623Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.819708Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.820076Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.820182Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.820895Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.820949Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.822878Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.822971Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.82438Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.824463Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.830695Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.8309Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.833715Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.833826Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.838901Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.839323Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.839354Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.839866Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.847811Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.848005Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.849782Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.849849Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.853206Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.853692Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.853727Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.853771Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.858079Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.858261Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.858769Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.858826Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.864016Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.864224Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.865736Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.865783Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.865826Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.86586Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.866289Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.866339Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.868719Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.868942Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.868961Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.868995Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.879849Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.880044Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.883953Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.884037Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.886301Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.886512Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.890287Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.890412Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.892658Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.892719Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.898027Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.898213Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.900983Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.901046Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.904885Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.905077Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.909642Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.909749Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.909864Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.909935Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.912718Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.912904Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.912919Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.912948Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.915528Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.915645Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.915663Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.915695Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.920023Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.920216Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.92075Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.920806Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.923278Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.923336Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.926126Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.926201Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.929604Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.930002Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.933558Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.933645Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.93692Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.937073Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.942738Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.942832Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.951212Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.951409Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.953024Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.953133Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.955655Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.955731Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.958265Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.958305Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.962459Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.962641Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.962667Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.962702Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.964113Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.964267Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.966265Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.966312Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.971129Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.971316Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.971924Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.971968Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.97198Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.972004Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.977834Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.97815Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.978223Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.978238Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.978271Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.978224Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.98006Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.980198Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.981458Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.981492Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.985747Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.98599Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.990079Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.990079Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.990206Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.990206Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.990824Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.990856Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.993708Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.993947Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.99495Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.995042Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.997335Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.997404Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.997726Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.997752Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.999701Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.999799Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.999825Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:26.99986Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.003504Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.003681Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.005738Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.005818Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.007569Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.007826Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.00786Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.00791Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.008798Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.008853Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.013787Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.015297Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.015346Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.015963Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.016003Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.016016Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.016064Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.016076Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.016102Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.016137Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.02539Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.025571Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.025598Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.025631Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(686)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.025655Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.025716Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.025736Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.025749Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.02578Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(803)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.025801Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(803)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.025892Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 803 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.025918Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.02593Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.026001Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.026029Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.026045Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.026067Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.026087Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.026156Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.029006Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.029458Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.040594Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.040692Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.043489Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.04362Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.046451Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.046548Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.0535Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.053701Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.055905Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.055968Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.057575Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.057653Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.057678Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.057711Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.060215Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.060327Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.06546Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.065658Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.065699Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.065722Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.065739Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.06577Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.067359Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.067403Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.069472Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.069553Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.070246Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.070296Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.073759Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.073941Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.075075Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.075144Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.086005Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.086254Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.094362Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.094583Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.100647Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.100875Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.106609Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.106779Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.106815Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.106913Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.110518Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.110571Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.113448Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.113603Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.1167Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.116789Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.118593Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.118656Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.119983Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.120059Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.121191Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.121244Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.122181Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.122227Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.128356Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.128498Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.136389Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.136723Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.136753Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.136801Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.136962Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.138037Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.146135Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.146378Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.148552Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.148627Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.152052Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.152137Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.155452Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.155612Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.162597Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.162783Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.162797Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.162826Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.162837Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.162873Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.16291Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.162935Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.162959Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.162991Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(682)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.163016Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.163073Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.163097Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.16311Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.163147Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(799)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.163168Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(799)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.163268Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 799 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.163295Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.163308Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.163325Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.16335Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.163367Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.163393Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.163412Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.16349Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.165851Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.165851Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.165965Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.165966Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.167912Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.168055Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.171422Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.171615Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.175022Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.175228Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.175247Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.175288Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.180392Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.180577Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.180591Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.180656Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.181931Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.182125Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.182589Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.182622Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.186906Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.187099Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.192076Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.19227Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.199068Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.199247Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.201176Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.201227Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.206873Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.207045Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.208445Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.208512Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.213827Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.213921Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.218777Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.218847Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.223712Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.223761Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.223774Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.223819Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.226322Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.226399Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.232161Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.232347Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.235639Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.235774Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.237196Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.237242Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.239128Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.239169Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.2444Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.244518Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.24524Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.245309Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.248133Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.248191Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.250356Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.250405Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.255062Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.25525Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.25673Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.256773Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.258741Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.258796Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.265936Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.266107Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.267457Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.267576Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.27178Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.27188Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.273571Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.273607Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.275887Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.276002Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.277615Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.277686Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.279507Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.27957Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.280967Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.280999Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.284382Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.284542Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.28456Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.284594Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.284887Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.284913Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.287436Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.287487Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.288826Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.288863Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.290901Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.291034Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.291367Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.291401Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.293476Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.293535Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.293546Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.293569Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.30589Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.306087Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.306102Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.306127Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.306235Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.306487Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.307447Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.307481Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.313166Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.31408Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.318308Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.362617Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.362962Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.36302Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.363034Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.363283Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.3633Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.36333Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.363341Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.363369Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.363675Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.363713Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.363725Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.363749Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.36376Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.363782Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.363793Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.363817Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.363828Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.371551Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.371717Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.371747Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.371774Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.371787Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.37182Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.371855Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.371877Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.371887Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.371912Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.371922Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.371948Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.371959Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.37198Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.372496Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.37268Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.372769Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.373546Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.373592Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.376112Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.376167Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.376896Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.376937Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.379153Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.379183Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.383971Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.384001Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.386141Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.386164Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.390019Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.390042Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.390622Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.390649Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.394629Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.394666Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.394786Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.394799Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.401265Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.40128Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.40334Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.40336Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.405259Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.40529Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.411951Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.411987Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.41413Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.414149Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.415537Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.415602Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.419073Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.419156Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.41917Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.419194Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.425251Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.425355Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.426226Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.426537Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.430018Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.430115Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.433125Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.433217Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.435017Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.435098Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.435904Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.435973Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.439379Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.439453Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.440269Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.440331Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.442268Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.442345Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.442798Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.442827Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.449821Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.44991Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.45163Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.45171Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.451955Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.451979Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.45347Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.453543Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.454683Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.454759Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.456685Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.456757Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.458257Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.45831Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.466026Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.466094Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.468358Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.468386Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.471326Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.471354Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.473542Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.473599Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.476136Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.476164Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.481409Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.481449Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.484757Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.484816Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.485438Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.485468Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.487272Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.48735Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.488694Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.488728Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.4902Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.490248Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.496322Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.4964Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.496747Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.496781Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.500466Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.500535Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.501572Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.501612Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.506294Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.506364Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.510069Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.51017Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.510512Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.510551Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.514642Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.514711Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.515276Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.515318Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.518238Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.518297Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.521044Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.521141Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.525608Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.525682Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.535836Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.536031Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.536992Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.537049Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.537681Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.537732Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.538831Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.538888Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.540855Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.540914Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.541843Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.541896Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.543066Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.543119Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.544926Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.54502Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.55472Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.554854Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.556402Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.556463Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.556875Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.556936Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.558171Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.558228Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.559396Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.559449Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.56079Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.560858Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.564981Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.565195Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.56521Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.565232Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.573656Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.573766Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.578131Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.578252Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.580909Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.580963Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.582887Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.58298Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.584294Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.584356Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.586516Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.586614Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.587668Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.587722Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.593311Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.596286Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.596322Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.596354Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.600564Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.60066Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.600678Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.600706Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.605268Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.605369Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.606923Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.606978Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.610657Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.610735Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.616005Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.616249Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.617681Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.617731Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.620926Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.621357Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.621375Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.621414Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.622822Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.622868Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.634229Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.634358Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.638644Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.638687Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.638789Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.63879Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.638711Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.638866Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.640752Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.640791Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.646728Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.646906Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.646947Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.646962Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647002Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647002Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647037Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647075Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647097Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647162Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647203Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647217Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647241Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.64726Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647329Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647353Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647375Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647423Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647448Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647464Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647484Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647503Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.647604Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.650797Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.650943Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.651052Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.651087Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.654929Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.655043Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.65623Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.656353Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.662836Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.663014Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.667946Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.668044Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.671465Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.67153Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.671548Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.67157Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.672722Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.672768Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.673966Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.67399Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.674762Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.674801Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.681003Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.681093Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.681122Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.681126Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686313Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686334Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686418Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686426Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686451Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686437Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686625Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686648Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686633Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686677Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686689Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686694Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.68671Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686726Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686716Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686757Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686775Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686738Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686802Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686816Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686884Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686889Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.68691Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686929Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686939Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686951Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686966Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686976Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686986Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.687001Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.686992Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.687018Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.687029Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.687043Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.68707Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.687084Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.687093Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.687112Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.690715Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.69077Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.696457Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.696531Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.699534Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.69959Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.701298Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.701379Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.701836Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.701861Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.709076Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.709162Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.709661Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.709775Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.711459Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.711529Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.714747Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.714774Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.722201Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.72228Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.724432Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.724481Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.725306Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.725366Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.7284Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.728472Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.730615Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.730661Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.731248Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.731287Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.735967Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.736049Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.738912Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.739025Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.73983Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.739892Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.741776Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.741898Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.745723Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.745805Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.747428Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.747464Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.749106Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.749129Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.750437Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.750471Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.754255Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.754346Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.758439Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.758486Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.760333Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.760383Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.762546Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.762606Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.763238Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.76334Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.765075Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.765123Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.767378Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.767417Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.770492Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.770553Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.774476Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.774528Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.775127Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.775281Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.779847Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.779914Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.787517Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.787624Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.788338Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.788373Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.797863Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.797943Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.79919Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.799228Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.802345Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.802407Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.804464Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.804499Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.807098Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.807164Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.811286Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.811366Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.811386Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.811417Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.812472Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.81252Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.814321Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.814355Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.817Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.817035Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.820482Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.820922Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.820951Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.820979Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.829079Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.829183Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.829196Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.829227Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.829238Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.829259Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.82972Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.82975Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.832036Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.832087Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.832106Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.832154Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.833007Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.833043Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.834909Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.834952Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.837301Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.837397Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.84111Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.841172Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.842773Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.842803Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.845269Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.84537Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.846775Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.846786Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.846803Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.846816Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.850231Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.850348Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.851711Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.851765Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.852636Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.852702Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.85483Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.8549Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.858369Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.858471Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.862174Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.862382Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.864303Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.864511Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.86572Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.865764Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.868856Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.868896Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.870983Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.871553Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.875276Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.875531Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.875569Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.875588Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.875602Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.875637Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.876379Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.87641Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.887105Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.887963Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.88801Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.888332Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.889292Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.889341Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.891411Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.891457Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.89598Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.896Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.896141Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.896141Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.897853Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.897908Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.902318Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.902415Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.902985Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.903033Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.903446Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.903482Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.907044Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.907147Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.910279Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.910422Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.910439Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.910536Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.91374Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.913911Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.913925Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.913955Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.922271Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.922383Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.922397Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.922426Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.923881Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.923925Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.925022Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.925053Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.926091Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.926132Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.926659Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.926721Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.927111Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.927141Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.929234Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.929317Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.930544Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.930581Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.932138Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.932188Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.937631Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.937838Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.940018Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.940084Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.942207Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.94224Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.945676Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.945966Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.946775Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.947032Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.947648Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.947675Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.949197Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.949239Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.951139Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.951181Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.953832Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.955113Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.955145Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.955241Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.958367Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.958506Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.960334Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.96038Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.965086Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.965235Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.968686Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.968822Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.970268Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.970594Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.970616Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.970713Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.972106Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.972141Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.983936Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.98413Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.994123Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.994316Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.998522Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:27.998694Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.003981Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.004202Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.005598Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.005697Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.006934Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.006992Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.009034Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.00913Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.023015Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.023127Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.023522Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.023561Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.024858Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.02491Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.027906Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.028077Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.030131Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.030286Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.03031Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.030345Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(684)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.030373Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.030441Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.030465Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.030479Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.030515Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(801)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.03054Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(801)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.030644Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 801 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.03067Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.030682Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.030701Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.030724Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.030743Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.030767Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.030788Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.030863Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.040506Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.044557Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.044667Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.044733Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.048811Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.048896Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.051102Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.051184Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.056055Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.056235Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.064556Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.064728Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.065753Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.065831Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.06723Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.06732Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.067334Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.067357Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.067336Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.067402Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.082998Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.083474Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.088371Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.088528Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.099888Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.100064Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.099889Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.10015Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.119772Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.119893Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.1199Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.119912Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.119917Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.119928Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.119934Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.119937Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.119946Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.119952Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.11996Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.119748Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.11998Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.119965Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.121064Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.121086Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.123978Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.124027Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.125249Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.125275Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.129466Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.129483Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.132224Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.132243Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.132279Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.13229Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.136037Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.136055Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.136105Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.136116Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.138046Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.138058Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.138909Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.138923Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.144192Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.144227Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.146028Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.146042Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.147863Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.147896Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.150909Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.150928Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.158229Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.158254Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.158267Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.158283Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.159107Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.15914Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.162943Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.163324Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.17132Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.171448Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.172976Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.173011Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.174267Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.1743Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.181063Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.181096Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.181212Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.181246Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.182369Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.182427Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.188948Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.189047Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.193941Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.19408Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.196276Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.196375Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.208329Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.208505Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.210006Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.210076Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.216502Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.216664Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.216702Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.216738Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.216752Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.216784Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.218174Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.218274Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.219248Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.219308Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.221601Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.221645Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.224502Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.224536Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.228266Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.228438Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.228358Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.229142Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.240611Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.240807Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.247402Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.247688Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.251168Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.251274Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.251665Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.251707Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.253965Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.254436Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.256017Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.256104Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.259531Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.259614Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.264509Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.264649Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.267365Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.267483Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.269258Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.269358Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.272548Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.272623Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.274771Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.274808Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.277267Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.277458Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.277471Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.27751Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.283624Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.28381Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.287945Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.288228Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.289389Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.289439Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.292935Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.293011Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.295898Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.296011Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301067Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301249Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.30108Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301406Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301442Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301478Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(674)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301503Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301596Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301622Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301637Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.30167Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(791)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301696Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(791)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301793Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 791 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301823Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301838Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301891Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301919Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301935Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301964Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.301986Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.302078Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.302726Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.302787Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.308816Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311028Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311129Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311177Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311193Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311212Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.31123Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311262Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311278Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311289Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311308Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311323Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311378Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.31141Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311422Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311435Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.31145Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311462Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311477Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311509Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311526Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311541Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311597Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311641Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.311671Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.313026Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.313046Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.313131Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.313158Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.316933Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.316971Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.324307Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.324418Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.324441Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.324465Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.325864Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.326038Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.331401Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.331517Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.333484Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.333571Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.335751Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.33583Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.340249Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.340692Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.342318Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.342384Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.346844Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.347018Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.353323Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.353485Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.354157Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.354199Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.354222Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.354255Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.364502Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.364781Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.365696Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.366093Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.366169Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.366199Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.372487Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.372528Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.372578Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.372583Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.375529Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.375636Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.376229Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.376267Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.378604Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.378648Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.380934Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.380982Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.383138Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.383205Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.384029Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.384102Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.386199Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.386246Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.386938Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.386965Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.389076Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.389143Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.390645Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.390694Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.396209Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.396271Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.399685Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.399722Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.401934Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.401972Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.402933Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.402962Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.405955Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.406021Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.408014Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.408046Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.412395Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.412461Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.414408Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.414448Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.414459Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.414499Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.421432Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.421513Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.428558Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.42868Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.43117Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.431258Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.434465Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.434519Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.435343Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.435383Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.441037Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.441219Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.44928Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.44946Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.460569Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.460757Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.463863Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.463989Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.470449Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.470643Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.474241Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.474404Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.478009Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.478161Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.478376Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.478413Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.482367Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.482566Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.483249Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.48329Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.488485Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.488597Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.493759Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.493919Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.497462Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.497591Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.497945Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.498002Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.499246Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.499283Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.500116Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.500162Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.504604Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.504732Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.504747Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.50481Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.509026Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.509206Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.513588Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.513787Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.514479Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.514541Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.516555Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.516674Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.526818Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.527002Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.529224Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.529317Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.530269Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.530326Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.535493Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.535672Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.560792Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.561046Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.566962Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.567162Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.567947Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.568154Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.570127Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.570282Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.580209Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.580618Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.587185Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.587382Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.588338Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.588387Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.59199Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.592139Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.594051Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.594143Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.596489Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.596626Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.597059Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.597089Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.599007Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.599074Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.599891Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.599922Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.6088Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.608977Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.6094Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.609447Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.611558Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.611646Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.61166Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.611692Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.617919Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.618126Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.62173Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.621833Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.621845Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.621869Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.62336Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.623436Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.624162Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.62426Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.628721Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.62887Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.632182Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.632263Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.640392Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.64065Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.65596Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.656091Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.658135Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.658191Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.662727Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.662895Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.663675Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.663731Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.666141Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.666273Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.669006Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.669139Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.674398Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.674625Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.685878Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.686117Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.6877Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.687785Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.689285Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.689343Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.689641Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.689679Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.693067Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.693112Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.69945Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.699593Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.703701Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.703894Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.706333Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.706478Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.708766Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.708863Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.714213Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.714387Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.717011Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.717046Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.751377Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.751425Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.7516Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.751634Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.751716Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.751489Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.753845Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.753882Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.753892Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.753909Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.757307Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.75733Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.759333Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.759349Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763704Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763728Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763737Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763748Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(682)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763757Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763773Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763781Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763786Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763796Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(799)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763806Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(799)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.76383Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 799 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763841Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763846Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763853Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763862Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763867Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763876Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763883Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.763904Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.764198Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.764221Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.766475Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.766494Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.775214Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.77524Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.777021Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.777038Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.778132Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.778158Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.778215Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.778231Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.781656Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.781666Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.781772Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.781786Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.784271Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.784292Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.786107Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.78615Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.78726Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.787296Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.788174Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.788197Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.791741Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.791765Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.798269Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.798402Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.798896Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.798954Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.800109Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.800133Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.803289Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.803441Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.814475Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.814629Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.814644Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.814692Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.81471Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.814788Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.81481Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.814852Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.815049Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.81507Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.815363Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.815386Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.815447Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.815479Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.815491Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.815506Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.815524Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.815535Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.815554Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.815587Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.81561Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.815631Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.815688Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.815709Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.815753Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.837836Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.838103Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.838793Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.838901Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.838926Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.838966Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.840348Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.840388Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.842825Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.842872Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.845099Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.845254Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.848365Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.848514Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.850999Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.851028Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.856191Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.856294Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.860988Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.861138Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.86417Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.864264Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.867354Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.867504Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.867628Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.867688Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.872152Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.87246Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.872499Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.872583Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.877219Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.877451Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.879166Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.87929Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.87931Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.879343Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.885748Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.886011Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.886979Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.887023Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.889917Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.889991Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.891033Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.891102Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.895725Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.895809Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.895821Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.895841Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.897332Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.897384Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.89951Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.899565Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.903693Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.903999Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.908819Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.908999Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.912704Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.912856Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.914099Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.914191Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.923292Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.923563Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.923607Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.923632Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.923644Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.92369Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.926518Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.926565Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.928652Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.92879Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.929561Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.929598Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.931486Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.931521Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.931851Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.93188Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.934281Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.934321Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.939464Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.939697Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.939956Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.939979Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.944225Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.94437Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.946534Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.946591Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.949272Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.949322Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.955027Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.955118Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.956167Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.956204Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.956261Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.956289Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.957004Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.957031Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.959035Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.959118Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.96214Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.962285Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.963386Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.963416Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.964191Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.964225Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.964956Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.965Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.967172Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.967214Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.969193Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.969258Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.983354Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.983547Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.983566Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.983603Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.983615Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.983652Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.984991Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.985078Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.985098Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.985124Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.988421Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.988511Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.990656Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.990722Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.993605Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.993652Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.997463Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.997601Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.999153Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:28.999186Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.000028Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.00006Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.003481Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.004025Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.005934Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.005996Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.006928Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.006959Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.008826Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.008868Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.008883Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.008922Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.012528Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.012771Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.01279Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.012822Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.014755Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.014847Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.01597Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.01601Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.016771Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.016801Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.02217Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.022476Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.023561Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.02361Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.023626Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.023645Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.02368Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.023736Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.023754Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.023765Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.023783Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.023798Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.023845Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.023873Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.023884Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.023899Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.023918Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.023931Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.023947Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.023962Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.024011Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.029412Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.029552Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.029618Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.029618Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.033809Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.033996Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.034288Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.034385Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.034413Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.03445Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.03788Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.038081Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.040229Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.040381Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.040421Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.040601Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.047549Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.047644Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.04766Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.047686Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.047699Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.047724Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.04872Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.048799Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.049015Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.04905Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.053581Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.053697Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.055096Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.055157Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.057098Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.057153Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.062828Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.062928Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.064553Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.064605Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.066777Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.066896Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.070155Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.070306Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.072947Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.073075Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.088221Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.088451Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.088467Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.088516Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.088529Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.088556Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.088567Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.088596Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.088614Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.08864Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.091126Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.091173Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.091234Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.091257Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.096825Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.096845Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.096853Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.096866Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.098305Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.098348Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.104376Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.104436Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.104677Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.104704Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.118078Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.118171Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.120079Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.120188Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.122556Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.122644Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.122964Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.122999Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.125505Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.12556Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.130364Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.130448Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.130463Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.13062Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.134525Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.13464Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.134655Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.134698Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.134711Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.134739Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.135337Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.135374Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.136459Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.136536Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.138328Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.13838Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.139765Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.13987Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.142585Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.142758Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.144959Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.145196Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.14911Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.149206Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.152835Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.153039Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.154209Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.154254Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.155778Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.15583Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.158415Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.158694Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.16135Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.161501Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.161516Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.161547Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.164651Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.16469Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.166719Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.166804Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.170437Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.170521Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.175706Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.175867Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.178123Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.178274Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.17926Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.179328Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.18108Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.181161Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.181177Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.181202Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.18432Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.184377Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.189145Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.189236Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.189249Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.18927Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.190054Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.190093Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.192036Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.192069Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.196683Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.196843Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.197398Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.197445Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.201166Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.20123Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.202529Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.202582Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.212806Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.213014Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.214745Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.215145Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.216856Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.216914Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.218667Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.218713Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.220696Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.220785Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.225298Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.225423Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.225462Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.225532Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.225604Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.225658Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.228322Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.228445Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.237252Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.237447Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.23838Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.238442Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.242742Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.242796Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.247233Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.247379Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.247635Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.247668Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.250366Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.250427Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.253721Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.253865Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.256415Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.256414Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.256492Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.256493Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.265356Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.265495Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.265509Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.265541Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.268111Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.268149Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.272145Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.272299Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.274697Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.274802Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.274819Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.274852Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.275017Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.275059Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.276375Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.276425Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.280777Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.280996Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.28101Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.281075Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.283881Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.284001Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.284568Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.284607Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.287262Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.287386Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.290473Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.290544Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.297113Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.297302Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.306407Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.306646Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.308895Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.309005Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.314074Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.314209Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.332186Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.332442Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.334407Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.33445Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.336449Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.336539Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.338358Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.338466Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.340432Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.340488Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.341274Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.341502Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.346639Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.346639Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.346719Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.346722Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.348482Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.348508Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.348522Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.348544Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.359676Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.35981Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.361536Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.361618Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.36583Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.365994Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.366668Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.366755Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.372925Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.373064Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.374016Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.374056Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.376129Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.376173Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.378308Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.378626Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.379265Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.379329Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.381491Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.381538Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.381554Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.381579Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.383682Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.383737Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.388663Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.388925Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.390576Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.390654Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.396688Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.396852Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.400595Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.400884Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.401491Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.40152Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.405463Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.405949Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.407626Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.407917Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.410017Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.410104Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.412529Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.412606Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.414596Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.414634Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.415307Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.415334Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.416438Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.416466Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.418705Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.418775Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.422124Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.422208Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.424138Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.424217Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.424551Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.42461Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.427465Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.427556Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.430185Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.430289Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.430314Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.430324Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.431296Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.431333Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.433112Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.433152Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.437931Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.438086Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.438682Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.438724Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.438745Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.438768Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.446708Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.446881Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.447608Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.44767Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450456Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450502Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.45055Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450551Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450567Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450587Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450605Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450635Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.45065Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450661Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450679Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450694Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450736Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450758Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450769Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450807Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450826Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450839Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450883Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450899Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.450965Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.455061Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.455162Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.458888Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.459054Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.465638Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.465897Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.466029Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.466071Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.466927Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.467073Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.472172Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.472263Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.472277Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.472298Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.4728Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.472844Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.472858Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.472881Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.479725Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.480459Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.480611Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.480626Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.480656Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.482557Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.482875Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.482927Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.491336Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.491563Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.495056Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.495279Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.496059Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.496125Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.498424Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.498477Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.499639Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.499677Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.501952Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.502015Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.506678Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.506792Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.508141Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.508176Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.514753Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.515001Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.516727Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.516749Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.516774Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.516803Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.517429Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.517471Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.519864Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.519948Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.522371Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.522422Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.528563Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.528729Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.529329Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.529361Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.531661Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.53181Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.531846Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.531884Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(674)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.531914Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.531991Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.532021Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.532039Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.53207Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(791)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.532099Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(791)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.532211Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.53224Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 791 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.53225Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.532285Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.532287Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.532308Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.532353Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.532374Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.532403Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.532428Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.532515Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.532679Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.532722Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.537526Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.537616Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.540332Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.54049Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.54402Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.544112Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.544125Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.544159Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.544329Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.544357Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.544375Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.544403Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.544419Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.54443Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.544447Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.544463Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.544499Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.544524Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.545112Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.545133Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.54515Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.545162Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.545181Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.545196Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.54536Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.54538Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.545435Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.549121Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.54923Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.550492Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.550654Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.552325Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.552415Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.5539Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.553978Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.556927Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.557029Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.562609Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.562729Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.56286Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.562892Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.565259Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.565348Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.567109Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.567146Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.57022Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.570292Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.573051Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.57317Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.573703Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.573739Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.585775Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.585928Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.585946Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.585982Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.586782Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.586984Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.589035Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.589145Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.590105Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.590134Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.59227Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.592323Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.610645Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.61085Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.613291Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.613598Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.613618Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.613722Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.613746Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.61378Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(688)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.613806Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.614543Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.614616Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.614633Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.614663Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(805)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.614683Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(805)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.61493Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 805 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.614974Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.614986Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.615002Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.615021Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.615032Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.615058Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.615076Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.615148Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.630286Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.631571Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.631635Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.631678Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.63704Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.637186Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.637217Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.637243Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.638342Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.638408Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.639893Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.639942Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.643646Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.643797Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.648213Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.648438Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.653213Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.653308Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.655426Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.655473Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.658094Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.658395Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.660618Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.660704Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.660735Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.660874Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.663477Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.663552Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.663961Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.664008Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.670126Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.670278Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.678828Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.678996Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.679012Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.679046Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681006Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681149Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681172Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681255Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681275Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681308Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681332Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.68139Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681413Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681426Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681457Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681479Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681612Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681627Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681644Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681658Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681659Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681689Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681712Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681727Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681748Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681771Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.681851Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.687678Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.687784Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.694795Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.694988Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.700023Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.700194Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.70311Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.703533Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.705215Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.705412Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.708472Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.708597Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.715991Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.716095Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.718736Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.718791Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.720757Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.720805Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.724351Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.724471Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.725422Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.725461Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.72859Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.728769Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.73643Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.736615Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.740033Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.740269Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.740297Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.740359Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.741876Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.741927Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.750195Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.750384Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.754939Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.755025Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758221Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758343Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758356Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758429Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758455Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758485Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(682)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758509Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758575Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758598Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758611Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758645Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(799)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758669Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(799)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758755Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 799 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758779Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758793Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758837Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.75886Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758873Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.75895Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.758973Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.759058Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.761053Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.761182Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.765085Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.765361Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.765387Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.765427Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.76747Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.767633Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.791007Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.791268Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.800892Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.801052Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.804077Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.804614Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.805985Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.806017Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.813101Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.813581Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.81411Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.814168Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.818179Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.818375Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.820092Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.820153Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.820724Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.820748Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.82452Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.824577Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.827561Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.827683Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.834222Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.834362Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.843292Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.843464Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.846652Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.846909Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.855705Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.855882Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.879745Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.879958Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.879975Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.88007Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.880092Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.880118Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(674)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.880138Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.880192Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.880213Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.880232Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.880256Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(791)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.880314Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.880637Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.880772Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(791)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.880836Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 791 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.880875Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.880889Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.880904Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.880923Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.880934Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.88096Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.880977Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.881052Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.881149Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.881186Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.884094Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.884266Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.885282Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.885368Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.887744Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.887885Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.889961Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.890112Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.892252Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.892437Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.895185Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.895285Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.895935Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.896046Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.898582Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.898668Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.899633Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.899675Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.909455Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.909639Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.909721Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.909751Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.914304Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.914499Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.915977Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.916671Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.917791Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.917852Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.91994Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.92012Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.92332Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.923364Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.931786Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.931929Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.941882Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.942045Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.941902Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.942107Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.944028Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.944091Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.945943Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.946124Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.955036Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.955202Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.955219Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.955291Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.957143Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.957213Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.957504Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.957532Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.961958Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.962115Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.963305Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.963365Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.963642Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.963677Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.965905Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.965934Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.969416Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.969442Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.969566Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.969567Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.970276Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.970305Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.97196Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.972002Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.976608Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.976698Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.980409Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.980607Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.98346Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.983648Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.987948Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.988085Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.988462Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.98851Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.992536Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.992793Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.994858Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.99501Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.999145Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:29.999232Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.009327Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.009505Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.014167Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.014304Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.016533Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.016644Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.019815Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.019884Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.026691Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.026865Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.036704Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.037046Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.037262Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.037299Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.039707Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.039799Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.040549Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.040629Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.041487Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.041542Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.045402Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.048753Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.049055Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.049148Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.049167Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.049201Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.050851Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.050906Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.051695Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.051723Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.051752Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.051785Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.054933Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.055422Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.056587Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.056682Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.059169Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.059215Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.062024Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.062171Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.063743Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.063781Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.070837Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.071422Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.071472Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.071498Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.073839Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.073933Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.073953Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.073974Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.075922Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.075957Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.081574Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.081767Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.084167Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.08431Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.092017Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.092171Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.093916Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.093983Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.094461Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.094502Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.104222Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.104373Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.118373Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.118628Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.118653Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.118683Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.118708Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.118771Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.118795Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.11881Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.118846Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.118878Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.118968Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.118994Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.119006Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.119077Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.1191Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.119112Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.11913Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.119185Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.119211Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.119231Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.119315Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.119343Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.119379Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.122279Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.122327Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.124003Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.124026Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.12458Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.124592Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.132203Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.132347Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.132362Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.132404Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.13474Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.134827Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.13695Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.136996Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.138117Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.138149Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.138164Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.138186Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.139221Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.13926Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.142376Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.142808Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.145767Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.145861Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.146659Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.146724Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.148702Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.148759Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.150878Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.150907Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.154558Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.154632Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.155504Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.155541Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.156972Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.157078Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.157085Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.157132Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.16171Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.16179Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.163596Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.163659Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.167644Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.167675Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.170019Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.170093Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.178584Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.178745Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.186645Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.186746Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.189693Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.189752Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.196556Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.196637Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.204896Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.205011Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.208081Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.2082Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.212832Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.212971Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.214412Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.214506Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.215832Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.215885Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.217698Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.218404Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.218424Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.218469Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.222313Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.222363Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.222404Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.222427Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.222468Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.222471Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.222488Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.222509Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.222533Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.22255Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.222608Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.222653Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.222664Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.222679Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.222707Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.22272Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.222737Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.222753Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.2229Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.224674Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.224783Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.226042Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.226113Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.228816Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.229013Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.229164Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.229196Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.232506Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.232646Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.234751Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.234858Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.237208Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.237349Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.239474Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.239557Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.239571Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.239594Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.240496Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.240554Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.243268Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.243374Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.243392Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.243429Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.24837Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.248476Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.248503Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.248519Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.253745Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.253906Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.271163Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.271348Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.27361Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.273656Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.275811Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.275858Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.282654Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.282814Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.287216Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.287402Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.288391Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.288438Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.289955Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.290017Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.292329Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.29239Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.294973Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.295142Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.296869Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.29693Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.297284Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.297317Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.298814Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.298862Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.301673Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.30174Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.301755Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.301782Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.30492Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.305071Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.306811Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.306856Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.306967Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.307004Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.308842Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.308879Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.309606Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.309636Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.311983Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.312146Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.313427Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.313571Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.316168Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.316297Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.316696Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.316726Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.319365Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.319523Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.322903Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.323037Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.323057Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.3231Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.325364Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.325521Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.326448Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.326478Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.327636Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.327709Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.328386Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.328446Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.332136Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.3322Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.33297Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.333004Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.339386Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.339939Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.357187Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.357363Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.358502Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.358543Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.361267Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.361424Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.36323Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.363286Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.368439Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.368627Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.370205Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.370313Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.372144Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.372324Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.375068Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.375138Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.376124Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.37622Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.378472Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.378689Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.379604Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.379666Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.379767Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.379821Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.382111Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.382251Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.383448Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.383478Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.390525Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.390684Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.390699Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.390738Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.390907Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.390932Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.395991Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.396188Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.395991Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.39625Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.3984Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.398474Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.399619Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.399645Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.402701Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.402892Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.404995Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.405191Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.407291Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.407364Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.408226Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.408267Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.415764Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.415948Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.415984Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.416028Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.416041Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.416081Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.416129Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.416243Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.419592Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.419685Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.440491Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.440679Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.446332Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.446543Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.449285Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.44947Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.4495Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.449537Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(672)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.449566Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.449636Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.449664Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.449679Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.449718Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(789)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.449747Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(789)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.449862Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 789 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.449899Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.449916Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.449966Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.449995Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.450011Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.450038Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.450064Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.450254Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.457675Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.457788Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.457802Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.457839Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.4613Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.461881Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.465126Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.465236Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.465254Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.465285Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.467262Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.467321Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.478842Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.478872Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.478921Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.478938Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.478971Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.479051Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.480803Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.480845Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.484198Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.484248Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.486928Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.48699Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.490487Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.490539Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.492198Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.492215Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.492256Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(71375))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.492273Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.492289Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 71375","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.4923Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.492308Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":133,"buf.len":71375}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.492499Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed 71508 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.492518Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.492536Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.492525Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.492562Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(90558))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.492569Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.492575Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 90558","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.492604Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.492608Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":133,"buf.len":90558}
+{"v":0,"name":"sugar","msg":"flushed 90691 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.49275Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.492757Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493132Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493142Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493155Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(500764))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493163Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493169Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 500764","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493176Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.49318Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":500764}
+{"v":0,"name":"sugar","msg":"flushed 500898 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493402Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.49341Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493414Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.49354Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493548Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.49356Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(594222))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493567Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493574Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 594222","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493579Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493583Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":594222,"self.len":134}
+{"v":0,"name":"sugar","msg":"flushed 594356 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493839Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493847Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493851Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493867Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493874Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493883Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(420219))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.49389Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493896Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 420219","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.4939Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493904Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":420219,"self.len":134}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.49394Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.493969Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.494013Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(380497))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.494037Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.494055Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 380497","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.49407Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.494081Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":134,"buf.len":380497}
+{"v":0,"name":"sugar","msg":"flushed 420353 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.494157Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.49417Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.494174Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.494255Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.494271Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed 380631 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.494453Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.494474Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.495054Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.495075Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.495101Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(580726))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.495117Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.495103Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.49515Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.495131Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.495173Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 580726","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.49518Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(507412))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.495188Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.495196Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":580726,"self.len":134}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.495211Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 507412","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.495232Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.49524Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":507412,"self.len":134}
+{"v":0,"name":"sugar","msg":"flushed 580860 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.495589Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed 507546 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.4956Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.495616Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.495625Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.495602Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.495653Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.500297Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.500316Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.500405Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.500415Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.520904Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.520939Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.535143Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.53567Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.538069Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.538131Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.538157Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.538176Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.540766Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.540819Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.542252Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.542436Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.546923Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.547028Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.549101Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.549157Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.549179Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.549229Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.5501Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.550129Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.551106Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.551142Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.553648Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.553734Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.555322Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.555395Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.557509Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.557544Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.561347Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.561446Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.561934Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.562011Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.56553Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.565639Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.565663Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.565693Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.56572Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.565769Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.565789Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.565808Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.56606Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.566093Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.56615Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.56618Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.566194Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.566236Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.566256Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.56627Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.566287Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.566325Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.56635Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.566371Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.566439Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.571105Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.571259Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.586296Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.586392Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.587241Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.587288Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.613491Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.614901Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.614966Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.615032Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.615056Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.61509Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.615113Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.615164Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.615186Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.615198Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.615229Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.615249Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.615337Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.615365Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.615378Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.615394Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.615419Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.615431Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.615454Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.615473Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.615545Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.616089Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.616155Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.625527Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.625701Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.628487Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.62865Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.629911Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.629961Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.63057Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.630627Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.631535Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.63158Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.633553Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.633604Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.636568Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.636586Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.636709Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.636709Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.637989Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.638021Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.640472Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.64056Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.641306Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.641343Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.650199Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.650349Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.667102Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.66725Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.683257Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.683925Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.683956Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684018Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684039Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684069Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(682)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684092Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684143Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684164Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684176Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684201Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(799)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684222Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(799)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684317Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 799 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684344Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684356Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684391Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684415Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684451Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684483Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684505Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.684582Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.706086Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.706318Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.71923Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.720637Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.720675Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.720713Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.722795Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.722929Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.722943Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.722975Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.725341Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.725397Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.726576Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.726615Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.730177Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.730362Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.735329Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.735631Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.737292Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.737374Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.737912Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.737935Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.746014Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.746189Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.748141Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.748309Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.754307Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.754491Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.755589Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.755621Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.765454Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.765608Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.7672Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.767297Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.770708Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.770959Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.770985Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.77102Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.793056Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.793129Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.795985Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.796007Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.798027Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.798048Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800148Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800167Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800212Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800242Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800253Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800267Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(674)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.80028Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800302Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800313Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800321Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800334Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(791)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800345Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(791)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800377Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 791 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800394Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800401Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800411Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800425Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800436Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800449Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800459Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.800494Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.805949Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.805998Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.807758Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.807781Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.811046Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.811083Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.812229Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.812251Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.815678Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.815695Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.816986Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.817Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.817055Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.817067Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.817952Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.817965Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.819792Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.819811Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.823075Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.823085Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.823677Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.823687Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.824077Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.824086Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.824621Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.824629Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.827564Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.827587Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.828117Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.828134Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.831249Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.831264Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.833262Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.833278Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.837012Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.837032Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.844282Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.844315Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.855125Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.855149Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.857418Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.857431Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.859377Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.859389Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.859441Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.859455Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.862158Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.862173Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.863545Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.863556Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.881331Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.88136Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.883631Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.883645Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.887148Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.887159Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.888967Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.888979Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.890808Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.890818Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.895325Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.895338Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.895399Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.895408Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.900384Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.900394Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.900471Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.900481Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.902366Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.902377Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.902455Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.902466Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.903429Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.90344Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.906008Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.906019Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.907693Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.907704Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.907779Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.90779Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.91002Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.910031Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.91197Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.911981Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.912096Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.912106Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.914369Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.914379Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.914997Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.915008Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.915484Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.915495Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.915934Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.915944Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.917717Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.917728Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.918424Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.918437Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.920007Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.920017Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.922249Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.922261Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.924148Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.924164Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.926358Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.92637Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.928977Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.928997Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.93567Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.935686Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.948082Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.948099Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.951985Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952001Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952049Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952073Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952083Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952096Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(684)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952106Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952126Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952136Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952142Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952154Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(801)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952164Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(801)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952193Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 801 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952206Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952212Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.95222Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952231Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952238Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952248Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952257Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.952285Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.954057Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.954074Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.954135Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.954151Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.954753Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.954772Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.958669Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.958706Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.960368Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.960383Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.96199Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.962016Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.962862Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.962882Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.973745Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.973767Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.975254Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.97527Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.979491Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.979507Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.980036Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.980058Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982514Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.98254Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.98255Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.98256Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(670)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.98257Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982587Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982596Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982602Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982613Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(787)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982621Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(787)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982648Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 787 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982661Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982667Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982674Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982683Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982691Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982701Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982709Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982718Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982725Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982733Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982734Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.982788Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.985349Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.98538Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.988407Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.988429Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.992697Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.992723Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.994605Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.994631Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.996951Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.996978Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.998209Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:30.998251Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.002566Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.002603Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.002705Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.002724Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.002841Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.002858Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.00491Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.00493Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.005774Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.005791Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.008466Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.008487Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.010635Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.010669Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.01301Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.013045Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.015108Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.015134Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.018548Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.018573Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.024503Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.024554Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.036011Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.03609Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.039177Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.039218Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.041558Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.041582Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.041635Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.041663Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.042465Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.04249Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.050589Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.05079Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.050831Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.050877Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.050903Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.050963Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.050988Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.051001Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.051041Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.051072Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.051185Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.051222Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.051236Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.051259Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.051284Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.051297Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.051404Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.051441Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.051577Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.052571Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.05265Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.054154Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.054253Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.063231Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.063281Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.068966Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.069025Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.072889Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.072973Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.079363Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.079445Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.08244Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.082474Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.082487Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.082504Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.084358Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.084384Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.085521Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.085544Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.087446Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.087473Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.090739Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.090757Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.092706Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.092723Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.093374Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.093398Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.094979Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.094998Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096023Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096047Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096057Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096069Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.09608Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096099Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096109Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096116Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096127Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096137Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096164Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096179Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096185Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096194Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096206Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096214Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096223Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096231Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096264Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096781Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.096806Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.098968Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.098989Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.101403Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.101418Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.104734Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.104752Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.109687Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.109705Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.114088Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.114127Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.114136Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.114147Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.115937Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.115951Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.117883Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.117908Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.123055Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.123071Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.124281Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.124301Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.12503Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.125044Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.127283Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.127295Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.128469Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.128489Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.130661Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.130686Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.141046Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.141072Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.145429Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.145463Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.148758Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.148779Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.149131Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.149145Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.155917Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.155939Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.157989Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.158003Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.170066Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.170095Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.171708Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.171723Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.173748Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.173761Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.17493Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.174944Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.177474Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.177488Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.17952Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.179547Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.181943Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.181958Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.183783Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.183802Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.186226Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.186245Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.187951Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.187969Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.190029Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.190046Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.192933Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.192949Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.192967Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.192982Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.194832Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.194861Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.198299Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.198322Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.200408Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.200427Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.201298Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.201312Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.204256Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.204279Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.204538Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.204556Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.207628Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.207649Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.209796Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.209819Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.209881Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.209913Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.209924Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.20994Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(682)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.209953Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.209974Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.209983Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.209991Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.210004Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(799)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.210014Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(799)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.210048Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 799 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.210064Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.210071Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.210079Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.210093Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.210101Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.210111Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.210123Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.210164Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.217161Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.21721Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.246279Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.246346Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.247522Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.247541Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.248357Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.248375Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.249684Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.249703Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.25246Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.252486Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.255006Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.255035Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.257004Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.257024Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.260253Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.260276Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.262494Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.262519Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.26322Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.263241Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.266658Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.26667Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.268249Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.268273Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.268345Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.268366Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.269622Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.269643Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.27123Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.271251Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.273154Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.273182Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.275425Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.275448Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.277866Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.277895Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.280143Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.28017Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.281403Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.281453Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.287239Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.287296Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.287396Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.287426Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.290417Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.29043Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.297382Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.29752Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.29938Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.299441Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.30595Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.306201Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.306241Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.306288Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(688)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.306317Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.306385Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.306412Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.306463Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.306507Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(805)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.306651Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(805)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.306782Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 805 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.306814Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.306831Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.306854Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.306879Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.306893Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.30692Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.306945Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.307031Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.32909Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.329197Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.330908Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.330934Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.331328Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.331352Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.332041Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.332067Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.333408Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.333425Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.337464Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.337757Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.340731Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.340876Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.341608Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.34165Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.350119Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.350298Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.350312Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.350335Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.350357Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.350384Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.35219Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.352234Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.353181Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.353204Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.354795Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.354816Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.356392Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.356527Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.360764Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.3609Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.362571Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.362662Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.364121Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.364162Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.366641Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.366977Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.371239Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.371538Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.371567Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.3716Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.373709Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.373765Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.375542Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.375607Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.386637Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.386835Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.404282Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.404529Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.415889Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.415892Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.416182Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.416308Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.417972Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.418083Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.420432Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.420594Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.422552Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.422625Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.425476Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.425586Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.429089Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.429282Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.429841Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.429887Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.430279Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.430311Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.433513Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.433652Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.433676Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.433709Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.433737Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.433795Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.433819Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.433836Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.433871Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.433898Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.433993Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.434024Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.434038Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.434059Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.434088Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.434107Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.434149Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.434882Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.43664Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.436902Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.437Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.438719Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.438806Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.440289Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.440384Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.449804Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.449996Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.450013Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.450051Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.450065Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.450103Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.457376Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.457587Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.457602Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.457628Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459539Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459595Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459604Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459625Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459633Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459643Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(682)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459652Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459672Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459679Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459684Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459693Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(799)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459701Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(799)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459739Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 799 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459761Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459771Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459784Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.4598Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459813Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459828Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459842Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459865Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459909Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.459882Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.46165Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.461683Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.468881Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.469023Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.483707Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.48379Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.489483Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.489714Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.491529Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.491602Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.496357Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.496558Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.499873Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.500034Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.500655Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.500692Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.501445Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.501476Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.5043Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.504406Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.505081Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.505119Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.507133Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.507187Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.512015Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.51219Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.513779Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.513871Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.516247Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.516293Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.51777Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.517815Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.521827Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.522023Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.522265Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.522313Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.524935Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.525025Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.531555Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.531591Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.531719Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.53172Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.532756Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.532824Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.537736Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.537906Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.541499Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.541965Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.541995Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542043Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(688)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.54207Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.54214Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542165Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542182Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542211Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(805)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542237Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542324Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542371Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542398Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542419Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542436Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542464Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542479Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542491Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542505Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542519Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.54257Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(805)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542591Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 805 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542624Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542641Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542597Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542661Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542669Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542688Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542705Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.54269Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.54273Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542741Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542755Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542756Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542788Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542802Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542837Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.542844Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.548728Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.548956Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.549281Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.549304Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(684)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.549323Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.549393Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.549415Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.549427Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.549447Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(801)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.549467Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(801)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.549627Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 801 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.549654Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.549665Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.549844Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.54987Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.549884Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.549901Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.549959Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.549979Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.549994Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.550045Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.55119Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.551251Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.554057Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.554253Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.558443Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.558606Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.57093Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.571089Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.571104Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.571148Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.573469Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.573673Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.574403Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.574463Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.576438Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.576504Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.57815Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.578273Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.580094Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.58017Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.58012Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.58022Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.580791Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.580841Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.586859Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.587022Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.587036Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.587064Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.588403Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.588489Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.590127Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.590209Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.591857Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.591902Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.593392Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.596016Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.596067Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.596358Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.598849Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.598939Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.599569Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.599597Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.608278Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.608441Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.614218Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.61449Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.614509Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.614538Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.617756Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.617869Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.621072Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.621234Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.622566Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.622628Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.624617Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.626295Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.628959Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.629254Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.629271Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.629307Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.629474Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.629509Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.631406Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.63148Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.634178Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.634222Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.63646Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.6366Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.637818Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.63786Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.639783Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.639843Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.645062Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.645259Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.648448Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.648681Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.648704Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.648728Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.651131Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.651189Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.654728Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.654877Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.656457Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.656572Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.657507Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.657544Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.659337Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.659366Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.662371Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.662556Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.663087Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.663123Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.671079Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.671244Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.673183Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.673249Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.680679Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.680953Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.680969Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.680997Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.683703Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.683796Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.686184Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.68643Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.686552Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.686583Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.687765Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.687829Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.690816Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.690945Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.691869Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.691921Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.696245Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.696414Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.698076Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.69815Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.700462Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.70055Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.703789Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.703951Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.706766Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.706762Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.706911Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.706912Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.709015Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.709068Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.713727Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.713983Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.71585Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.715899Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.719788Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.719962Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.72177Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.721871Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.722553Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.722618Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.722631Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.722654Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.726117Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.726252Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.728597Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.728743Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.729079Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.729129Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.734585Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.738574Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.738589Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.738951Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.740386Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.740427Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.742202Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.742265Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.745048Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.745223Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.746143Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.746193Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.749807Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.749986Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.750031Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.750138Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.751752Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.751819Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.753118Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.75327Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.754828Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.754911Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.756301Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.756335Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.758352Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.758405Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.76256Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.762752Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.764521Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.764575Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.765252Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.765286Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.766274Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.766305Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.767357Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.767387Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.770332Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.770678Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.773461Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.773562Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.773811Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.773866Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.781907Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.781998Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.782103Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.782103Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.787091Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.787215Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.787289Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.787452Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.788942Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.788986Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.79058Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.790635Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.792045Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.792082Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.796985Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.798213Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.79824Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.79828Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.799533Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.799579Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.803528Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.803836Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.804699Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.804735Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.806537Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.806587Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.808708Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.808744Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.815002Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.815187Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.815202Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.815238Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.815872Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.815943Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.815965Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.815991Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.81686Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.81689Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.819991Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.820175Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.82266Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.822764Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.824209Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.824246Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.82604Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.826085Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.829246Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.829432Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.829445Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.829476Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.830295Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.830331Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.831203Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.831248Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.832187Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.832229Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.835043Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.83755Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.840423Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.84121Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.841232Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.841263Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.846511Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.846766Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.846946Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.846992Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849012Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849105Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849202Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849205Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849227Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849257Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849286Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849344Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849365Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849377Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.84942Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849445Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849515Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849542Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849578Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849605Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849618Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849635Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.84966Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849675Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849697Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849716Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.849792Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.853352Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.853581Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.853895Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.853939Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.85551Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.855579Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.85805Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.858214Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.865635Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.865863Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.865878Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.86591Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.870499Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.870651Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.870673Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.870697Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.872618Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.872865Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.874135Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.874234Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.885753Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.885887Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.8859Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.886302Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.886348Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.886365Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.886452Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.886485Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.888406Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.88859Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.889759Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.889835Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.891291Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.891319Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.89431Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.894346Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.894411Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.894446Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.896086Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.896116Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.89712Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.897271Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.901899Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.903948Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.90419Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.904304Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.904817Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.904853Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.906647Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.906716Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.906732Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.906755Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.908251Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.908288Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.911777Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.912369Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.913034Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.913077Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.914879Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.914914Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.916234Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.916275Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.918428Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.919556Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.921031Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.921085Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.925827Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.926001Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.925867Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.926407Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.928531Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.928847Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.929493Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.929522Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.930391Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.930438Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.932523Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.932578Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.934468Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.934507Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.936078Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.936151Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.938993Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.939039Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.940155Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.940184Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.942205Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.942242Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.942964Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.943021Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.947791Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.947997Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948019Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948055Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(672)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948082Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948173Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948199Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948214Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948242Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(789)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948268Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948292Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948335Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.94835Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(789)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948367Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948388Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 789 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948398Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948413Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.94845Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948473Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948481Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948503Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948504Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948367Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948534Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(682)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948547Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948577Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.9486Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948614Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948636Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.94865Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(799)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948662Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(799)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948689Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 799 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948708Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948719Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.94873Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948743Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948777Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948821Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948845Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948868Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.94891Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.948916Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.94968Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.949724Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.95355Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.953724Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.956269Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.956423Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.958437Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.958576Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.959147Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.959187Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.9592Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.959227Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.963208Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.963319Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.963332Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.963355Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.965178Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.965293Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.969573Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.969726Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.96974Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.969764Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.971418Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.971465Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.971476Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.971511Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.971645Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.971674Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.974402Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.974486Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.979258Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.979413Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.981243Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.981361Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.981374Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.981399Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.984017Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.984104Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.984734Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.984768Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.987065Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.987178Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.989677Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.989823Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.991643Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.991694Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.99328Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.993353Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.994234Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.994293Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.994501Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.99453Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.996167Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.996203Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.998116Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:31.998288Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.000391Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.000439Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.000453Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.000474Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.003473Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.003577Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.005465Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.005531Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.005549Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.005573Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.009962Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.01009Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.012413Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.012643Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.012659Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.01269Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.015248Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.015364Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.024884Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.025061Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.025285Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.02532Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.02628Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.026309Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.032233Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.032414Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.033664Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.033696Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.036757Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.037292Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.038569Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.03862Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.038636Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.038763Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.040384Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.040439Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.042636Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.042696Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.046856Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.04747Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.048323Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.048372Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.049995Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.050029Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.053391Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.053562Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.05501Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.055128Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.056349Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.056398Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.058223Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.058276Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.06009Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.06014Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.062407Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.062571Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.063308Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.063357Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.064604Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.064651Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.066452Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.066496Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.068603Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.068651Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.070277Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.070616Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.071635Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.0717Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.07172Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.071747Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.074073Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.074193Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.081871Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.081871Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.082044Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.082102Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.09854Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.098707Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.098721Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.098752Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.100218Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.100252Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.103961Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.104126Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.106524Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.10653Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.106605Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.106607Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.107098Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.107131Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.110111Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.11516Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.115385Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.115521Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.115536Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.115561Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.119988Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.120191Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.121624Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.12174Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.122573Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.122612Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.125029Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.125169Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.129491Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.129701Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.12972Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.129763Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.132744Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.133061Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.134214Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.134317Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.138307Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.138508Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.140376Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.140465Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.146476Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.146613Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.146626Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.146655Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.149449Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.149582Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.149611Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.14963Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.151463Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.151605Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153285Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153371Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153377Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153419Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153434Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153456Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(682)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153473Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153503Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153519Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.15353Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153547Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(799)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153562Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(799)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153608Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 799 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153632Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153649Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153687Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153707Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153719Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153734Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153748Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153815Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153939Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.153968Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.170467Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.170635Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.170711Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.170754Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.171146Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.171178Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.174724Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.174864Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.178229Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.178599Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.178934Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.17897Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.179641Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.17968Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.18306Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.183195Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.184877Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.184959Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.188108Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.188293Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.1947Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.19485Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.196836Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.196896Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.198484Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.198521Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.203764Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.203798Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.203937Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.203937Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.205339Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.205372Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.208073Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.208121Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.208133Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.208154Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.211595Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.21179Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.214991Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.215151Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.217289Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.217346Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.219683Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.219853Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.21987Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.219906Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.22399Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.224159Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.224015Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.224209Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.224639Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.224662Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.226227Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.226266Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.229227Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.229696Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.232441Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.232536Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.237062Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.237428Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.237456Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.237483Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.237509Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.237568Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.237591Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.237605Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.237633Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.237658Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.237945Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.23798Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.237995Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.238046Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.238069Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.238083Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.238112Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.238133Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.238207Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.249728Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.249952Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.250027Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.250048Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.250524Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.250555Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.253927Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.254852Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.25957Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.25973Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.262328Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.262484Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.263641Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.263724Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.273442Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.273624Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.276363Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.276431Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.281482Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.281655Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.28412Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.284245Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.284263Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.284283Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.2843Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.28433Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.284346Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.284358Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.284375Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.284394Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.284445Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.284461Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.28449Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.284502Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.284516Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.284504Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.284532Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.284548Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.28452Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.284565Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.28458Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.284584Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.284623Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.289036Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.28941Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.295375Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.295524Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.297539Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.297609Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.298597Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.298644Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.29974Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.299841Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.300718Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.301506Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.301532Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.301561Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.303253Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.303398Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.305427Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.305492Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.306457Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.306504Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.307179Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.30722Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.313079Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.313333Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.313352Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.313383Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.316988Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.317092Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.317378Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.317411Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.318401Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.318448Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.320585Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.320728Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.322025Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.322096Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.332512Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.33284Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.336801Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.336959Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.336958Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.33704Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.33706Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.33709Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.33711Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.337151Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.33717Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.337182Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.337211Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.33734Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.337424Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.337451Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.337463Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.33752Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.337541Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.337553Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.337572Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.337591Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.337656Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.349715Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.349898Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.349911Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.349949Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.35329Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.353552Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.355122Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.355275Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.355287Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.355311Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.357219Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.357353Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.362364Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.362567Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.366418Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.366461Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.369707Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.369736Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.370612Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.370641Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.374377Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.374518Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.374533Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.37456Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.374913Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.374977Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.374996Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.375018Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.383976Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.384081Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.384097Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.384125Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.385964Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.386118Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.387306Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.387335Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.387838Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.387864Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.389351Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.389362Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.390362Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.390543Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.400472Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.400553Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.402685Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.402814Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.404594Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.404641Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.406476Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.406522Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.4083Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.408327Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.415847Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.416025Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.418075Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.418163Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.418176Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.418202Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.420323Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.420477Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.421842Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.421897Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.424427Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.424535Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.424554Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.42458Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.426389Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.426447Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.428159Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.428328Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.429795Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.429836Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.438482Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.438651Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.439014Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.439057Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.441888Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.441942Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.442551Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.443201Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.449312Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.449523Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.449311Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.449767Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.449963Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.45Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.4544Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.45459Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.455277Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.455312Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.455324Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.455348Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.456684Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.456911Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.458742Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.459048Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.469444Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.469592Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.470246Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.470297Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.472295Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.47234Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.474149Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.474182Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.480174Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.480327Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.480343Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.480371Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.481219Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.481299Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.483347Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.483414Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.486428Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.487021Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.487071Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.487107Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.489396Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.489488Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.491864Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.492005Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.496297Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.507973Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.508616Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.508628Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.508707Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.508635Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.508747Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.508728Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.508784Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(682)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.508799Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.508763Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.508829Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.508871Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.50888Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.508899Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(799)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.50891Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(799)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.508947Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.508951Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.50897Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 799 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.508973Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.509008Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.509018Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.509034Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.50904Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.509052Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.509065Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.509099Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.512679Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.512712Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.512733Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.512746Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.515441Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.5155Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.518839Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.518899Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.52114Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.521166Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.531752Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.531793Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.534327Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.534363Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.537125Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.537301Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.538584Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.538611Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.548942Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.549252Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.551011Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.551121Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.554569Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.554725Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.555378Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.55542Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.557524Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.557573Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.559993Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.560087Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.562011Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.56213Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.56215Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.562179Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.565736Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.565886Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.566118Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.566154Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.567756Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.56779Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.571151Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.571355Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.571692Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.571725Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.573199Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.573248Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.575286Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.575332Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.58161Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.581775Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.582149Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.582187Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.583066Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.583107Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.58664Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.587258Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.589631Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.589712Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.591512Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.591552Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.596744Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.596887Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.602989Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.603346Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.604156Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.604332Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.607916Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.608077Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.609792Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.609847Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.615302Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.61535Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.615479Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.615504Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.618434Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.619683Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.620854Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.620873Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.620904Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.620904Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.622634Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.622703Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.625218Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.625279Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.625319Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.625355Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.632378Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.632415Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.632557Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.632568Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.634299Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.634328Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.637193Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.637341Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.637472Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.637493Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.640131Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.640247Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.640471Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.640506Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.645691Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.645876Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.647618Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.6477Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.654797Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.654981Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.659841Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.659948Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.660099Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.660132Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.66306Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.663183Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.665036Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.665111Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.667236Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.667272Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.671276Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.671428Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.672019Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.672055Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.672413Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.672444Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.67433Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.674385Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.67673Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.6768Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.679821Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.680057Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.682362Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.682362Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.68251Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.682511Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.684406Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.6845Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.689329Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.6896Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.689622Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.689663Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.69562Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.69584Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.696804Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.696869Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.699389Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.699513Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.706124Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.706312Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.714556Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.714974Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.71498Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.715013Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.715508Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.715543Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.717287Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.717342Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.721205Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.721334Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.72407Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.724167Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.725518Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.725566Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.731512Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.731668Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.737364Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.737746Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.740348Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.740467Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.740493Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.740532Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.740559Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.740625Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.740651Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.740667Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.740705Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.740733Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.740839Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.740892Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.74095Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.740978Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.741014Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.741031Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.741056Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.741079Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.741175Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.746615Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.746807Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.748877Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.749024Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.753126Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.753393Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.828783Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.829067Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.829095Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.829133Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.829541Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.829621Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.82965Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.829669Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.829715Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.82975Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.830453Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.830615Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.830631Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.830653Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.830676Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.830689Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.830718Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.831414Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:32.832351Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.009625Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.0099Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.009935Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.009977Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(686)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.010011Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.010117Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.013328Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.013467Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.013536Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(803)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.013589Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(803)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.013725Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 803 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.014286Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.014314Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.014397Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.014426Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.014441Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.014479Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.014505Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.01459Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.214576Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.214854Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.214884Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.214916Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.214938Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.214996Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.215017Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.21503Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.215057Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.215085Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.215482Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.215518Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.215533Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.215559Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.215584Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.215598Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.215627Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.215656Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.215764Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.355066Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.355177Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.355196Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.355608Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.355644Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.355677Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.355695Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.355709Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.355728Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.355748Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.3558Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.355835Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.356063Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.356087Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.356107Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.356121Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.356142Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.356159Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.35622Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.471673Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.471889Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.471922Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.471954Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(674)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.472016Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.472101Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.472125Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.472137Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.472169Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(791)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.472309Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(791)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.472407Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 791 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.47246Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.472475Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.472496Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.472522Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.47254Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.47256Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.472579Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.472654Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.973049Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.973163Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.973184Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.973214Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.973234Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.973269Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.973286Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.9733Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.97332Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.973346Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.973505Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.973537Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.973551Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.973571Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.973592Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.973607Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.973624Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.97364Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:33.973693Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018345Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018373Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018403Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(688))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018414Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018424Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 688","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018435Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.01844Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":688}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018422Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018462Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018475Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(695))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018482Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018482Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018488Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018532Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 695","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018545Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018521Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed 819 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018552Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018561Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":695}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018579Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018577Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018551Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.01863Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018598Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018652Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018659Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018619Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018687Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(687))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018631Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 826 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018618Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(688))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018689Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018725Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018702Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018725Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018706Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018773Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.01879Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(688))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018755Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018711Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(688))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.01882Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 687","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.01883Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.01884Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018818Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.01884Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 688","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018875Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018791Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 688","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018863Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018759Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018919Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":688,"self.len":131}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018911Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018848Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":687}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018942Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018732Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(689))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018958Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018885Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.01867Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 819 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018984Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(696))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.01899Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018996Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018892Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":688}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019014Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(694))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019017Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 818 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019043Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018995Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(688))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018946Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 696","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019041Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019128Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019134Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":696,"self.len":131}
+{"v":0,"name":"sugar","msg":"sized write, len = 688","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019141Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018971Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019051Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 688","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.018966Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019063Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019217Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed 827 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.01918Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019149Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":688,"self.len":131}
+{"v":0,"name":"sugar","msg":"sized write, len = 689","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019171Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 694","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019174Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.01927Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":689,"self.len":131}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019237Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019193Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":688,"self.len":131}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019305Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 820 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019318Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(681))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019324Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019274Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":694}
+{"v":0,"name":"sugar","msg":"flushed 819 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019298Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019261Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed 819 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019073Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019337Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 819 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019366Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019351Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019386Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019418Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed 825 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019413Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019331Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.01933Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019439Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019497Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 681","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019399Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.0195Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019549Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":681,"self.len":131}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019551Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019567Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019583Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019596Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019586Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed 812 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.01959Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019637Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(699))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019601Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019632Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(688))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019665Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019693Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019703Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019647Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019618Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019742Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019689Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019776Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019519Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019733Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(688))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019793Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019796Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 699","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019713Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019708Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019851Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019859Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019826Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 688","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019897Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.01993Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":699}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019943Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":688}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019757Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(710))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019921Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 830 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019992Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 688","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.0199Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019978Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020017Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":688}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.02003Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019881Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 819 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020068Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019923Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020012Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(697))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019842Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(688))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020038Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(688))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020094Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 710","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020042Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020089Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020136Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 819 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.019993Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020208Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 697","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020194Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020228Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020179Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":710,"self.len":131}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020249Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":697}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(698))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020108Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 828 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020285Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020299Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020303Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020264Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020148Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020227Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020348Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020365Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020371Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020377Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(689))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020383Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 698","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020326Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020173Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(688))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020388Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 688","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020339Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.02042Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 688","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020426Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 688","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.02043Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020437Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":688,"self.len":131}
+{"v":0,"name":"sugar","msg":"flushed 841 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020307Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020432Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":688}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020392Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020336Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020459Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020403Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020498Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020444Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":698,"self.len":131}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020445Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":688}
+{"v":0,"name":"sugar","msg":"flushed 819 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020505Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020585Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(527))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.02056Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 689","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020482Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"flushed 819 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.02047Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020603Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020645Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed 819 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020657Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020669Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020678Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020623Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020656Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 829 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.0206Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020659Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020684Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020664Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020782Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 527","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020703Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020727Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(688))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020724Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020743Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020807Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":527}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.02062Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":689}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(693))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020851Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020807Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 658 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020908Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020865Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(689))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020934Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020884Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020796Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020927Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 688","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020943Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"flushed 820 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020911Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020988Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 693","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020965Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020867Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(687))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021026Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021057Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.020947Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021072Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":693,"self.len":131}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021063Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021073Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 689","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021089Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 687","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021095Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021132Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":689,"self.len":131}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021141Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":687,"self.len":131}
+{"v":0,"name":"sugar","msg":"flushed 824 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021117Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(688))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021138Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021005Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":688}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021048Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021065Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed 820 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021176Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021219Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021232Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021171Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed 819 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021203Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021189Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021247Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021264Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(687))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021295Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 818 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021233Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021264Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021273Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021336Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 688","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021288Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021211Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021329Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021337Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021361Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":688,"self.len":131}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021361Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021315Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 819 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021445Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021384Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021418Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021402Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 687","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021467Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(683))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021483Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021514Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":687}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021524Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(688))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021418Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 818 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021557Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021531Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021577Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021502Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021607Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(701))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021614Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021491Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021632Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021459Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 683","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.02155Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021652Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021622Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021675Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":683,"self.len":131}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021653Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(688))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021734Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021745Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021755Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021594Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021769Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed 814 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021772Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021751Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021834Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 701","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021651Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021755Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021768Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021561Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 688","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021851Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021828Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(699))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021898Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021852Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":701}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021838Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(696))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021973Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021925Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":688,"self.len":131}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022006Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 819 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022051Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed 832 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022008Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021921Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(697))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021932Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 696","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022055Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 688","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021923Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022067Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.02212Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":688,"self.len":131}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022106Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":696}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.02211Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022093Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed 827 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022172Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 697","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022158Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021965Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.02219Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.0222Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":697}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022204Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed 819 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022159Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed 828 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022271Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022291Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022277Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022094Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022294Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 699","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022221Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022359Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":699}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022302Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.02239Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022256Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(691))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.021984Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.02242Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 830 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022395Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022209Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022427Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022425Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(711))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022486Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(690))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022445Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022505Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022515Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022529Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022522Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022506Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(683))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022486Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(690))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022553Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022628Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022637Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 690","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022537Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 711","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022638Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022602Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 683","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022655Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022431Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022692Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022478Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022669Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":711,"self.len":131}
+{"v":0,"name":"sugar","msg":"sized write, len = 690","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022654Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(693))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022707Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 691","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022708Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022787Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":691}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022793Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022787Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022665Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":690,"self.len":131}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022788Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":690,"self.len":131}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022688Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":683,"self.len":131}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022813Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022408Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed 842 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022797Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed 822 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022829Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed 821 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022923Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed 821 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.02293Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed 814 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022923Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022908Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022947Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022954Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022953Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(689))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023017Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022979Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 693","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022824Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(701))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022996Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022964Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.022977Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023031Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023072Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 689","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023127Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023072Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 701","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023141Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.02306Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":693}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023156Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":701}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.02314Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":689,"self.len":131}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023169Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed 832 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023197Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed 820 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023207Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023213Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023217Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023156Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed 824 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023201Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023203Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023258Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023272Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(686))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023301Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023291Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023312Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(692))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023321Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 686","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023327Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023331Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 692","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023344Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023335Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":686}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.02335Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":692}
+{"v":0,"name":"sugar","msg":"flushed 817 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023391Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.0234Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed 823 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.0234Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.023419Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.383972Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384095Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384116Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384138Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(684)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384158Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384198Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384214Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384226Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384251Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(801)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384271Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(801)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384337Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 801 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384361Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.38437Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384379Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384404Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384394Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384385Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384459Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384428Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384475Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384543Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384548Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384477Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384557Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384428Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384623Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384646Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384591Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384697Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384689Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(682)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384714Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384732Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384653Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.38474Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384758Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384766Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384773Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384718Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384778Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384792Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384836Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384794Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384843Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384874Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(799)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384953Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384905Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384989Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(799)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384991Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385014Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.384992Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385025Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.38508Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 799 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385034Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385102Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.38511Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385117Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385058Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385129Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385205Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385219Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385131Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.38517Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385249Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385309Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385342Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.38535Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.38537Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385422Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385438Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.3854Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385456Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385472Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385489Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385492Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385518Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385551Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385647Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385671Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385681Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385694Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385707Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385725Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385735Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385744Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385755Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385765Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.38579Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385808Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385813Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385817Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385869Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385889Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385841Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385899Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385932Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385962Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385847Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385943Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385975Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.385929Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386036Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386012Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386006Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386116Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386057Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386132Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386106Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386147Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386147Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386204Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386219Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.38618Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386249Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386232Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386271Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386301Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386317Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386283Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386348Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.38636Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386285Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386384Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386401Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386386Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386334Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386421Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386439Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386479Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386486Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386502Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386535Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386527Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386568Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386553Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386585Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386602Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386602Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386619Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386634Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386554Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386652Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386707Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386684Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386743Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.38676Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386745Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386747Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386806Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386835Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386851Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386838Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.386883Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.410175Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.410284Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.410303Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.410325Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(686)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.410345Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.41038Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.410397Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.410409Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.410434Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(803)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.410454Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(803)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.410504Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 803 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.410529Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.41054Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.410558Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.410581Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.410594Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.410617Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.410633Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.410684Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.411534Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.411564Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.411577Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.41159Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(682)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.411604Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.411623Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.411634Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.411645Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.411657Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(799)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.411671Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(799)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.411699Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 799 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.41172Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.411731Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.411746Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.411768Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.41178Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.411795Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.411806Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.411837Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.417685Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.417716Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.417727Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.417738Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(682)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.41775Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.417766Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.417776Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.417784Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.417794Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(799)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.417806Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(799)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.417825Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 799 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.417835Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.41784Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.417848Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.417859Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.417864Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.417869Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.417874Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.417889Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.440375Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.440539Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.44056Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.440608Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(674)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.440635Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.441572Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.441619Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.441637Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.441669Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(791)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.441699Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(791)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.445636Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 791 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.445834Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.445851Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.445881Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.445908Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.445923Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.445952Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.445973Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.446038Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.463013Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.463194Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.463218Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.46361Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.463667Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.463732Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.463756Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.463771Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.463802Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.463831Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.465125Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.465232Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.465258Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.465297Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.465362Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.465378Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.465411Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.465431Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.465798Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.470319Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.47047Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.47049Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.470515Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(684)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.470533Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.470567Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.470583Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.470594Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.470614Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(801)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.470635Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(801)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.4707Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 801 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.470732Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.470743Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.470761Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.470776Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.470788Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.470815Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.470837Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.470885Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.475166Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.475322Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.475339Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.47536Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(674)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.475386Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.475423Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.475439Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.475451Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.47547Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(791)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.475489Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(791)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.47555Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 791 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.475576Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.475587Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.475606Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.475627Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.475639Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.475659Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.475675Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.475723Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.501305Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.501689Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.501721Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.501758Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(684)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.501788Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.50198Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502035Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502066Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502104Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(801)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502143Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(801)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502215Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 801 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502263Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502281Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502308Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502334Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502352Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502377Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502412Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.50243Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502451Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(686)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502472Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.5025Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502517Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502533Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502549Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(803)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502569Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(803)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502623Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 803 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502655Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.50267Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.50269Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502711Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502728Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502747Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502781Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502797Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502815Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(672)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502844Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502871Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502888Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502903Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502922Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(789)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502939Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(789)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.502978Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 789 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.50301Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503025Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503045Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503065Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503083Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503103Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503134Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503151Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.50317Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.50319Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503216Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503233Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503248Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503264Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503281Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503321Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503349Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503364Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503384Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503403Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503419Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503453Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503477Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503558Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503579Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503597Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503635Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.50365Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503664Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503697Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503712Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503765Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.503794Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.505925Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.506075Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.506095Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.506121Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(688)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.506142Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.506179Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.506198Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.506213Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.506235Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(805)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.506259Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(805)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.506323Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 805 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.506361Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.506374Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.506391Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.50641Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.506424Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.506449Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.506466Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.506545Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.535773Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536038Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536064Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536099Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536126Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536316Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536343Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536357Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536391Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.53642Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536525Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536554Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536567Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536593Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536606Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536655Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536668Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536702Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536719Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536745Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536757Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536767Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536617Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536797Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.53682Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.53684Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536941Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.53678Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.536988Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.537036Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.537063Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.537073Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.537089Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.537103Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.537115Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.537131Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.537143Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.537169Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542506Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542656Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542673Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542696Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(686)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542714Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542753Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542769Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542781Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542799Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(803)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542817Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(803)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542885Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 803 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542908Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542919Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542935Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542951Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542962Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542983Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.542998Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.543085Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.556731Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.556835Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.556854Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.556877Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.556897Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.557153Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.557173Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.557185Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.557207Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.557231Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.557288Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.557316Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.557328Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.557347Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.557366Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.557379Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.557403Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.557418Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.55746Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.561946Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.561999Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562017Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562035Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(674)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562055Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562082Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562098Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562112Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.56213Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(791)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.56215Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(791)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562187Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 791 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562214Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562226Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562229Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562244Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562311Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562336Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562364Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562335Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(684)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.5624Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.56243Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562469Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562491Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562533Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562468Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562591Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562615Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562662Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(801)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562686Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(801)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562716Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 801 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562745Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562758Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562774Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562801Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562817Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562831Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562852Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.562886Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.565043Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.565067Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.565077Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.565088Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.565099Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.565119Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.565131Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.56514Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.565153Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.565167Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.565199Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.565222Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.565235Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.56525Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.565268Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.565288Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.565303Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.565318Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.565348Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566041Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566058Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566073Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(688))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566083Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566093Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 688","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566099Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566105Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":688}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566113Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566127Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566131Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566139Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566149Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566162Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(691))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.56615Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566184Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566178Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566215Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566164Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566236Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566228Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(688))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566251Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566236Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566199Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.56626Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566205Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.56626Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566277Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566356Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566271Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(714))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566319Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 688","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566373Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566403Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566433Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.56632Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 819 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566256Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(688))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566459Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566478Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(695))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566381Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566406Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(690))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566299Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566511Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566433Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":688}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566514Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(689))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566446Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566486Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 714","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566542Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"flushed 819 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.56663Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566636Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":714}
+{"v":0,"name":"sugar","msg":"sized write, len = 695","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566546Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"flushed 845 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566678Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.56664Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566679Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":695,"self.len":131}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566611Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566541Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566591Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566701Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 689","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566819Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566822Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566863Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":689,"self.len":131}
+{"v":0,"name":"sugar","msg":"sized write, len = 690","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566822Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"flushed 826 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566828Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed 820 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566919Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566878Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566922Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566895Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":690,"self.len":131}
+{"v":0,"name":"sugar","msg":"sized write, len = 691","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.5663Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 688","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.56661Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566988Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":691}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566992Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":131,"buf.len":688}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566932Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.566949Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 821 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.56701Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed 822 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.567027Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.567046Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed 819 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.56703Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.567028Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.567029Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.567074Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.567084Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.567092Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.5671Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.567109Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.567123Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.567137Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.567142Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.56715Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.567159Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.567164Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.567171Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.567179Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.567194Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.613903Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.614003Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.614017Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.614034Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(682)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.614049Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.614078Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.61409Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.614099Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.614116Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(799)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.614133Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(799)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.614177Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 799 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.614194Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.614201Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.614212Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.614225Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.614233Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.614245Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.614257Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.614293Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615282Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615311Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615321Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615338Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(688)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615349Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615364Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615373Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.61538Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615389Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(805)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615399Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(805)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615419Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 805 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615434Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615441Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615439Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615452Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615483Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615495Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615489Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615506Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.61551Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615519Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615525Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615533Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615536Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615546Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615552Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615563Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615554Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615573Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.6156Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615618Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615625Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615636Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615647Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615655Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615663Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.61567Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.615693Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620115Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620164Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620176Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.62019Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620204Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620224Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620236Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620245Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620259Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620271Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620299Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620317Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620326Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620338Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620351Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620354Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620382Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.62042Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620431Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620439Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620462Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620451Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620501Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620501Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620548Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620562Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620572Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620585Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620597Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620624Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620654Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620663Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620675Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620696Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620706Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620728Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620739Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.620766Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.64442Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.644846Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.644876Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.644908Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(686)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.644929Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.644984Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.645006Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.645018Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.645048Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(803)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.645075Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(803)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.645157Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 803 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.645189Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.6452Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.645221Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.645241Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.645255Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.645284Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.645306Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.645371Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.6477Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.647746Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.647761Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.647776Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.647793Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.647818Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.647832Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.647844Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.647858Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.647874Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.64792Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.647948Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.64796Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.647976Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.647993Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.648007Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.648024Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.648038Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.648073Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.684707Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.684891Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.684926Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.684967Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.685004Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.685074Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.685107Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.685131Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.685169Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.685208Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.685313Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.685364Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.685387Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.685422Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.685456Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.685481Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.685505Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.685552Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.685662Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.735608Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.735818Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.735841Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.735872Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(686)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.735903Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.735953Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.735977Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.73599Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.736018Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(803)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.736052Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(803)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.736143Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 803 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.736194Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.736217Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.736242Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.736277Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.736293Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.736314Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.736334Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.736431Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.777676Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.777908Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.777946Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.777995Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(682)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.778041Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.778118Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.778155Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.778179Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.778226Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(799)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.778269Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(799)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.778388Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 799 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.778441Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.778466Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.778502Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.778546Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.778578Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.778612Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.778645Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.778751Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.794942Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.795267Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.795294Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.795322Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(684)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.795347Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.795389Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.795411Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.79591Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.795938Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(801)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.795968Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(801)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796026Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 801 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796104Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796121Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796144Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796252Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796274Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796301Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796323Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796381Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796407Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796438Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796456Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796477Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796529Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796566Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796584Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796595Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796606Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796618Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796639Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796661Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796672Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796685Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796698Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796709Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796723Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796741Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.796788Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.800183Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.800302Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.800318Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.800336Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.800353Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.800381Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.800646Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.800665Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.80068Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.800697Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.800736Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.80076Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.800771Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.800785Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.8008Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.800811Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.800828Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.800841Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.80088Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808052Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808263Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808288Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808307Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(684)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808323Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808399Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808419Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808482Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808501Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(801)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.80852Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(801)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808561Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 801 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808585Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808595Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808609Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808624Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808636Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808651Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.80867Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808654Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808709Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808718Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808502Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.80875Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808763Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808776Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808789Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808806Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808818Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808731Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808843Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808862Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808879Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.80889Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808903Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808828Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808915Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808929Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808939Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808951Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808971Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808974Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.808994Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809006Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809009Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809019Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809031Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809049Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809062Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809074Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809085Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809092Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809108Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809113Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.80912Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809176Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809188Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809215Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.80976Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809793Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809805Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809818Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809833Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809854Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809866Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809876Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809887Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.8099Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809932Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809951Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809961Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809974Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.809992Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.810008Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.810021Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.810032Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.810063Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.811289Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.811364Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.811377Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.811392Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.811407Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.811504Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.811519Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.811529Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.811543Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.811556Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.811594Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.811614Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.811626Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812084Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812112Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812222Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.81224Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812257Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812275Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812486Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812499Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.81251Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812523Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.81255Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812571Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812582Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812596Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.81261Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812621Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812638Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812651Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812688Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812711Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812726Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812736Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812747Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812757Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.812783Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816577Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816616Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816726Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816726Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816745Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816754Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816766Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816769Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(674)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816787Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816834Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816851Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816862Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(682)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816796Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816881Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816904Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(791)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816917Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816918Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816942Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(791)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816973Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 791 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.81702Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.816643Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817026Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817082Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817089Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817098Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817111Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817127Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(799)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817062Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817142Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(799)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817161Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 799 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817185Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817197Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817211Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817225Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817236Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817247Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817257Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817186Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.81729Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817102Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817317Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(678)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817331Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817347Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817358Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817368Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817378Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(795)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.81739Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(795)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817412Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 795 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817434Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817444Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817456Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817471Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817487Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817498Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817509Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.817536Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.818746Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.81881Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.818825Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.818841Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.818874Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.818901Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.818925Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.818936Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.81895Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.818964Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.819006Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.819032Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.819043Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.819057Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.819071Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.819082Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.8191Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.819114Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.819659Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.819682Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.819713Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.819724Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.819738Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(676)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.819752Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.819793Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.819807Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.820018Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.82003Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(793)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.820044Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(793)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.820069Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 793 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.820098Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.820109Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.820124Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.820139Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.82015Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.820165Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.820178Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.820206Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877517Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1369 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877617Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877635Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877654Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1369}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(680)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877674Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877709Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 13 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877724Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (1486 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877735Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1486)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877753Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(797)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.87777Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(797)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877821Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 797 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877844Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877853Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877869Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877886Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877897Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877912Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877926Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.877972Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.89126Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891288Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.89132Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891333Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891341Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891324Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.89136Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891291Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891472Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891294Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.8913Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891499Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891353Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891553Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891344Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891632Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891373Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891458Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891675Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891608Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891529Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891775Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.89152Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891783Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891763Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891752Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891657Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891888Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891811Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891787Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891955Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891553Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891984Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891999Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892026Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892041Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891902Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891942Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892172Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892228Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.891987Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892287Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892306Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892047Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892344Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892361Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.89237Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892398Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892318Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892328Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892477Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892424Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892302Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892533Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892549Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892568Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892535Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892605Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.89255Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892666Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892378Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892441Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.89257Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892647Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892735Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892877Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892886Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892755Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892958Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892967Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892987Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.89301Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892948Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892693Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893047Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892931Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.892886Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893012Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893067Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893055Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893129Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893076Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893189Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893191Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893214Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893246Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.89312Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893283Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893309Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893064Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893353Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893312Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.8934Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893342Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893272Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893418Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893423Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893463Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893028Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893462Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893401Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893543Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893081Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893609Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893619Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893524Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893644Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893678Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893697Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893491Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893745Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893508Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893815Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893487Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.89386Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893943Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893934Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893754Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894024Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894059Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894083Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894102Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893574Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893709Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894155Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894173Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894186Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894181Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894197Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894201Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894263Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894123Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893958Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894213Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894388Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894263Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894319Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894112Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894393Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894463Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894383Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894516Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894496Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894525Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.893806Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894538Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894605Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894429Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894452Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894574Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894648Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894724Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894696Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894718Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894494Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894779Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894813Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894825Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894836Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894563Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894762Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894884Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894908Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894925Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894967Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894665Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895085Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895168Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894596Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894841Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.89522Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895212Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894862Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895277Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.894746Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895323Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895342Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895188Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895375Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895394Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895232Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.89543Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895473Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895397Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895575Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895608Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895348Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895684Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895704Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895717Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.89575Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895766Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895762Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895779Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895796Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895825Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895176Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895631Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895876Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895802Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895826Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895876Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.8959Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895251Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"pool closed, canceling idle interval","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895996Z","target":"hyper::client::pool","line":758,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895619Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.896026Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client tx closed","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895195Z","target":"hyper::proto::h1::dispatch","line":590,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/dispatch.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.896108Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.896165Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.896239Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.89604Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.896045Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.896311Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.89628Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_read()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.896128Z","target":"hyper::proto::h1::conn","line":950,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.896383Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.896389Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.896368Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.89645Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.896451Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.896504Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"State::close_write()","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.895991Z","target":"hyper::proto::h1::conn","line":956,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.896433Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Closed, writing: Closed, keep_alive: Disabled }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.896565Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"shut down IO complete","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.896673Z","target":"hyper::proto::h1::conn","line":739,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Cache exists, loading...","level":30,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.909752Z","target":"sugar_cli::cache","line":157,"file":"src/cache.rs"}
+{"v":0,"name":"sugar","msg":"Candy machine address is empty, creating new candy machine...","level":30,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.925849Z","target":"sugar_cli::deploy::process","line":117,"file":"src/deploy/process.rs"}
+{"v":0,"name":"sugar","msg":"Initializing candy machine with account size of: 13219 and address of: 4mFtBjuMQRHGid5qCGPqrgZ81tA8zBh9CVYixhCsEUvT","level":30,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.927416Z","target":"sugar_cli::deploy::initialize","line":122,"file":"src/deploy/initialize.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.927577Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.9276Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.927642Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:34.930267Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.064247Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.597875Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.598018Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.598234Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.598257Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.598302Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(86))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.598328Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.598347Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 86","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.598363Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.59838Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":86,"self.len":113}
+{"v":0,"name":"sugar","msg":"flushed 199 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.598868Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.598886Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.730115Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 424 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.730238Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.730403Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.730436Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":424}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.730457Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.730489Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.730506Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (43 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.730523Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(43)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.730543Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.730556Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.730577Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.730598Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.730612Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.730638Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.730655Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.730724Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.731531Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.731572Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.731659Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.733022Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:35.851472Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.265007Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.265042Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.265079Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.265101Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.265139Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.26516Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.265191Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.265209Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.265221Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":60,"self.len":113}
+{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.265857Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.265882Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.383778Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.38402Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384052Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384092Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384122Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384181Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384206Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384222Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384256Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384272Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.3843Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384336Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384352Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384401Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384425Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384548Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384825Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384847Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384887Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(177))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384909Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384932Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 177","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384949Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.384967Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":177,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 291 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.385073Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.38509Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.386554Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.503465Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 616 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.503684Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.503713Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.503749Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":616}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.503778Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.503835Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.503862Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (234 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.50388Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(234)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.503914Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.503934Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.503968Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.50401Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.50403Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.504075Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.504106Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.50424Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.507169Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.507237Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.507324Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.511901Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:36.643272Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.104246Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.104354Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.104404Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.104431Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.104487Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.104519Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.104545Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.104568Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.104583Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":60}
+{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.104688Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.104704Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.350391Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.350488Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.350506Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.350526Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.350544Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.350574Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.350589Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.3506Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.350618Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.350628Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.350647Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.350667Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.351005Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.351034Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.35105Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.35111Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.351196Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.351213Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.351237Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(92))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.351252Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.35128Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 92","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.351304Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.351324Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":92,"self.len":113}
+{"v":0,"name":"sugar","msg":"flushed 205 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.351505Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.351519Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.352693Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.482084Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 571 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.482417Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.482443Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.482469Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":571}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.482489Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.482525Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.482546Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (189 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.482562Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(189)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.482588Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.482611Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.48266Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.482695Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.48271Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.482751Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.482769Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.484136Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.484202Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.484322Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(869))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.484347Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.484369Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 869","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.484386Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.484401Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":869}
+{"v":0,"name":"sugar","msg":"flushed 983 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.484857Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.484876Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.658313Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 507 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.658484Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.658507Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.658536Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":507}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.658561Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.658609Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.658629Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (125 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.658642Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(125)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.658671Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.658687Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.658711Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.65874Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.658753Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.658795Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.65882Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.659279Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.6593Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.659757Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.659792Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.659814Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.65983Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.659845Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":160,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.660113Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.66013Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.863674Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 484 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.863968Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.863991Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864012Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":484}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.86403Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864057Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.86412Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (102 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864133Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(102)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864151Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864161Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864183Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864205Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864217Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864239Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864253Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864455Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864474Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864499Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864517Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864531Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864544Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864555Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":137,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864816Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:37.864831Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.067185Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 482 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.067258Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.067539Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.067563Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":482}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.06758Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.067608Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.067623Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (100 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.067634Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(100)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.067652Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.067663Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.067679Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.067699Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.067711Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.067735Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.067748Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.067885Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.571491Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.571552Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.571598Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.571619Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.571638Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.571654Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.571666Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":160}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.571904Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.571925Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.703636Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 484 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.703938Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.70396Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.703983Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":484}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.70401Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.704037Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.704052Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (102 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.704063Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(102)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.704081Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.704092Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.704108Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.704128Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.704144Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.704202Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.704219Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.70439Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.70464Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.704656Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.70468Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.704696Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.704711Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.704723Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.704735Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":137}
+{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.704852Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.704865Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.838235Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 482 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.838445Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.838468Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.838497Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":482}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.838522Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.838572Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.838594Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (100 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.838608Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(100)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.838635Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.838649Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.83867Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.838704Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.838717Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.838758Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.838775Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:38.838966Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.34533Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.345499Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.34562Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.345657Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.345689Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.345718Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.345736Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":160}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.346356Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.346393Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.479807Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 484 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.480172Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.480198Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.480228Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":484}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.480254Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.480298Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.480319Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (102 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.480331Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(102)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.480358Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.480373Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.480398Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.480431Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.480443Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.480579Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.480598Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.48067Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.480834Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.480875Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.481233Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.481257Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.481276Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.481292Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.481307Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":137}
+{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.481541Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.481556Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.612319Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 482 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.612535Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.612559Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.61259Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":482}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.612617Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.612675Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.612698Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (100 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.612712Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(100)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.612746Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.612763Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.612789Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.612822Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.612836Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.612886Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.612906Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:39.613016Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.116358Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.11673Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.116827Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.117017Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.117462Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.117494Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.117514Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":160,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.117855Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.117895Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.320648Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 484 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.322346Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.32238Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.322408Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":484}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.32243Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.322478Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.322499Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (102 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.322512Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(102)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.322539Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.322553Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.322579Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.322612Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.322624Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.322658Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.322686Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.322963Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.32299Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.323052Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(138))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.323073Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.323092Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 138","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.323106Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.32312Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":138}
+{"v":0,"name":"sugar","msg":"flushed 252 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.323388Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.323402Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.454679Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 483 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.454925Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.454953Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.454985Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":483}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.45501Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.455064Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.455089Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (101 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.455104Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(101)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.455133Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.455149Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.455176Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.455205Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.45522Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.455263Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.455283Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.455655Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.960308Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.960342Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.960369Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(161))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.960381Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.960392Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 161","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.960401Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.960408Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":161}
+{"v":0,"name":"sugar","msg":"flushed 275 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.960512Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:40.960522Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.099733Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 582 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.099964Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.099987Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.100016Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":582}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.10004Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.100087Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.100148Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (200 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.10017Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(200)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.100201Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.100237Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.10027Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.1003Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.100313Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.100355Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.100375Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.100692Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.10076Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.100779Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.10081Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(138))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.10083Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.10085Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 138","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.100864Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.100878Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":138}
+{"v":0,"name":"sugar","msg":"flushed 252 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.1012Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.101219Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.231697Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 483 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.231927Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.231957Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.231993Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":483}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.23202Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.232081Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.232108Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (101 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.232122Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(101)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.232153Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.23217Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.232199Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.232238Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.232252Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.232306Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.232327Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.232538Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.738628Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.738781Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.739043Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(161))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.73908Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.739118Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 161","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.739143Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.73916Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":161}
+{"v":0,"name":"sugar","msg":"flushed 275 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.739745Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.739768Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.870607Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 582 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.870838Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.871179Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.87123Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":582}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.871265Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.871324Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.871355Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (200 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.871376Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(200)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.871419Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.87144Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.871474Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.87154Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.871576Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.87175Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.871781Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Candy machine initialized with sig: 3EnbHzGJtGEAJTKJe8dC6X9EkGDLh1EwcVWb2Gqu1UWGZiB7ip3sw34Uxt6eb7KpHPibmVYh3DT3mk55aCHY8iTW","level":30,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.873425Z","target":"sugar_cli::deploy::process","line":161,"file":"src/deploy/process.rs"}
+{"v":0,"name":"sugar","msg":"Candy machine created with address: 4mFtBjuMQRHGid5qCGPqrgZ81tA8zBh9CVYixhCsEUvT","level":30,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.873487Z","target":"sugar_cli::deploy::process","line":162,"file":"src/deploy/process.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.901009Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.901073Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.901208Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:41.903495Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.033873Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.501231Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.501316Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.501592Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.501631Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.501713Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(83))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.501755Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.501788Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 83","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.501819Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.501837Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":83,"self.len":113}
+{"v":0,"name":"sugar","msg":"flushed 196 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.502611Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.502644Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.634978Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 423 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.63523Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.635256Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.63529Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":423}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.635312Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.63536Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.635383Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (42 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.635397Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(42)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.635427Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.635442Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.635468Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.635506Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.635519Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.635566Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.635589Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.63661Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.63667Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.638612Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.638707Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.63881Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.641077Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:42.775509Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.244406Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.244574Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.244658Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.244695Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.244775Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.244834Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.244872Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.244904Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.245559Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":60}
+{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.24587Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.245897Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.37779Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378021Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378043Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378068Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378087Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378118Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378136Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378149Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378168Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.37818Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378204Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378225Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378239Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378271Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378289Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378334Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378528Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378547Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378573Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(92))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378591Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378607Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 92","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378621Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378634Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":92}
+{"v":0,"name":"sugar","msg":"flushed 205 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378764Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.378781Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.508995Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 571 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.509202Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.509229Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.50926Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":571}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.509285Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.509336Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.509358Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (189 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.50937Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(189)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.509398Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.509411Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.509436Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.50947Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.509482Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.509523Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.509541Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.510123Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.510376Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.51043Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(1465))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.510455Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.510478Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 1465","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.510496Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.510513Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":115,"buf.len":1465}
+{"v":0,"name":"sugar","msg":"flushed 1580 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.510928Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.51095Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644157Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 506 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644266Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644283Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644303Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":506}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644337Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644366Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644384Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (124 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644397Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(124)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644416Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644429Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644452Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644508Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644528Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644555Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644573Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644669Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644923Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.644943Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.645074Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(159))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.645095Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.645113Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 159","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.645128Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.645142Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":159}
+{"v":0,"name":"sugar","msg":"flushed 273 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.646068Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.646125Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.776648Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 484 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.77694Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.776983Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.777032Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":484}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.777073Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.777139Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.777177Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (102 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.777203Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(102)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.777249Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.777275Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.777315Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.777369Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.777396Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.777459Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.777492Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.779689Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.77979Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.779845Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.779869Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.779893Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.77991Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.779926Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":137,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.780759Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.780795Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.911392Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 482 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.9115Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.911521Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.911543Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":482}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.911563Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.911593Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.911615Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (100 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.911691Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(100)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.911828Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.911851Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.911875Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.911897Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.911912Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.911938Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.911954Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:43.916494Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.418632Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.4187Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.418744Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(159))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.418768Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.418786Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 159","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.418804Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.418817Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":159}
+{"v":0,"name":"sugar","msg":"flushed 273 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.419368Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.419395Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.555962Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 581 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.556169Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.556195Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.556226Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":581}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.556251Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.556301Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.556327Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (199 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.556341Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(199)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.556369Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.556384Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.556408Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.556444Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.556459Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.556497Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.556519Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.55661Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Num of config line chunks: 5","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.587136Z","target":"sugar_cli::deploy::config_lines","line":104,"file":"src/deploy/config_lines.rs"}
+{"v":0,"name":"sugar","msg":"Uploading config lines in chunks...","level":30,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.587223Z","target":"sugar_cli::deploy::config_lines","line":105,"file":"src/deploy/config_lines.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.589955Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.589956Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.590021Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.589955Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.590149Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.590031Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.590053Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.590179Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.590125Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.59023Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.590295Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.59032Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.590362Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.59042Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.590419Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.599267Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.600958Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.602205Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.603153Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.603185Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.719111Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.730243Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.732604Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.732725Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:44.732764Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.15361Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.153781Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.153864Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.153905Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.15403Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.154076Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.154115Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.154147Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.154165Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":60}
+{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.154448Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.154466Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.192152Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.192246Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.192326Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.192365Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.192593Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.192635Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.192661Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.192684Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.192702Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":60,"self.len":113}
+{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.195725Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.195817Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.198853Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.198923Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.198974Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.198997Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.19906Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.199096Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.199119Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.199137Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.19915Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":60}
+{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.199239Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.199253Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.210311Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.210448Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.210525Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.210569Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.210665Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.210727Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.210768Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.210804Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.210829Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":60,"self.len":113}
+{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.211029Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.211071Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.214831Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.21492Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.215018Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.215056Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.215124Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.21517Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.215205Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.215236Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.21526Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":60}
+{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.215563Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.215594Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.273282Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.273473Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.273496Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.273528Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.273551Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.273604Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.273625Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.273637Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.273667Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.273682Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.273739Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.273768Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.273781Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.2739Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.274045Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.27413Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.274292Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.274312Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.274345Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(92))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.274363Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.274382Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 92","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.274396Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.274408Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":92,"self.len":113}
+{"v":0,"name":"sugar","msg":"flushed 205 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.274525Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.274539Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.274571Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.324412Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.324703Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.324727Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.324756Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.324778Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.324818Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.324837Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.32485Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.324878Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.324899Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.324922Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.324952Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.324964Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.325002Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.325022Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.325194Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.325329Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.32535Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.325383Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(92))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.3254Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.325417Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 92","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.325431Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.325444Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":92,"self.len":113}
+{"v":0,"name":"sugar","msg":"flushed 205 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.325592Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.325606Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.327047Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.329671Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.329725Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.32974Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.32976Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.329776Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.3298Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.329814Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.329825Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.329841Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.329851Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.329866Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.329886Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.329897Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.329918Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.329931Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.329991Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.330092Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.330107Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.330128Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(92))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.330143Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.330156Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 92","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.330168Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.330179Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":92}
+{"v":0,"name":"sugar","msg":"flushed 205 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.330248Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.330262Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.332303Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341006Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341149Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341174Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341203Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341227Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341268Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.34129Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341308Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341342Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341358Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341383Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341413Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.34143Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341465Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341487Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341691Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341745Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341802Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341826Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341859Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(92))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341885Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341906Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 92","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341925Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.341943Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":92}
+{"v":0,"name":"sugar","msg":"flushed 205 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.34446Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.34595Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346013Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346066Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346079Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346096Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346112Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346135Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346148Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346159Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346174Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346185Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.3462Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346216Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346227Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346247Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346261Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346318Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346407Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346425Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346449Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(92))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346466Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346482Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 92","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346495Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346507Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":92,"self.len":113}
+{"v":0,"name":"sugar","msg":"flushed 205 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346624Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.346646Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.347846Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.392493Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 571 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.394752Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.394805Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.394825Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":571}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.394843Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.39487Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.394886Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (189 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.3949Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(189)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.394919Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.39493Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.394947Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.394966Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.394978Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.395002Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.395016Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.395505Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.395871Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.39589Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.395917Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(1693))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.395934Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.39595Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 1693","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.395963Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.395974Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":115,"buf.len":1693}
+{"v":0,"name":"sugar","msg":"flushed 1808 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.396193Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.396212Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.45838Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 571 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.458538Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.458569Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.458605Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":571}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.458635Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.458692Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.45872Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (189 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.45874Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(189)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.458775Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.458795Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.458827Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.458864Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.458883Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.458932Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.458956Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.45907Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.459377Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.459396Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.459434Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(1289))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.459451Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.459468Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 1289","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.459482Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.459495Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":115,"buf.len":1289}
+{"v":0,"name":"sugar","msg":"flushed 1404 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.459703Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.459722Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462157Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 571 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462208Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462229Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.46225Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":571}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462272Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.4623Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462319Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (189 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462335Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(189)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.46236Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462375Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462399Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462421Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462438Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462463Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.46248Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462556Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462816Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462837Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462863Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(1789))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462885Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462904Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 1789","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462921Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.462936Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":115,"buf.len":1789}
+{"v":0,"name":"sugar","msg":"flushed 1904 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.463029Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.46305Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.474297Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 571 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.474475Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.474497Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.47453Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":571}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.474551Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.474601Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.474622Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (189 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.474634Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(189)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.474663Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.474678Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.474708Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.474739Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.474753Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.474789Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.474809Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.474894Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.47523Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.475251Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.475284Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(1701))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.475302Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.47532Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 1701","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.475334Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.475348Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":1701,"self.len":115}
+{"v":0,"name":"sugar","msg":"flushed 1816 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.475473Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.475487Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.476624Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 571 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.476676Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.476701Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.476728Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":571}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.476755Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.476788Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.476812Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (189 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.476832Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(189)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.476856Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.476883Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.476908Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.476935Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.476959Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.476988Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.477012Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.477099Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.477409Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.477439Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.477476Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(1725))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.47752Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.477546Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 1725","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.477569Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.47759Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":1725,"self.len":115}
+{"v":0,"name":"sugar","msg":"flushed 1840 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.477742Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.477781Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.515881Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 507 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516065Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516088Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516118Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":507}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.51614Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516183Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516205Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (125 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516218Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(125)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516248Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516262Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516283Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516312Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516326Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516363Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516381Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516472Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516648Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516668Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516704Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516721Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.51674Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516754Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516768Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":160,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516929Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.516943Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.592384Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 507 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.592595Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.592621Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.592658Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":507}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.592684Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.592735Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.592759Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (125 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.592773Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(125)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.592803Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.592817Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.592851Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.592887Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.5929Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.592942Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.592961Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.59421Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.594266Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.594325Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.594355Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.594385Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.594407Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.595083Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":160}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.59705Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 506 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597165Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597219Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.59724Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":506}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597256Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597284Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597412Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597432Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597458Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (124 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597475Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(124)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597493Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597503Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597528Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597546Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597557Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597581Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597595Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597827Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597843Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597866Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(159))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597882Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597896Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 159","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597908Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.597919Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":159,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 273 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.598363Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.598378Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.60678Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 507 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.606898Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.606915Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.606936Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":507}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.606954Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.606986Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.607002Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (125 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.607014Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(125)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.607033Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.607044Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.607062Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.607084Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.607095Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.607164Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.607187Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.607697Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.607719Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.607746Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.607763Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.607778Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.60779Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.607802Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":160,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.607971Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.607985Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614063Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 506 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.61423Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614247Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614269Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":506}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614286Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614318Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614335Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (124 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614347Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(124)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614366Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614378Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614396Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614418Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.61443Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614457Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614473Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.61473Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614752Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614778Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(159))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614795Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614811Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 159","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614824Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.614836Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":159,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 273 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.615218Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.615233Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.635474Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 484 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.635653Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.635682Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.635716Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":484}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.635745Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.6358Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.63583Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (102 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.63585Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(102)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.635882Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.635901Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.635932Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.635969Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.635987Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.636026Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.63605Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.636792Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.636829Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.636867Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.636885Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.636902Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.636935Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.636948Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":137}
+{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.637084Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.637098Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.728364Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 581 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.728962Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.72899Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729029Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":581}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729051Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729106Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729129Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (199 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729142Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(199)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729173Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729187Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729212Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729246Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729259Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729303Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729323Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729514Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 581 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729546Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729558Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729572Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":581}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729585Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729603Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729614Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (199 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729623Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(199)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729635Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729644Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729658Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729672Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729685Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729709Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.729723Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.730017Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.730042Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.730087Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.730105Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.730127Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.730143Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.73016Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":137,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.730503Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.730539Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.730919Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.730989Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.731016Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.731031Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.731053Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.731066Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.731076Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":137}
+{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.731172Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.731186Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.738454Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 484 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.738551Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.738573Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.738591Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":484}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.738607Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.738633Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.738646Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (102 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.738657Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(102)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.738672Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.738971Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.738996Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.739017Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.739029Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.739051Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.739065Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.739121Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.73921Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.739239Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.739266Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.739438Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.739454Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.739467Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.739478Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":137,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.739606Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.73962Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.74714Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 484 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.747318Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.74734Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.747954Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":484}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.747983Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.75262Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.752745Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (102 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.752762Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(102)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.752785Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.752797Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.752949Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.752974Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.752986Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.753036Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.753051Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.753352Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.753371Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.753402Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.75342Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.753436Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.753448Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.753466Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":137,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.753918Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.753939Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.756585Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 482 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.756672Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.756687Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.756703Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":482}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.756719Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.756749Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.756763Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (100 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.756774Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(100)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.75679Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.756801Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.756816Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.756832Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.756843Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.756863Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.756876Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.756947Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863239Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 482 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863522Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863685Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863719Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863729Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":482}
+{"v":0,"name":"sugar","msg":"received 482 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863753Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863771Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863785Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":482}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863799Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863846Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863866Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (100 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863878Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(100)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863903Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863915Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863937Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863963Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863983Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.864023Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.864042Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.863756Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.864179Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.864191Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (100 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.864201Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(100)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.864213Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.864222Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.864239Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.864253Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.864264Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.864279Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.86429Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.864681Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.864707Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.874545Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 482 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.874662Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.874681Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.874703Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":482}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.874723Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.874756Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.874773Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (100 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.874784Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(100)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.874809Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.874819Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.874837Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.87486Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.874871Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.874904Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.874917Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.875012Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.88497Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 482 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.885032Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.885047Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.885063Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":482}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.885078Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.885099Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.885112Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (100 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.885122Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(100)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.885136Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.885146Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.885161Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.885177Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.885188Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.885206Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.885219Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:45.885307Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.262101Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.262244Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.262333Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.262367Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.262397Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.262422Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.262438Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":160}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.262944Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.262969Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.368923Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.369053Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.369153Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(159))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.369193Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.369224Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 159","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.369252Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.369271Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":159,"self.len":114}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.371281Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.371345Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.371381Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.371493Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.371526Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.371558Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.371573Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":160}
+{"v":0,"name":"sugar","msg":"flushed 273 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.371668Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.371709Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.371762Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.371778Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.376668Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.376741Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.377002Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.377024Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.377042Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.377058Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.37707Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":160}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.377802Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.377823Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.384215Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 581 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.384362Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.384388Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.384417Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":581}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.384443Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.384493Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.384517Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (199 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.384536Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(199)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.384568Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.384589Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.384616Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.384648Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.384668Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.384708Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.384729Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.384841Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.391763Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.391866Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.391977Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(159))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.39205Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.392079Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 159","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.392101Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.392119Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":159,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 273 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.393301Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.393371Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.503284Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 581 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.503651Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.503681Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.503717Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":581}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.503743Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.50381Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.503837Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (199 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.503851Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(199)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.503888Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.504833Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.504948Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.50499Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.504973Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 581 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.505019Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.505029Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.505061Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.505078Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.505034Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.505133Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":581}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.505149Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.505168Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.505181Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (199 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.505192Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(199)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.505211Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.505221Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.505235Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.505248Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.505259Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.505357Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.50537Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.508276Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 581 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.508431Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.508448Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.508468Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":581}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.508485Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.508516Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.508531Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (199 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.508542Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(199)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.508561Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.508572Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.508591Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.508613Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.508625Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.508846Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.508864Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.523498Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 581 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.523587Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.523606Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.523627Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":581}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.523647Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.523676Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.523695Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (199 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.523709Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(199)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.523778Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.523795Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.523814Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.523837Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.523853Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.523883Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.523901Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.523972Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Cache exists, loading...","level":30,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.549378Z","target":"sugar_cli::cache","line":157,"file":"src/cache.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.56571Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.565737Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.565782Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.567417Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:46.698296Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.201811Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.201903Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.202001Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.202038Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.202125Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.202164Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.202199Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.202229Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.202246Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":60}
+{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.205731Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.205759Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.391342Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.391443Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.39146Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.391481Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.391498Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.391526Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.391626Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.391638Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.391655Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.391666Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.391684Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.391778Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.391826Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.391867Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.391884Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.391943Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.392044Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.39206Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.392084Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(177))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.3921Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.392115Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 177","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.392128Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.392139Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":177}
+{"v":0,"name":"sugar","msg":"flushed 291 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.392326Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.392349Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.393512Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.591527Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1460 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.591801Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.59183Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.59187Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1460}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(383)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.591901Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.591952Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.591977Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (3598 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.591991Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(3598)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.592034Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(2521)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.592071Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(2521)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.592255Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 1460 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.592298Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(1061)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.59232Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1061)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.592352Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 1061 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.592435Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.59245Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.592474Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.5925Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.592512Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.592538Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.592562Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.601446Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.601516Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.601585Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.602628Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:47.733805Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.308254Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.308377Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.30844Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.308479Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.308546Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.308584Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.308614Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.308638Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.308654Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":60,"self.len":113}
+{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.308975Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.308992Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.439678Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.439822Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.43984Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.43986Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.439877Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.439903Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.43992Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.439931Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.439948Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.43996Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.439976Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.439997Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.440009Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.440033Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.440048Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.441111Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.441159Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.441195Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(177))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.441215Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.441232Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 177","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.441505Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.441539Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":177}
+{"v":0,"name":"sugar","msg":"flushed 291 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.4417Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.441717Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.441789Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.614419Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 719 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.614673Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.614703Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.614735Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":719}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.614763Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.614812Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.614835Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (337 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.614848Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(337)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.614883Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.614899Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.614923Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.614961Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.614974Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.615021Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.615039Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:48.615366Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:49.847074Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:49.847298Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:49.848109Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:49.850112Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:50.04889Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.319259Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.319356Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.319461Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.319501Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.319592Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(64))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.319641Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.319678Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 64","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.319707Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.319724Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":64}
+{"v":0,"name":"sugar","msg":"flushed 177 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.320432Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.32046Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.454546Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 462 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.454802Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.454833Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.454866Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":462}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.454892Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.45495Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.454978Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (81 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.454992Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(81)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.455029Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.455046Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.455073Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.455112Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.455126Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.455179Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.455203Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.45531Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":76255,"time":"2022-10-22T21:25:51.45533Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:01:58.801742Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:01:58.801757Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:01:58.801764Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:01:58.801812Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:01:59.99379Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:01:59.993882Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:01:59.993961Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.75.42.217:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:01:59.996654Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.75.42.217:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:00.222701Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.171562Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.171743Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.171846Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.1719Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.172026Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(64))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.172085Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.172138Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 64","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.172187Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.172216Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":64}
+{"v":0,"name":"sugar","msg":"flushed 177 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.172384Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.172414Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.460741Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 462 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.460955Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.460994Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.461047Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":462}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.461086Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.46116Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.461195Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (81 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.46122Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(81)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.461266Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.461291Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.461327Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.461375Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.461401Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.46146Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.461507Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":75582,"time":"2022-10-22T21:02:01.461656Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+"level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.405816Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.405846Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":507}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.405874Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.405916Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.405943Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (125 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.405964Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(125)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.405993Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.406014Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.406043Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.406075Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.4061Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.406136Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.406161Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.406302Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.406498Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.406529Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.406569Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.406599Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.406625Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.406648Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.40667Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":160}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.406805Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.406845Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.410597Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 507 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.410652Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.410678Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.410706Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":507}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.410737Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.410772Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.410797Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (125 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.410818Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(125)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.410842Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.410863Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.41089Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.410918Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.410942Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.410973Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.410996Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.411205Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.411238Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.411272Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.411302Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.411326Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.411373Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.411395Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":160}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.411504Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.411534Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.418778Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 507 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.418894Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.418921Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.418951Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":507}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.418982Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419022Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419049Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (125 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.41907Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(125)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419098Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419118Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419178Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419211Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419235Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419271Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419296Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419439Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419561Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419602Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419643Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419676Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419703Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419729Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419752Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":160,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419933Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.419963Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.43956Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 484 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.439662Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.439683Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.439705Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":484}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.439725Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.439756Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.439773Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (102 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.439785Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(102)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.439807Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.439818Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.439836Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.439858Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.439871Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.439897Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.439912Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.440009Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.440098Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.440118Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.440142Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.44016Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.440177Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.440192Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.440204Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":137}
+{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.44032Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.440336Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.529313Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 484 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.529518Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.529554Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.529595Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":484}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.529631Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.529682Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.529713Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (102 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.529737Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(102)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.529771Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.529793Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.529829Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.52987Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.529895Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.529947Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.529976Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.530083Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.530286Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.530322Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.530382Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.530416Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.530445Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.530471Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.530495Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":137,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.530629Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.530658Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.537356Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 484 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.537455Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.537483Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.537513Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":484}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.537542Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.537582Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.537608Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (102 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.53763Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(102)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.537657Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.537678Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.537708Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.537739Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.537764Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.537797Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.537822Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.537909Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.538024Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.538054Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.538091Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.538122Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.538149Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.538172Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.538195Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":137}
+{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.538301Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.538335Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.542238Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 484 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.542308Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.542337Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.542368Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":484}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.5424Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.54244Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.542466Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (102 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.542489Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(102)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.542515Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.542535Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.542562Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.542591Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.542615Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.54265Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.542677Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.54278Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.542872Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.542903Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.542943Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.542984Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.54301Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.543034Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.543056Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":137}
+{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.543156Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.543185Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.54984Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 484 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.549898Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.549928Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.549957Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":484}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.549986Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550021Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550045Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (102 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550066Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(102)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550091Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550111Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550144Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550173Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550197Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550231Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550255Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550346Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550438Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550468Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550502Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550532Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550557Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.55058Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550601Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":137}
+{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550698Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.550727Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.558291Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 482 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.558348Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.558374Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.558402Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":482}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.55843Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.558467Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.558491Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (100 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.558513Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(100)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.558537Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.558557Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.558582Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.55861Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.558634Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.558665Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.558688Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.558774Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.662534Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 482 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.662721Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.662754Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.662791Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":482}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.662833Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.66288Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.662909Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (100 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.662932Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(100)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.662963Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.662984Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.663018Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.663117Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.663154Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.663195Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.663222Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.663323Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.668523Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 482 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.668585Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.668612Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.668642Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":482}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.668672Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.668707Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.668733Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (100 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.668754Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(100)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.668778Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.668799Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.668824Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.668852Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.668875Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.668903Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.668927Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.66904Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.673664Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 482 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.673783Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.673811Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.673853Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":482}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.673886Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.673928Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.673956Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (100 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.673978Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(100)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.674005Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.674027Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.674054Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.674085Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.674109Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.674145Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.674169Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.674251Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.681142Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 482 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.681281Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.681311Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.681342Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":482}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.681374Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.681417Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.681445Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (100 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.68148Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(100)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.681509Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.68153Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.681558Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.681591Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.681615Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.681651Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.681677Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:11.68176Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.063405Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.063575Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.063697Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.063755Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.063804Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.063846Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.063877Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":160}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.064471Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.064509Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.168652Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.168791Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.168871Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.168915Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.168955Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.168987Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.169011Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":160}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.169521Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.169554Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.17387Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.173933Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.173987Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.174025Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.174054Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.17408Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.174102Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":160}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.174361Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.174392Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.176282Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.176315Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.176353Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.176384Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.17641Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.176433Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.176453Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":160,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.176589Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.176617Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.185597Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.185684Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.185745Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.185781Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.185812Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.185851Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.185947Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":160}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.185991Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 581 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.186065Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.186115Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.186148Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.186115Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.186199Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":581}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.186232Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.186284Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.186309Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (199 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.186332Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(199)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.186372Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.186396Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.18643Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.186463Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.186488Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.186528Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.186556Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.300904Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 581 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.301179Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.301223Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.301273Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":581}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.301318Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.301428Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.301484Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (199 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.301516Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(199)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.301571Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.3016Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.301651Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.301706Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.301735Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.301804Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.301838Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.302087Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.304796Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 581 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.304922Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.304941Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.305041Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":581}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.305064Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.305097Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.305115Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (199 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.305129Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(199)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.30515Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.305166Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.305187Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.305211Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.305225Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.305253Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.30527Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.307412Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 581 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.307502Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.307522Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.307537Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":581}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.30755Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.307571Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.307582Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (199 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.30759Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(199)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.307604Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.307612Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.307626Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.307641Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.30765Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.307669Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.307679Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.307759Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.317867Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 581 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.317972Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.317987Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.318003Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":581}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.318018Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.318042Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.318055Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (199 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.318066Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(199)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.318081Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.31809Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.318109Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.318125Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.318136Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.318159Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.318171Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.318248Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Cache exists, loading...","level":30,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.333472Z","target":"sugar_cli::cache","line":157,"file":"src/cache.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.34769Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.347735Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.347793Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.348952Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.467122Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.889618Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.889665Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.889689Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.889703Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.889728Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.889741Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.889753Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.889762Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.889769Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":60}
+{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.889852Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:12.889861Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.012238Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.012531Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.012576Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.012626Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.012681Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.012754Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.01279Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.012817Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.012866Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.012891Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.01293Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.013052Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.013071Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.01312Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.013145Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.013587Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.013613Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.013661Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(177))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.013684Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.013708Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 177","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.013727Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.013744Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":114,"buf.len":177}
+{"v":0,"name":"sugar","msg":"flushed 291 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.013902Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.01392Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.01396Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.259894Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 1460 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.260158Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.260186Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.260225Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":1460}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(383)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.260257Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.260315Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.260342Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (3610 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.260358Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(3610)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.26039Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(2533)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.260426Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(2533)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.260609Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 1460 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.260641Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Body(Length(1073)), writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.260661Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(1073)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.260708Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"received 1073 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.260842Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.260863Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.260914Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.260948Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.260963Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.26099Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.261016Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.261069Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.262908Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.263023Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.263112Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.265591Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.401709Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.974766Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.974855Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.974905Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.974939Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.974985Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.975012Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.975035Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.975054Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.975068Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":60}
+{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.975235Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:13.975252Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179307Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179353Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179364Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179376Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":465}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179388Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179405Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179414Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179421Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179433Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.17944Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179451Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179463Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179471Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179486Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179496Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179553Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.17961Z","target":"hyper::client::pool","line":612,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179627Z","target":"hyper::client::pool","line":250,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179644Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(177))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179657Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179667Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 177","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179676Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179683Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":177,"self.len":114}
+{"v":0,"name":"sugar","msg":"flushed 291 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179765Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.179775Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.1798Z","target":"hyper::client::pool","line":767,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.384559Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 719 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.384862Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.384909Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.384965Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":719}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.385006Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.385088Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.385128Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (337 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.385152Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(337)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.385201Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.385229Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.38527Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.385325Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.385351Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.385417Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.385448Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:14.386437Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:15.571049Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:15.571267Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:15.571901Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:15.574814Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:15.69739Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.112678Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.112836Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.112939Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.112992Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.113098Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(64))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.113159Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.113213Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 64","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.113257Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.113285Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","buf.len":64,"self.len":113}
+{"v":0,"name":"sugar","msg":"flushed 177 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.113455Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.113486Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.231494Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 462 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.231685Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.231717Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.231757Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":462}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.231795Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.231854Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.231885Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (81 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.231909Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(81)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.231956Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.231983Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.232021Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.232062Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.232088Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.232136Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":74340,"time":"2022-10-22T20:50:16.232169Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+:"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:55:59.883412Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:55:59.883436Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":719}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:55:59.883457Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:55:59.883488Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:55:59.883507Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (337 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:55:59.883521Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(337)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:55:59.883543Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:55:59.883556Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:55:59.883577Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:55:59.883603Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:55:59.883619Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:55:59.883646Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:55:59.883676Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:55:59.883753Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:01.042505Z","target":"hyper::client::pool","line":638,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:01.042758Z","target":"hyper::client::connect::http","line":278,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:01.043444Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/dns.rs"}
+{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:01.047142Z","target":"hyper::client::connect::http","line":537,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.171236Z","target":"hyper::client::connect::http","line":540,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/connect/http.rs"}
+{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.591955Z","target":"hyper::client::conn","line":952,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/conn.rs"}
+{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.592069Z","target":"hyper::client::client","line":487,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/client.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.592124Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.592151Z","target":"hyper::client::pool","line":680,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.592196Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(64))","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.592233Z","target":"hyper::proto::h1::role","line":1110,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.592256Z","target":"hyper::proto::h1::role","line":107,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"sized write, len = 64","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.592276Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/encode.rs"}
+{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.592292Z","target":"hyper::proto::h1::io","line":577,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs","self.len":113,"buf.len":64}
+{"v":0,"name":"sugar","msg":"flushed 177 bytes","level":20,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.592357Z","target":"hyper::proto::h1::io","line":342,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.592379Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.710887Z","target":"hyper::proto::h1::conn","line":191,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"received 462 bytes","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.710999Z","target":"hyper::proto::h1::io","line":269,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.711022Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.711045Z","target":"hyper::proto::h1::role","line":946,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs","bytes":462}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.711067Z","target":"hyper::proto::h1::role","line":955,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.711098Z","target":"hyper::proto::h1::role","line":75,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/role.rs"}
+{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.711118Z","target":"hyper::proto::h1::io","line":207,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/io.rs"}
+{"v":0,"name":"sugar","msg":"incoming body is content-length (81 bytes)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.711134Z","target":"hyper::proto::h1::conn","line":222,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"decode; state=Length(81)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.711156Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/decode.rs"}
+{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.711173Z","target":"hyper::proto::h1::conn","line":298,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.711198Z","target":"hyper::proto::h1::conn","line":472,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.711222Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.711238Z","target":"hyper::proto::h1::conn","line":732,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/proto/h1/conn.rs"}
+{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.711266Z","target":"hyper::client::pool","line":329,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
+{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Seans-MBP.attlocal.net","pid":4924,"time":"2022-10-18T19:56:02.711286Z","target":"hyper::client::pool","line":376,"file":"/Users/samuel/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.20/src/client/pool.rs"}
diff --git a/yarn.lock b/yarn.lock
index 21e2b6f..59cd116 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -22,49 +22,49 @@
dependencies:
"@babel/highlight" "^7.18.6"
-"@babel/compat-data@^7.19.0":
- "integrity" "sha512-y5rqgTTPTmaF5e2nVhOxw+Ur9HDJLsWb6U/KpgUzRZEdPfE6VOubXBKLdbcUTijzRptednSBDQbYZBOSqJxpJw=="
- "resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.0.tgz"
- "version" "7.19.0"
+"@babel/compat-data@^7.19.3":
+ "integrity" "sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw=="
+ "resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.19.4.tgz"
+ "version" "7.19.4"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0":
- "integrity" "sha512-reM4+U7B9ss148rh2n1Qs9ASS+w94irYXga7c2jaQv9RVzpS7Mv1a9rnYYwuDa45G+DkORt9g6An2k/V4d9LbQ=="
- "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.19.0.tgz"
- "version" "7.19.0"
+ "integrity" "sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg=="
+ "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.19.6.tgz"
+ "version" "7.19.6"
dependencies:
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.19.0"
- "@babel/helper-compilation-targets" "^7.19.0"
- "@babel/helper-module-transforms" "^7.19.0"
- "@babel/helpers" "^7.19.0"
- "@babel/parser" "^7.19.0"
+ "@babel/generator" "^7.19.6"
+ "@babel/helper-compilation-targets" "^7.19.3"
+ "@babel/helper-module-transforms" "^7.19.6"
+ "@babel/helpers" "^7.19.4"
+ "@babel/parser" "^7.19.6"
"@babel/template" "^7.18.10"
- "@babel/traverse" "^7.19.0"
- "@babel/types" "^7.19.0"
+ "@babel/traverse" "^7.19.6"
+ "@babel/types" "^7.19.4"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.2.1"
"semver" "^6.3.0"
-"@babel/generator@^7.19.0":
- "integrity" "sha512-S1ahxf1gZ2dpoiFgA+ohK9DIpz50bJ0CWs7Zlzb54Z4sG8qmdIrGrVqmy1sAtTVRb+9CU6U8VqT9L0Zj7hxHVg=="
- "resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.19.0.tgz"
- "version" "7.19.0"
+"@babel/generator@^7.19.6":
+ "integrity" "sha512-oHGRUQeoX1QrKeJIKVe0hwjGqNnVYsM5Nep5zo0uE0m42sLH+Fsd2pStJ5sRM1bNyTUUoz0pe2lTeMJrb/taTA=="
+ "resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.19.6.tgz"
+ "version" "7.19.6"
dependencies:
- "@babel/types" "^7.19.0"
+ "@babel/types" "^7.19.4"
"@jridgewell/gen-mapping" "^0.3.2"
"jsesc" "^2.5.1"
-"@babel/helper-compilation-targets@^7.19.0":
- "integrity" "sha512-Ai5bNWXIvwDvWM7njqsG3feMlL9hCVQsPYXodsZyLwshYkZVJt59Gftau4VrE8S9IT9asd2uSP1hG6wCNw+sXA=="
- "resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.0.tgz"
- "version" "7.19.0"
+"@babel/helper-compilation-targets@^7.19.3":
+ "integrity" "sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz"
+ "version" "7.19.3"
dependencies:
- "@babel/compat-data" "^7.19.0"
+ "@babel/compat-data" "^7.19.3"
"@babel/helper-validator-option" "^7.18.6"
- "browserslist" "^4.20.2"
+ "browserslist" "^4.21.3"
"semver" "^6.3.0"
"@babel/helper-environment-visitor@^7.18.9":
@@ -94,31 +94,31 @@
dependencies:
"@babel/types" "^7.18.6"
-"@babel/helper-module-transforms@^7.19.0":
- "integrity" "sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ=="
- "resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.0.tgz"
- "version" "7.19.0"
+"@babel/helper-module-transforms@^7.19.6":
+ "integrity" "sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.19.6.tgz"
+ "version" "7.19.6"
dependencies:
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-module-imports" "^7.18.6"
- "@babel/helper-simple-access" "^7.18.6"
+ "@babel/helper-simple-access" "^7.19.4"
"@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/helper-validator-identifier" "^7.18.6"
+ "@babel/helper-validator-identifier" "^7.19.1"
"@babel/template" "^7.18.10"
- "@babel/traverse" "^7.19.0"
- "@babel/types" "^7.19.0"
+ "@babel/traverse" "^7.19.6"
+ "@babel/types" "^7.19.4"
"@babel/helper-plugin-utils@^7.18.6":
"integrity" "sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz"
"version" "7.19.0"
-"@babel/helper-simple-access@^7.18.6":
- "integrity" "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g=="
- "resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz"
- "version" "7.18.6"
+"@babel/helper-simple-access@^7.19.4":
+ "integrity" "sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz"
+ "version" "7.19.4"
dependencies:
- "@babel/types" "^7.18.6"
+ "@babel/types" "^7.19.4"
"@babel/helper-split-export-declaration@^7.18.6":
"integrity" "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA=="
@@ -127,29 +127,29 @@
dependencies:
"@babel/types" "^7.18.6"
-"@babel/helper-string-parser@^7.18.10":
- "integrity" "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw=="
- "resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz"
- "version" "7.18.10"
+"@babel/helper-string-parser@^7.19.4":
+ "integrity" "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz"
+ "version" "7.19.4"
-"@babel/helper-validator-identifier@^7.18.6":
- "integrity" "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g=="
- "resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz"
- "version" "7.18.6"
+"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
+ "integrity" "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w=="
+ "resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz"
+ "version" "7.19.1"
"@babel/helper-validator-option@^7.18.6":
"integrity" "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz"
"version" "7.18.6"
-"@babel/helpers@^7.19.0":
- "integrity" "sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg=="
- "resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.0.tgz"
- "version" "7.19.0"
+"@babel/helpers@^7.19.4":
+ "integrity" "sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw=="
+ "resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.19.4.tgz"
+ "version" "7.19.4"
dependencies:
"@babel/template" "^7.18.10"
- "@babel/traverse" "^7.19.0"
- "@babel/types" "^7.19.0"
+ "@babel/traverse" "^7.19.4"
+ "@babel/types" "^7.19.4"
"@babel/highlight@^7.18.6":
"integrity" "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g=="
@@ -160,10 +160,10 @@
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
-"@babel/parser@^7.18.10", "@babel/parser@^7.19.0":
- "integrity" "sha512-74bEXKX2h+8rrfQUfsBfuZZHzsEs6Eql4pqy/T4Nn6Y9wNPggQOqD6z6pn5Bl8ZfysKouFZT/UXEH94ummEeQw=="
- "resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.19.0.tgz"
- "version" "7.19.0"
+"@babel/parser@^7.18.10", "@babel/parser@^7.19.6":
+ "integrity" "sha512-h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA=="
+ "resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.19.6.tgz"
+ "version" "7.19.6"
"@babel/plugin-syntax-jsx@^7.17.12":
"integrity" "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q=="
@@ -173,17 +173,17 @@
"@babel/helper-plugin-utils" "^7.18.6"
"@babel/runtime-corejs3@^7.10.2":
- "integrity" "sha512-JyXXoCu1N8GLuKc2ii8y5RGma5FMpFeO2nAQIe0Yzrbq+rQnN+sFj47auLblR5ka6aHNGPDgv8G/iI2Grb0ldQ=="
- "resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.0.tgz"
- "version" "7.19.0"
+ "integrity" "sha512-oWNn1ZlGde7b4i/3tnixpH9qI0bOAACiUs+KEES4UUCnsPjVWFlWdLV/iwJuPC2qp3EowbAqsm+0XqNwnwYhxA=="
+ "resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.19.6.tgz"
+ "version" "7.19.6"
dependencies:
- "core-js-pure" "^3.20.2"
+ "core-js-pure" "^3.25.1"
"regenerator-runtime" "^0.13.4"
"@babel/runtime@^7.0.0", "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.17.2", "@babel/runtime@^7.17.9", "@babel/runtime@^7.18.3", "@babel/runtime@^7.18.9", "@babel/runtime@^7.6.2", "@babel/runtime@^7.x", "@babel/runtime@7.x":
- "integrity" "sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA=="
- "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.0.tgz"
- "version" "7.19.0"
+ "integrity" "sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA=="
+ "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.19.4.tgz"
+ "version" "7.19.4"
dependencies:
"regenerator-runtime" "^0.13.4"
@@ -196,29 +196,29 @@
"@babel/parser" "^7.18.10"
"@babel/types" "^7.18.10"
-"@babel/traverse@^7.19.0":
- "integrity" "sha512-4pKpFRDh+utd2mbRC8JLnlsMUii3PMHjpL6a0SZ4NMZy7YFP9aXORxEhdMVOc9CpWtDF09IkciQLEhK7Ml7gRA=="
- "resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.0.tgz"
- "version" "7.19.0"
+"@babel/traverse@^7.19.4", "@babel/traverse@^7.19.6":
+ "integrity" "sha512-6l5HrUCzFM04mfbG09AagtYyR2P0B71B1wN7PfSPiksDPz2k5H9CBC1tcZpz2M8OxbKTPccByoOJ22rUKbpmQQ=="
+ "resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.19.6.tgz"
+ "version" "7.19.6"
dependencies:
"@babel/code-frame" "^7.18.6"
- "@babel/generator" "^7.19.0"
+ "@babel/generator" "^7.19.6"
"@babel/helper-environment-visitor" "^7.18.9"
"@babel/helper-function-name" "^7.19.0"
"@babel/helper-hoist-variables" "^7.18.6"
"@babel/helper-split-export-declaration" "^7.18.6"
- "@babel/parser" "^7.19.0"
- "@babel/types" "^7.19.0"
+ "@babel/parser" "^7.19.6"
+ "@babel/types" "^7.19.4"
"debug" "^4.1.0"
"globals" "^11.1.0"
-"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0":
- "integrity" "sha512-YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA=="
- "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.19.0.tgz"
- "version" "7.19.0"
+"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.19.4":
+ "integrity" "sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw=="
+ "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.19.4.tgz"
+ "version" "7.19.4"
dependencies:
- "@babel/helper-string-parser" "^7.18.10"
- "@babel/helper-validator-identifier" "^7.18.6"
+ "@babel/helper-string-parser" "^7.19.4"
+ "@babel/helper-validator-identifier" "^7.19.1"
"to-fast-properties" "^2.0.0"
"@blocto/sdk@^0.2.21":
@@ -256,728 +256,751 @@
"near-api-js" "^0.44.2"
"near-seed-phrase" "^0.2.0"
-"@chakra-ui/accordion@2.0.12":
- "integrity" "sha512-O3qq8mILo1QODjCGr2xwxC5LNFakBoMzTjEgpvpIMynxWc/1RKfGuFLis3IDfpHIicXmBTK6sNiZXewmna88CQ=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/accordion/-/accordion-2.0.12.tgz"
- "version" "2.0.12"
+"@chakra-ui/accordion@2.1.2":
+ "integrity" "sha512-Jf7A6I0eIGk34zO5TiTW8orJOFQb5A/D1ekNYbaukNccoUPKJg/xdQ/b00oIR6LT93nJxggkoP/vszfmmTHuFg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/accordion/-/accordion-2.1.2.tgz"
+ "version" "2.1.2"
dependencies:
- "@chakra-ui/descendant" "3.0.9"
- "@chakra-ui/icon" "3.0.9"
- "@chakra-ui/react-context" "2.0.3"
- "@chakra-ui/react-use-controllable-state" "2.0.3"
- "@chakra-ui/react-use-merge-refs" "2.0.3"
- "@chakra-ui/transition" "2.0.9"
-
-"@chakra-ui/alert@2.0.9":
- "integrity" "sha512-hFRIh6ZzQJ0sAESRym15mW/mcZE/yu4z6lFtdToBhpfSlhZLuE7gDdOTxqGkg417hY//48NiNXOCoQ2dUUuHKw=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/alert/-/alert-2.0.9.tgz"
- "version" "2.0.9"
- dependencies:
- "@chakra-ui/icon" "3.0.9"
- "@chakra-ui/react-context" "2.0.3"
- "@chakra-ui/spinner" "2.0.9"
-
-"@chakra-ui/anatomy@2.0.6":
- "integrity" "sha512-Vgop2FFdhVtX7BydjZdJWZAWy+DdXBU1IMaBppz6COaH+/7OXxoI2ec2bs17ehJyBO0M+ud3OLj5UCFQ79YsoQ=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/anatomy/-/anatomy-2.0.6.tgz"
- "version" "2.0.6"
+ "@chakra-ui/descendant" "3.0.10"
+ "@chakra-ui/icon" "3.0.11"
+ "@chakra-ui/react-context" "2.0.4"
+ "@chakra-ui/react-use-controllable-state" "2.0.5"
+ "@chakra-ui/react-use-merge-refs" "2.0.4"
+ "@chakra-ui/transition" "2.0.11"
-"@chakra-ui/avatar@2.1.0":
- "integrity" "sha512-SRQeH6NNvIBgUc4OsO14ypvcn8I66ndw7r4piIkm+R2zqbYnrzpp1d2zNPNHkChc4xQY71/GenenYO5Fhsi2DA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/avatar/-/avatar-2.1.0.tgz"
- "version" "2.1.0"
+"@chakra-ui/alert@2.0.11":
+ "integrity" "sha512-n40KHU3j1H6EbIdgptjEad92V7Fpv7YD++ZBjy2g1h4w9ay9nw4kGHib3gaIkBupLf52CfLqySEc8w0taoIlXQ=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/alert/-/alert-2.0.11.tgz"
+ "version" "2.0.11"
dependencies:
- "@chakra-ui/image" "2.0.10"
- "@chakra-ui/react-children-utils" "2.0.1"
- "@chakra-ui/react-context" "2.0.3"
+ "@chakra-ui/icon" "3.0.11"
+ "@chakra-ui/react-context" "2.0.4"
+ "@chakra-ui/spinner" "2.0.10"
+
+"@chakra-ui/anatomy@2.0.7":
+ "integrity" "sha512-vzcB2gcsGCxhrKbldQQV6LnBPys4eSSsH2UA2mLsT+J3WlXw0aodZw0eE/nH7yLxe4zaQ4Gnc0KjkFW4EWNKSg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/anatomy/-/anatomy-2.0.7.tgz"
+ "version" "2.0.7"
-"@chakra-ui/breadcrumb@2.0.9":
- "integrity" "sha512-cc3WbxrJNRUph4v45qCdcIKJI0xECeV9VikQNIactBB+iexN4d+5P66xZABAkD8wWGmyH5KuSZcd9sFYNmC13w=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/breadcrumb/-/breadcrumb-2.0.9.tgz"
- "version" "2.0.9"
+"@chakra-ui/avatar@2.2.0":
+ "integrity" "sha512-mpAkfr/JG+BNBw2WvU55CSRFYKeFBUyAQAu3YulznLzi2U3e7k3IA0J8ofbrDYlSH/9KqkDuuSrxqGZgct+Nug=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/avatar/-/avatar-2.2.0.tgz"
+ "version" "2.2.0"
dependencies:
- "@chakra-ui/react-children-utils" "2.0.1"
- "@chakra-ui/react-context" "2.0.3"
+ "@chakra-ui/image" "2.0.11"
+ "@chakra-ui/react-children-utils" "2.0.3"
+ "@chakra-ui/react-context" "2.0.4"
-"@chakra-ui/breakpoint-utils@2.0.3":
- "integrity" "sha512-smi41ZtaiPw4mXaCgicyAh5M45Drt20wypThP+qQUT2CQ51UFZhYlItRA2lCXKQ9QB83POcHPC/oAwIsNOAfTg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/breakpoint-utils/-/breakpoint-utils-2.0.3.tgz"
- "version" "2.0.3"
+"@chakra-ui/breadcrumb@2.1.0":
+ "integrity" "sha512-khBR579SLDEo6Wuo3tETRY6m0yJD/WCvSR7Res2g1B6OJgc9OQGM7yIMu4OdLUTwfXsCnlHTDoSQPUxFOVAMIQ=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/breadcrumb/-/breadcrumb-2.1.0.tgz"
+ "version" "2.1.0"
+ dependencies:
+ "@chakra-ui/react-children-utils" "2.0.3"
+ "@chakra-ui/react-context" "2.0.4"
+
+"@chakra-ui/breakpoint-utils@2.0.4":
+ "integrity" "sha512-SUUEYnA/FCIKYDHMuEXcnBMwet+6RAAjQ+CqGD1hlwKPTfh7EK9fS8FoVAJa9KpRKAc/AawzPkgwvorzPj8NSg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/breakpoint-utils/-/breakpoint-utils-2.0.4.tgz"
+ "version" "2.0.4"
-"@chakra-ui/button@2.0.9":
- "integrity" "sha512-4BuDBiBlChHW1rQ9iod9MKs87AY3IyvZQwjV3DZTU4IG0KcDDfLQf++jj4dkg9Ttu+pIWhwF42pzA40JxW1oNg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/button/-/button-2.0.9.tgz"
- "version" "2.0.9"
+"@chakra-ui/button@2.0.11":
+ "integrity" "sha512-J6iMRITqxTxa0JexHUY9c7BXUrTZtSkl3jZ2hxiFybB4MQL8J2wZ24O846B6M+WTYqy7XVuHRuVURnH4czWesw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/button/-/button-2.0.11.tgz"
+ "version" "2.0.11"
dependencies:
- "@chakra-ui/react-context" "2.0.3"
- "@chakra-ui/react-use-merge-refs" "2.0.3"
- "@chakra-ui/spinner" "2.0.9"
+ "@chakra-ui/react-context" "2.0.4"
+ "@chakra-ui/react-use-merge-refs" "2.0.4"
+ "@chakra-ui/spinner" "2.0.10"
-"@chakra-ui/checkbox@2.1.8":
- "integrity" "sha512-HhRs3nwTFoIE/UpX4N2AZxxW39Xm/Vw01HjwP/59X60kdKs3RBXlm52cODkfUDfveyT9o5ezLhU/jRf0qA909Q=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/checkbox/-/checkbox-2.1.8.tgz"
- "version" "2.1.8"
+"@chakra-ui/checkbox@2.2.2":
+ "integrity" "sha512-Y6Zbkkk5VNoe0RzqU6F+rKlFVPlubz1KIgYcb7CCNHGOM97dLtRm78eAvJ+7Xmpitr+7zZ4hJLLjfAz+e1X7rA=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/checkbox/-/checkbox-2.2.2.tgz"
+ "version" "2.2.2"
dependencies:
- "@chakra-ui/form-control" "2.0.9"
- "@chakra-ui/react-context" "2.0.3"
+ "@chakra-ui/form-control" "2.0.11"
+ "@chakra-ui/react-context" "2.0.4"
"@chakra-ui/react-types" "2.0.3"
- "@chakra-ui/react-use-callback-ref" "2.0.3"
- "@chakra-ui/react-use-controllable-state" "2.0.3"
- "@chakra-ui/react-use-merge-refs" "2.0.3"
- "@chakra-ui/react-use-safe-layout-effect" "2.0.1"
- "@chakra-ui/react-use-update-effect" "2.0.3"
- "@chakra-ui/visually-hidden" "2.0.9"
+ "@chakra-ui/react-use-callback-ref" "2.0.4"
+ "@chakra-ui/react-use-controllable-state" "2.0.5"
+ "@chakra-ui/react-use-merge-refs" "2.0.4"
+ "@chakra-ui/react-use-safe-layout-effect" "2.0.2"
+ "@chakra-ui/react-use-update-effect" "2.0.4"
+ "@chakra-ui/visually-hidden" "2.0.11"
"@zag-js/focus-visible" "0.1.0"
-"@chakra-ui/clickable@2.0.9":
- "integrity" "sha512-tGXYM6M6I954fif98QkNu5M76oBZmksCTj2mILOan9/BSimpFpu06aPGX3ZIkNsz300nIObn0FdtMvKpIEQueA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/clickable/-/clickable-2.0.9.tgz"
- "version" "2.0.9"
+"@chakra-ui/clickable@2.0.10":
+ "integrity" "sha512-G6JdR6yAMlXpfjOJ70W2FL7aUwNuomiMFtkneeTpk7Q42bJ5iGHfYlbZEx5nJd8iB+UluXVM4xlhMv2MyytjGw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/clickable/-/clickable-2.0.10.tgz"
+ "version" "2.0.10"
dependencies:
- "@chakra-ui/react-use-merge-refs" "2.0.3"
+ "@chakra-ui/react-use-merge-refs" "2.0.4"
-"@chakra-ui/close-button@2.0.9":
- "integrity" "sha512-0RI/zLR+/mycGbYCCwDAc9hAVG7IIVmdikmo1ET7+rYip4TN94aWR0hA4dYtWqqghG1oW/pYQ9Yja6fEY90V5w=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/close-button/-/close-button-2.0.9.tgz"
- "version" "2.0.9"
+"@chakra-ui/close-button@2.0.11":
+ "integrity" "sha512-9WF/nwwK9BldS89WQ5PtXK2nFS4r8QOgKls2BOwXfE+rGmOUZtOsu8ne/drXRjgkiBRETR6CxdyUjm7EPzXllw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/close-button/-/close-button-2.0.11.tgz"
+ "version" "2.0.11"
dependencies:
- "@chakra-ui/icon" "3.0.9"
+ "@chakra-ui/icon" "3.0.11"
-"@chakra-ui/color-mode@2.1.7":
- "integrity" "sha512-GAoKJzVRQeuEfCa2i0BZdMwxuOoaGknU3+5wgvLuaSpwlov4OyqpjKMRdSdpjr4IFiqqHK47dsr3H4LQsbO+9w=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/color-mode/-/color-mode-2.1.7.tgz"
- "version" "2.1.7"
+"@chakra-ui/color-mode@2.1.9":
+ "integrity" "sha512-0kx0I+AQon8oS23/X+qMtnhsv/1BUulyJvU56p3Uh8CRaBfgJ7Ly9CerShoUL+5kadu6hN1M9oty4cugaCwv2w=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/color-mode/-/color-mode-2.1.9.tgz"
+ "version" "2.1.9"
dependencies:
- "@chakra-ui/react-use-safe-layout-effect" "2.0.1"
+ "@chakra-ui/react-use-safe-layout-effect" "2.0.2"
-"@chakra-ui/control-box@2.0.9":
- "integrity" "sha512-/viS9OBah1wCLNZbgfwkoQOnVRUYgp8Gypjqk9QNQwnNdFUTEgWc1RWN+1RYO85esJzHLkA2hZFIrYu1TZeZ6g=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/control-box/-/control-box-2.0.9.tgz"
- "version" "2.0.9"
+"@chakra-ui/control-box@2.0.10":
+ "integrity" "sha512-sHmZanFLEv4IDATl19ZTxq8Bi8PtjfvnsN6xF4k7JGSYUnk1YXUf1coyW7WKdcsczOASrMikfsLc3iEVAzx4Ng=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/control-box/-/control-box-2.0.10.tgz"
+ "version" "2.0.10"
-"@chakra-ui/counter@2.0.9":
- "integrity" "sha512-LuqtpyxCOZM19gAmV0vtVeaFd9ccPmEjoGJQ0NoO8CFheltgLC/7m/8YpDbgWiG4+BAkTUfIG+5nLg5hwvvQxw=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/counter/-/counter-2.0.9.tgz"
- "version" "2.0.9"
+"@chakra-ui/counter@2.0.10":
+ "integrity" "sha512-MZK8UKUZp4nFMd+GlV/cq0NIARS7UdlubTuCx+wockw9j2JI5OHzsyK0XiWuJiq5psegSTzpbtT99QfAUm3Yiw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/counter/-/counter-2.0.10.tgz"
+ "version" "2.0.10"
dependencies:
- "@chakra-ui/number-utils" "2.0.3"
- "@chakra-ui/react-use-callback-ref" "2.0.3"
+ "@chakra-ui/number-utils" "2.0.4"
+ "@chakra-ui/react-use-callback-ref" "2.0.4"
-"@chakra-ui/css-reset@2.0.7":
- "integrity" "sha512-ztGdFQ6U1hX2k6a3HZ8D3A/dZWVxlGe2F5mvUrRU554mFWBYmsq0ydZ7UBEPlykv9NoCz4nN8VCkIxcKJ3p29Q=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/css-reset/-/css-reset-2.0.7.tgz"
- "version" "2.0.7"
+"@chakra-ui/css-reset@2.0.8":
+ "integrity" "sha512-VuDD1rk1pFc+dItk4yUcstyoC9D2B35hatHDBtlPMqTczFAzpbgVJJYgEHANatXGfulM5SdckmYEIJ3Tac1Rtg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/css-reset/-/css-reset-2.0.8.tgz"
+ "version" "2.0.8"
-"@chakra-ui/descendant@3.0.9":
- "integrity" "sha512-30E5yMWvxgBx43PoI/67r9h9OhbpDfLb/MLOCjtEwebSbD0V5+fmnmCoUELScQbhozQVjA9t195X6UP0VQWj8w=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/descendant/-/descendant-3.0.9.tgz"
- "version" "3.0.9"
+"@chakra-ui/descendant@3.0.10":
+ "integrity" "sha512-MHH0Qdm0fGllGP2xgx4WOycmrpctyyEdGw6zxcfs2VqZNlrwmjG3Yb9eVY+Q7UmEv5rwAq6qRn7BhQxgSPn3Cg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/descendant/-/descendant-3.0.10.tgz"
+ "version" "3.0.10"
dependencies:
- "@chakra-ui/react-context" "2.0.3"
- "@chakra-ui/react-use-merge-refs" "2.0.3"
+ "@chakra-ui/react-context" "2.0.4"
+ "@chakra-ui/react-use-merge-refs" "2.0.4"
-"@chakra-ui/dom-utils@2.0.1":
- "integrity" "sha512-sbob9AHQq1+KIQ3XKslafislwtC8pYcpwM0S1SLzgyZumHRwhDimKwdi4MtRQfOCenub0E3diRjp4RpGRL0JuQ=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/dom-utils/-/dom-utils-2.0.1.tgz"
- "version" "2.0.1"
+"@chakra-ui/dom-utils@2.0.3":
+ "integrity" "sha512-aeGlRmTxcv0cvW44DyeZHru1i68ZDQsXpfX2dnG1I1yBlT6GlVx1xYjCULis9mjhgvd2O3NfcYPRTkjNWTDUbA=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/dom-utils/-/dom-utils-2.0.3.tgz"
+ "version" "2.0.3"
-"@chakra-ui/editable@2.0.9":
- "integrity" "sha512-s5F3UMR09s6ga3eVhw0UBMGmegtxg6jCp29VLqaEwP5BuWIEOjcJz358gTlnFr3dhvb31e3rcr+B1XiYv4wxqg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/editable/-/editable-2.0.9.tgz"
- "version" "2.0.9"
+"@chakra-ui/editable@2.0.13":
+ "integrity" "sha512-GM3n8t3/TOFFcDOWF/tuKsnqn66isZLsU+FkMRY2o0E8XjLBGjCKuXInPW5SRBqhje7EHC+kwViLE780PfwXbw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/editable/-/editable-2.0.13.tgz"
+ "version" "2.0.13"
dependencies:
- "@chakra-ui/react-context" "2.0.3"
+ "@chakra-ui/react-context" "2.0.4"
"@chakra-ui/react-types" "2.0.3"
- "@chakra-ui/react-use-controllable-state" "2.0.3"
- "@chakra-ui/react-use-focus-on-pointer-down" "2.0.1"
- "@chakra-ui/react-use-merge-refs" "2.0.3"
- "@chakra-ui/react-use-safe-layout-effect" "2.0.1"
- "@chakra-ui/react-use-update-effect" "2.0.3"
- "@chakra-ui/shared-utils" "2.0.1"
-
-"@chakra-ui/event-utils@2.0.4":
- "integrity" "sha512-J2YgAM5Dw9hMkwfMsWhsiAG848GfTMxNclUIUcgV9RQhLEs0eTFhelzNiKVOMA3vBxlT6lOARuRun/ESiFZgGg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/event-utils/-/event-utils-2.0.4.tgz"
- "version" "2.0.4"
+ "@chakra-ui/react-use-callback-ref" "2.0.4"
+ "@chakra-ui/react-use-controllable-state" "2.0.5"
+ "@chakra-ui/react-use-focus-on-pointer-down" "2.0.3"
+ "@chakra-ui/react-use-merge-refs" "2.0.4"
+ "@chakra-ui/react-use-safe-layout-effect" "2.0.2"
+ "@chakra-ui/react-use-update-effect" "2.0.4"
+ "@chakra-ui/shared-utils" "2.0.2"
+
+"@chakra-ui/event-utils@2.0.5":
+ "integrity" "sha512-VXoOAIsM0PFKDlhm+EZxkWlUXd5UFTb/LTux3y3A+S9G5fDxLRvpiLWByPUgTFTCDFcgTCF+YnQtdWJB4DLyxg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/event-utils/-/event-utils-2.0.5.tgz"
+ "version" "2.0.5"
-"@chakra-ui/focus-lock@2.0.10":
- "integrity" "sha512-LeRZYzwfJp0eq84oO8e1pC2qC8v8fJw/P4nYDrCDjuJU753DV6nVjp5MKMRqbkp+6IAElPc+ojy/sp2a9GCocw=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/focus-lock/-/focus-lock-2.0.10.tgz"
- "version" "2.0.10"
+"@chakra-ui/focus-lock@2.0.12":
+ "integrity" "sha512-NvIP59A11ZNbxXZ3qwxSiQ5npjABkpSbTIjK0uZ9bZm5LMfepRnuuA19VsVlq31/BYV9nHFAy6xzIuG+Qf9xMA=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/focus-lock/-/focus-lock-2.0.12.tgz"
+ "version" "2.0.12"
dependencies:
- "@chakra-ui/dom-utils" "2.0.1"
+ "@chakra-ui/dom-utils" "2.0.3"
"react-focus-lock" "^2.9.1"
-"@chakra-ui/form-control@2.0.9":
- "integrity" "sha512-P8Tr45z/XSAa1m6uAma0eKf1h7Ltg2sLj2jK5YhaXJER9VUUY18iGe96D4JrAXlgEWDhTyWMb63nB+eYO1tKtw=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/form-control/-/form-control-2.0.9.tgz"
- "version" "2.0.9"
+"@chakra-ui/form-control@2.0.11":
+ "integrity" "sha512-MVhIe0xY4Zn06IXRXFmS9tCa93snppK1SdUQb1P99Ipo424RrL5ykzLnJ8CAkQrhoVP3sxF7z3eOSzk8/iRfow=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/form-control/-/form-control-2.0.11.tgz"
+ "version" "2.0.11"
dependencies:
- "@chakra-ui/icon" "3.0.9"
- "@chakra-ui/react-context" "2.0.3"
+ "@chakra-ui/icon" "3.0.11"
+ "@chakra-ui/react-context" "2.0.4"
"@chakra-ui/react-types" "2.0.3"
- "@chakra-ui/react-use-merge-refs" "2.0.3"
+ "@chakra-ui/react-use-merge-refs" "2.0.4"
-"@chakra-ui/hooks@2.0.9":
- "integrity" "sha512-0JRgEPtsBaXr9nQW1xEKlWGA7WwFbLNqac7fQXp9zQvoHOWTfNJkK/NJaVBvyFPgfTLxy37WKHooVSwNG/Lwmg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/hooks/-/hooks-2.0.9.tgz"
- "version" "2.0.9"
+"@chakra-ui/hooks@2.1.0":
+ "integrity" "sha512-4H6BDITq/YrStW99LXurgPkcz4qHSVy9V/QWXCvt1pCuiDTqNztiW4r508H3ApAOsL9NEbyXcM/zWYD7r5VDjA=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/hooks/-/hooks-2.1.0.tgz"
+ "version" "2.1.0"
dependencies:
- "@chakra-ui/react-utils" "2.0.6"
- "@chakra-ui/utils" "2.0.9"
+ "@chakra-ui/react-utils" "2.0.8"
+ "@chakra-ui/utils" "2.0.11"
"compute-scroll-into-view" "1.0.14"
"copy-to-clipboard" "3.3.1"
-"@chakra-ui/icon@3.0.9":
- "integrity" "sha512-P2Pwm/za6m1W1oqL2kGHH6XrrymsBjqYAFwOW2lB5Q6mI1e+RYe/iMxDoPSLHMYhqdfH7vyib/ffE3Vv3a5oTA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/icon/-/icon-3.0.9.tgz"
- "version" "3.0.9"
+"@chakra-ui/icon@3.0.11":
+ "integrity" "sha512-RG4jf/XmBdaxOYI5J5QstEtTCPoVlmrQ/XiWhvN0LTgAnmZIqVwFl3Uw+satArdStHAs0GmJZg/E/soFTWuFmw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/icon/-/icon-3.0.11.tgz"
+ "version" "3.0.11"
dependencies:
- "@chakra-ui/shared-utils" "2.0.1"
+ "@chakra-ui/shared-utils" "2.0.2"
"@chakra-ui/icons@^2.0.9":
- "integrity" "sha512-6xvV2rC8wATgfnRH+fC9mi0nLcgKjhHKO29lV1pGioVI0yWK0dqc//zjcyBhMMpW5ABnSfig7ujVBf3op/Syzg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/icons/-/icons-2.0.9.tgz"
- "version" "2.0.9"
+ "integrity" "sha512-WjxrFMt9hHpuZlnBh4fhtGOkIVlwYwHNmwq4sJGxYWlg8UnEhVJMoOojheJDy/d3Gp9+ApetlK3vt8fV/rZamg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/icons/-/icons-2.0.11.tgz"
+ "version" "2.0.11"
dependencies:
- "@chakra-ui/icon" "3.0.9"
+ "@chakra-ui/icon" "3.0.11"
-"@chakra-ui/image@2.0.10":
- "integrity" "sha512-Atc1bdog4V5xv7IbpF2F2UkKWfgG/TD74cIac09JuSpQcYyh7lrJ7iVvhTkeP+LDdCs+QCD7SnTUM4Y0ZlaHbA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/image/-/image-2.0.10.tgz"
- "version" "2.0.10"
+"@chakra-ui/image@2.0.11":
+ "integrity" "sha512-S6NqAprPcbHnck/J+2wg06r9SSol62v5A01O8Kke2PnAyjalMcS+6P59lDRO7wvPqsdxq4PPbSTZP6Dww2CvcA=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/image/-/image-2.0.11.tgz"
+ "version" "2.0.11"
dependencies:
- "@chakra-ui/react-use-safe-layout-effect" "2.0.1"
-
-"@chakra-ui/input@2.0.9":
- "integrity" "sha512-6MKydxTyF7JV7PtQHircQ5HBTd6Ik9Vn7p8fCLeAieT0TK8UQTxMWZVPminS7TRWMutrq8W99DcQOBlMz0cKrw=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/input/-/input-2.0.9.tgz"
- "version" "2.0.9"
- dependencies:
- "@chakra-ui/form-control" "2.0.9"
- "@chakra-ui/object-utils" "2.0.3"
- "@chakra-ui/react-children-utils" "2.0.1"
- "@chakra-ui/react-context" "2.0.3"
- "@chakra-ui/shared-utils" "2.0.1"
-
-"@chakra-ui/layout@2.1.6":
- "integrity" "sha512-QDNaVu44UI46c+YlSF1KrzJkiwua0UtRXNTnR3jBE1uzcuqRow7xgr3E60dLphY2cPFqAljfQZUNlP3sgvCLww=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/layout/-/layout-2.1.6.tgz"
- "version" "2.1.6"
- dependencies:
- "@chakra-ui/breakpoint-utils" "2.0.3"
- "@chakra-ui/icon" "3.0.9"
- "@chakra-ui/object-utils" "2.0.3"
- "@chakra-ui/react-children-utils" "2.0.1"
- "@chakra-ui/react-context" "2.0.3"
- "@chakra-ui/shared-utils" "2.0.1"
-
-"@chakra-ui/lazy-utils@2.0.1":
- "integrity" "sha512-986YjYq+hEzHDLZiqYlYbdqfiKdC3h2g896Eoe5K2UXtAVxqZI3UOnMH781X6N1R7rGJWquskzG681qFigW/BA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/lazy-utils/-/lazy-utils-2.0.1.tgz"
- "version" "2.0.1"
+ "@chakra-ui/react-use-safe-layout-effect" "2.0.2"
-"@chakra-ui/live-region@2.0.9":
- "integrity" "sha512-ilbo/C5wcUoSHDU5owFPQP3KsabPYGzDEbwV+Z76BlyNdFN2PD0j13RGEH+sBNNZ3HzLyyuuc1YmkVcJi7ycQg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/live-region/-/live-region-2.0.9.tgz"
- "version" "2.0.9"
+"@chakra-ui/input@2.0.12":
+ "integrity" "sha512-lJ5necu+Wt698HdCTC7L/ErA2nNVJAra7+knPe0qMR+AizGEL7LKCV/bdQe7eggjvKsDGD4alJIEczUvm3JVUQ=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/input/-/input-2.0.12.tgz"
+ "version" "2.0.12"
+ dependencies:
+ "@chakra-ui/form-control" "2.0.11"
+ "@chakra-ui/object-utils" "2.0.4"
+ "@chakra-ui/react-children-utils" "2.0.3"
+ "@chakra-ui/react-context" "2.0.4"
+ "@chakra-ui/shared-utils" "2.0.2"
+
+"@chakra-ui/layout@2.1.9":
+ "integrity" "sha512-ztsavtirtdtjxdqIkGR6fVcrffHp6hs1twRFO/dK14FGXrX3Nn9mi3J1fr1ITBHJq6y5B3yFEj0LHN2fO8dYyw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/layout/-/layout-2.1.9.tgz"
+ "version" "2.1.9"
+ dependencies:
+ "@chakra-ui/breakpoint-utils" "2.0.4"
+ "@chakra-ui/icon" "3.0.11"
+ "@chakra-ui/object-utils" "2.0.4"
+ "@chakra-ui/react-children-utils" "2.0.3"
+ "@chakra-ui/react-context" "2.0.4"
+ "@chakra-ui/shared-utils" "2.0.2"
+
+"@chakra-ui/lazy-utils@2.0.2":
+ "integrity" "sha512-MTxutBJZvqNNqrrS0722cI7qrnGu0yUQpIebmTxYwI+F3cOnPEKf5Ni+hrA8hKcw4XJhSY4npAPPYu1zJbOV4w=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/lazy-utils/-/lazy-utils-2.0.2.tgz"
+ "version" "2.0.2"
-"@chakra-ui/media-query@3.2.5":
- "integrity" "sha512-V+Dngi/r7u/uj7JhsZerM1RI597Oo4wED2ojNfclnnEVb/IoqktiuFy6RQgbo3HmE7M/E5B1i4yYzt7tQJhXlg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/media-query/-/media-query-3.2.5.tgz"
- "version" "3.2.5"
+"@chakra-ui/live-region@2.0.10":
+ "integrity" "sha512-eQ2ZIreR/plzi/KGszDYTi1TvIyGEBcPiWP52BQOS7xwpzb1vsoR1FgFAIELxAGJvKnMUs+9qVogfyRBX8PdOg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/live-region/-/live-region-2.0.10.tgz"
+ "version" "2.0.10"
+
+"@chakra-ui/media-query@3.2.7":
+ "integrity" "sha512-hbgm6JCe0kYU3PAhxASYYDopFQI26cW9kZnbp+5tRL1fykkVWNMPwoGC8FEZPur9JjXp7aoL6H4Jk7nrxY/XWw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/media-query/-/media-query-3.2.7.tgz"
+ "version" "3.2.7"
dependencies:
- "@chakra-ui/breakpoint-utils" "2.0.3"
- "@chakra-ui/react-env" "2.0.9"
+ "@chakra-ui/breakpoint-utils" "2.0.4"
+ "@chakra-ui/react-env" "2.0.10"
-"@chakra-ui/menu@2.0.13":
- "integrity" "sha512-XZYoq9k/txAELUgn5OokyxfXEpVZwBueVYXiT9ji0XvMuzXVxeHd40klJEkiJUctNsOahZf10t5yxlT4B00pwA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/menu/-/menu-2.0.13.tgz"
- "version" "2.0.13"
+"@chakra-ui/menu@2.1.2":
+ "integrity" "sha512-6Z7ecXjp6BtZ1ExbFggfxsAj1hwtcathXekmCTxHpXOD+BdjAC/13+oLclwXeuBO85aoTmQrQ2ovfTkO31bzRQ=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/menu/-/menu-2.1.2.tgz"
+ "version" "2.1.2"
dependencies:
- "@chakra-ui/clickable" "2.0.9"
- "@chakra-ui/descendant" "3.0.9"
- "@chakra-ui/lazy-utils" "2.0.1"
- "@chakra-ui/popper" "3.0.7"
- "@chakra-ui/react-children-utils" "2.0.1"
- "@chakra-ui/react-context" "2.0.3"
- "@chakra-ui/react-use-animation-state" "2.0.3"
- "@chakra-ui/react-use-controllable-state" "2.0.3"
- "@chakra-ui/react-use-disclosure" "2.0.3"
- "@chakra-ui/react-use-focus-effect" "2.0.3"
- "@chakra-ui/react-use-merge-refs" "2.0.3"
- "@chakra-ui/react-use-outside-click" "2.0.3"
- "@chakra-ui/react-use-update-effect" "2.0.3"
- "@chakra-ui/transition" "2.0.9"
-
-"@chakra-ui/modal@2.1.7":
- "integrity" "sha512-A+CbvhQYpmLH3SrqJ1wJysUCGm0mNoSDxRjP4wX98j56nMTDAsMYlzttpuLmKaSzvbJ7uEQDLtQV8lZjB0gUuw=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/modal/-/modal-2.1.7.tgz"
- "version" "2.1.7"
- dependencies:
- "@chakra-ui/close-button" "2.0.9"
- "@chakra-ui/focus-lock" "2.0.10"
- "@chakra-ui/portal" "2.0.9"
- "@chakra-ui/react-context" "2.0.3"
+ "@chakra-ui/clickable" "2.0.10"
+ "@chakra-ui/descendant" "3.0.10"
+ "@chakra-ui/lazy-utils" "2.0.2"
+ "@chakra-ui/popper" "3.0.8"
+ "@chakra-ui/react-children-utils" "2.0.3"
+ "@chakra-ui/react-context" "2.0.4"
+ "@chakra-ui/react-use-animation-state" "2.0.5"
+ "@chakra-ui/react-use-controllable-state" "2.0.5"
+ "@chakra-ui/react-use-disclosure" "2.0.5"
+ "@chakra-ui/react-use-focus-effect" "2.0.5"
+ "@chakra-ui/react-use-merge-refs" "2.0.4"
+ "@chakra-ui/react-use-outside-click" "2.0.4"
+ "@chakra-ui/react-use-update-effect" "2.0.4"
+ "@chakra-ui/transition" "2.0.11"
+
+"@chakra-ui/modal@2.2.2":
+ "integrity" "sha512-cCYuqLZO4QqFUI1H+uEqixDk6UiCP3yC+sxkhFTXHIApSG9Z44v5np7BVTd6LKdmAN8pAWcc8Oxf14RvD6LWLw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/modal/-/modal-2.2.2.tgz"
+ "version" "2.2.2"
+ dependencies:
+ "@chakra-ui/close-button" "2.0.11"
+ "@chakra-ui/focus-lock" "2.0.12"
+ "@chakra-ui/portal" "2.0.10"
+ "@chakra-ui/react-context" "2.0.4"
"@chakra-ui/react-types" "2.0.3"
- "@chakra-ui/react-use-merge-refs" "2.0.3"
- "@chakra-ui/transition" "2.0.9"
+ "@chakra-ui/react-use-merge-refs" "2.0.4"
+ "@chakra-ui/transition" "2.0.11"
"aria-hidden" "^1.1.1"
"react-remove-scroll" "^2.5.4"
-"@chakra-ui/number-input@2.0.9":
- "integrity" "sha512-RsDzoNvSBZMgyXjN543AtQ2v99U1p/0xnGWZy4NCkgCDWMBn3kIXqSzQq5CB9Ot0MD8nnKF5VYdVdXWguXExEQ=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/number-input/-/number-input-2.0.9.tgz"
- "version" "2.0.9"
+"@chakra-ui/number-input@2.0.12":
+ "integrity" "sha512-3owLjl01sCYpTd3xbq//fJo9QJ0Q3PVYSx9JeOzlXnnTW8ws+yHPrqQzPe7G+tO4yOYynWuUT+NJ9oyCeAJIxA=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/number-input/-/number-input-2.0.12.tgz"
+ "version" "2.0.12"
dependencies:
- "@chakra-ui/counter" "2.0.9"
- "@chakra-ui/form-control" "2.0.9"
- "@chakra-ui/icon" "3.0.9"
- "@chakra-ui/react-context" "2.0.3"
+ "@chakra-ui/counter" "2.0.10"
+ "@chakra-ui/form-control" "2.0.11"
+ "@chakra-ui/icon" "3.0.11"
+ "@chakra-ui/react-context" "2.0.4"
"@chakra-ui/react-types" "2.0.3"
- "@chakra-ui/react-use-callback-ref" "2.0.3"
- "@chakra-ui/react-use-event-listener" "2.0.3"
- "@chakra-ui/react-use-interval" "2.0.1"
- "@chakra-ui/react-use-merge-refs" "2.0.3"
- "@chakra-ui/react-use-safe-layout-effect" "2.0.1"
- "@chakra-ui/react-use-update-effect" "2.0.3"
-
-"@chakra-ui/number-utils@2.0.3":
- "integrity" "sha512-oN03kYAUCCp/FNtpLr5mh+cvd/sRTzZWTBoFydmxc955psXq/X950gzs6o5kzoeFCpgXaxMmHAXQm3ReEK2NsQ=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/number-utils/-/number-utils-2.0.3.tgz"
- "version" "2.0.3"
+ "@chakra-ui/react-use-callback-ref" "2.0.4"
+ "@chakra-ui/react-use-event-listener" "2.0.4"
+ "@chakra-ui/react-use-interval" "2.0.2"
+ "@chakra-ui/react-use-merge-refs" "2.0.4"
+ "@chakra-ui/react-use-safe-layout-effect" "2.0.2"
+ "@chakra-ui/react-use-update-effect" "2.0.4"
+
+"@chakra-ui/number-utils@2.0.4":
+ "integrity" "sha512-MdYd29GboBoKaXY9jhbY0Wl+0NxG1t/fa32ZSIbU6VrfMsZuAMl4NEJsz7Xvhy50fummLdKn5J6HFS7o5iyIgw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/number-utils/-/number-utils-2.0.4.tgz"
+ "version" "2.0.4"
-"@chakra-ui/object-utils@2.0.3":
- "integrity" "sha512-36prckrqTynVD/JTzyCr8OCWVOrMs/awZo3djVbIiNxRIcJ5iEwUVy26h3MWN4ENSopipBtxNfAwPNTLU5Si/g=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/object-utils/-/object-utils-2.0.3.tgz"
- "version" "2.0.3"
+"@chakra-ui/object-utils@2.0.4":
+ "integrity" "sha512-sY98L4v2wcjpwRX8GCXqT+WzpL0i5FHVxT1Okxw0360T2tGnZt7toAwpMfIOR3dzkemP9LfXMCyBmWR5Hi2zpQ=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/object-utils/-/object-utils-2.0.4.tgz"
+ "version" "2.0.4"
-"@chakra-ui/pin-input@2.0.12":
- "integrity" "sha512-gaMRp5AFW+qAJCUj93V1WluuYBBZ/5A3Wy5q796g8Auvw7vufgkVtl6EBznwvtynZN8gJwbRFpMtJxQyXCkUiw=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/pin-input/-/pin-input-2.0.12.tgz"
- "version" "2.0.12"
+"@chakra-ui/pin-input@2.0.15":
+ "integrity" "sha512-Ha8siSZm9gyjHHBK8ejwhKT6+75U12I/hNiYFvl2JHhc+Uh8tdi7+N+9SILO5vqbIv9kb+WGitvZ67I0cHjSfw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/pin-input/-/pin-input-2.0.15.tgz"
+ "version" "2.0.15"
+ dependencies:
+ "@chakra-ui/descendant" "3.0.10"
+ "@chakra-ui/react-children-utils" "2.0.3"
+ "@chakra-ui/react-context" "2.0.4"
+ "@chakra-ui/react-use-controllable-state" "2.0.5"
+ "@chakra-ui/react-use-merge-refs" "2.0.4"
+
+"@chakra-ui/popover@2.1.1":
+ "integrity" "sha512-j09NsesfT+eaYITkITYJXDlRcPoOeQUM80neJZKOBgul2iHkVsEoii8dwS5Ip5ONeu4ane1b6zEOlYvYj2SrkA=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/popover/-/popover-2.1.1.tgz"
+ "version" "2.1.1"
dependencies:
- "@chakra-ui/descendant" "3.0.9"
- "@chakra-ui/react-children-utils" "2.0.1"
- "@chakra-ui/react-context" "2.0.3"
- "@chakra-ui/react-use-controllable-state" "2.0.3"
- "@chakra-ui/react-use-merge-refs" "2.0.3"
-
-"@chakra-ui/popover@2.0.9":
- "integrity" "sha512-+7tH4RVuheFQOyAZ5KT9x+qsLvz7rGuKaHtb0427+5bhUzLaSAghtr/afzOKHDwUVBwF2tTUNanR23ipW1fXDg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/popover/-/popover-2.0.9.tgz"
- "version" "2.0.9"
- dependencies:
- "@chakra-ui/close-button" "2.0.9"
- "@chakra-ui/hooks" "2.0.9"
- "@chakra-ui/lazy-utils" "2.0.1"
- "@chakra-ui/popper" "3.0.7"
- "@chakra-ui/react-context" "2.0.3"
+ "@chakra-ui/close-button" "2.0.11"
+ "@chakra-ui/lazy-utils" "2.0.2"
+ "@chakra-ui/popper" "3.0.8"
+ "@chakra-ui/react-context" "2.0.4"
"@chakra-ui/react-types" "2.0.3"
- "@chakra-ui/react-use-disclosure" "2.0.3"
- "@chakra-ui/react-use-merge-refs" "2.0.3"
+ "@chakra-ui/react-use-animation-state" "2.0.5"
+ "@chakra-ui/react-use-disclosure" "2.0.5"
+ "@chakra-ui/react-use-focus-effect" "2.0.5"
+ "@chakra-ui/react-use-focus-on-pointer-down" "2.0.3"
+ "@chakra-ui/react-use-merge-refs" "2.0.4"
-"@chakra-ui/popper@3.0.7":
- "integrity" "sha512-xLYhuNsk1gOjymtek1ZdZlG21hmg2a7Iu2KsD9Hi7+aUxc2K5/XxX+/vyjjz8u4s0gmj83pTqnauQRynb/TCXA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/popper/-/popper-3.0.7.tgz"
- "version" "3.0.7"
+"@chakra-ui/popper@3.0.8":
+ "integrity" "sha512-246eUwuCRsLpTPxn5T8D8T9/6ODqmmz6pRRJAjGnLlUB0gNHgjisBn0UDBic5Gbxcg0sqKvxOMY3uurbW5lXTA=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/popper/-/popper-3.0.8.tgz"
+ "version" "3.0.8"
dependencies:
"@chakra-ui/react-types" "2.0.3"
- "@chakra-ui/react-use-merge-refs" "2.0.3"
+ "@chakra-ui/react-use-merge-refs" "2.0.4"
"@popperjs/core" "^2.9.3"
-"@chakra-ui/portal@2.0.9":
- "integrity" "sha512-9e9S0MLbkpofPGlyYA12jNYSdndugy6ylPi5pC9nr3/VqG2Kn+8VcBChAeXW8K4ms7WFc74rNX1pBY/UVwr4qg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/portal/-/portal-2.0.9.tgz"
- "version" "2.0.9"
+"@chakra-ui/portal@2.0.10":
+ "integrity" "sha512-VRYvVAggIuqIZ3IQ6XZ1b5ujjjOUgPk9PPdc9jssUngZa7RG+5NXNhgoM8a5TsXv6aPEolBOlDNWuxzRQ4RSSg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/portal/-/portal-2.0.10.tgz"
+ "version" "2.0.10"
dependencies:
- "@chakra-ui/react-context" "2.0.3"
- "@chakra-ui/react-use-safe-layout-effect" "2.0.1"
+ "@chakra-ui/react-context" "2.0.4"
+ "@chakra-ui/react-use-safe-layout-effect" "2.0.2"
-"@chakra-ui/progress@2.0.10":
- "integrity" "sha512-my0Pi3NG1PYhlvCav4fybg3gL5HBNe+7lO4PVdri4QHEyfJlrDeBWID+1GgqlpUWdTj3sOf7ysku+FEgkeOeSA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/progress/-/progress-2.0.10.tgz"
- "version" "2.0.10"
+"@chakra-ui/progress@2.0.12":
+ "integrity" "sha512-9qtZimZosTliI7siAZkLeCVdCpXCTxmSETCudHcCUsC+FtcFacmA65+We8qij1nOIqmsbm+NYU6PP89TU2n4Hg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/progress/-/progress-2.0.12.tgz"
+ "version" "2.0.12"
dependencies:
- "@chakra-ui/react-context" "2.0.3"
+ "@chakra-ui/react-context" "2.0.4"
-"@chakra-ui/provider@2.0.16":
- "integrity" "sha512-4t/PmjJ7WXPPaPfoYgw8F1/rVtorZuvknugHfOZcOtAPGQmOPotSv28qjKpu/mCvc1GMGV0swMsvCeInYz7g0w=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/provider/-/provider-2.0.16.tgz"
- "version" "2.0.16"
+"@chakra-ui/provider@2.0.20":
+ "integrity" "sha512-mNNfsgm05G4x1VzvHVR9+PNEiuxNnn9xUKDuEwoaO7+IHCMzCRMtPbSJjwmv0xvHUGB9+JChjPpZI5RuHQziJQ=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/provider/-/provider-2.0.20.tgz"
+ "version" "2.0.20"
dependencies:
- "@chakra-ui/css-reset" "2.0.7"
- "@chakra-ui/portal" "2.0.9"
- "@chakra-ui/react-env" "2.0.9"
- "@chakra-ui/system" "2.2.9"
- "@chakra-ui/utils" "2.0.9"
+ "@chakra-ui/css-reset" "2.0.8"
+ "@chakra-ui/portal" "2.0.10"
+ "@chakra-ui/react-env" "2.0.10"
+ "@chakra-ui/system" "2.3.0"
+ "@chakra-ui/utils" "2.0.11"
-"@chakra-ui/radio@2.0.10":
- "integrity" "sha512-LhAWsY22cmb+M/iyhFgkzf2+V9TJmAC77Cd+GbP3M3sxDSEUDtq08KOc3JjoYc3GzeZml3JL1yssbxh+liY3xA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/radio/-/radio-2.0.10.tgz"
- "version" "2.0.10"
+"@chakra-ui/radio@2.0.12":
+ "integrity" "sha512-871hqAGQaufxyUzPP3aautPBIRZQmpi3fw5XPZ6SbY62dV61M4sjcttd46HfCf5SrAonoOADFQLMGQafznjhaA=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/radio/-/radio-2.0.12.tgz"
+ "version" "2.0.12"
dependencies:
- "@chakra-ui/form-control" "2.0.9"
- "@chakra-ui/react-context" "2.0.3"
+ "@chakra-ui/form-control" "2.0.11"
+ "@chakra-ui/react-context" "2.0.4"
"@chakra-ui/react-types" "2.0.3"
- "@chakra-ui/react-use-merge-refs" "2.0.3"
+ "@chakra-ui/react-use-merge-refs" "2.0.4"
"@zag-js/focus-visible" "0.1.0"
-"@chakra-ui/react-children-utils@2.0.1":
- "integrity" "sha512-sEgpuh/vWSt2+W0F49EGYXXUyjmg0lbosjVg6qUKHv9sAyx5tbrOrZ6df/TaMUSAe9m3AUOMGqUIPLpxno0DjA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-children-utils/-/react-children-utils-2.0.1.tgz"
- "version" "2.0.1"
-
-"@chakra-ui/react-context@2.0.3":
- "integrity" "sha512-KmPq6sb1y05WsOUqXZtBBC4LsNKZIFrp2thTsLBwcuH7lkXZwPMHmJGKa9K980P+SWEgfH2s2PY2z+QrIuqWGg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-context/-/react-context-2.0.3.tgz"
+"@chakra-ui/react-children-utils@2.0.3":
+ "integrity" "sha512-tPQjLEEuAw/DYLRw0cNs/g8tcdhZ3r21Sr9dTAzoyvfk0vbZ24gCXRElltW2GZLiFA63mAidzhPmc+yQF3Wtgg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-children-utils/-/react-children-utils-2.0.3.tgz"
"version" "2.0.3"
-"@chakra-ui/react-env@2.0.9":
- "integrity" "sha512-4AJHNUGBR19hzVyOILYpZZgq8jGrpEcbhvR++CppbvPH7vfPZpoz6L/cBtHxS07YwDtUeBL8yCNiLlTxctV//Q=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-env/-/react-env-2.0.9.tgz"
- "version" "2.0.9"
+"@chakra-ui/react-context@2.0.4":
+ "integrity" "sha512-eBITFkf7fLSiMZrSdhweK4fYr41WUNMEeIEOP2dCWolE7WgKxNYaYleC+iRGY0GeXkFM2KYywUtixjJe29NuVA=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-context/-/react-context-2.0.4.tgz"
+ "version" "2.0.4"
+
+"@chakra-ui/react-env@2.0.10":
+ "integrity" "sha512-3Yab5EbFcCGYzEsoijy4eA3354Z/JoXyk9chYIuW7Uwd+K6g/R8C0mUSAHeTmfp6Fix9kzDgerO5MWNM87b8cA=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-env/-/react-env-2.0.10.tgz"
+ "version" "2.0.10"
"@chakra-ui/react-types@2.0.3":
"integrity" "sha512-1mJYOQldFTALE0Wr3j6tk/MYvgQIp6CKkJulNzZrI8QN+ox/bJOh8OVP4vhwqvfigdLTui0g0k8M9h+j2ub/Mw=="
"resolved" "https://registry.npmjs.org/@chakra-ui/react-types/-/react-types-2.0.3.tgz"
"version" "2.0.3"
-"@chakra-ui/react-use-animation-state@2.0.3":
- "integrity" "sha512-sjGgzMMmxurwKDSFhDLpLNn3SWUERI5iAZOOa0pYnyOLGVXMowgIjK6jpZxre1vc3A+unjJk5P4qeiyY+C4uwQ=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-animation-state/-/react-use-animation-state-2.0.3.tgz"
- "version" "2.0.3"
+"@chakra-ui/react-use-animation-state@2.0.5":
+ "integrity" "sha512-8gZIqZpMS5yTGlC+IqYoSrV13joiAYoeI0YR2t68WuDagcZ459OrjE57+gF04NLxfdV7eUgwqnpuv7IOLbJX/A=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-animation-state/-/react-use-animation-state-2.0.5.tgz"
+ "version" "2.0.5"
dependencies:
- "@chakra-ui/dom-utils" "2.0.1"
- "@chakra-ui/react-use-event-listener" "2.0.3"
+ "@chakra-ui/dom-utils" "2.0.3"
+ "@chakra-ui/react-use-event-listener" "2.0.4"
-"@chakra-ui/react-use-callback-ref@2.0.3":
- "integrity" "sha512-kdYlhgnQKWWLNwl3WSv/Oq3+mlnu2p3y4Xc1AqKVHVcBOdQE9lpW3d7ZaOoK2aIXXWq1rocscOiXBUtM0Vqd2A=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-callback-ref/-/react-use-callback-ref-2.0.3.tgz"
- "version" "2.0.3"
+"@chakra-ui/react-use-callback-ref@2.0.4":
+ "integrity" "sha512-he7EQfwMA4mwiDDKvX7cHIJaboCqf7UD3KYHGUcIjsF4dSc2Y8X5Ze4w+hmVZoJWIe4DWUzb3ili2SUm8eTgPg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-callback-ref/-/react-use-callback-ref-2.0.4.tgz"
+ "version" "2.0.4"
-"@chakra-ui/react-use-controllable-state@2.0.3":
- "integrity" "sha512-su8efwCWWnY2LQUU6PEnYwSGJX8kvPSO2KyUKuymx8q3fNWuyhzAZriG/TbeeCxESLp70+wuniUlSGRa4vxylQ=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-controllable-state/-/react-use-controllable-state-2.0.3.tgz"
- "version" "2.0.3"
+"@chakra-ui/react-use-controllable-state@2.0.5":
+ "integrity" "sha512-JrZZpMX24CUyfDuyqDczw9Z9IMvjH8ujETHK0Zu4M0SIsX/q4EqOwwngUFL03I2gx/O38HfSdeX8hMu4zbTAGA=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-controllable-state/-/react-use-controllable-state-2.0.5.tgz"
+ "version" "2.0.5"
dependencies:
- "@chakra-ui/react-use-callback-ref" "2.0.3"
+ "@chakra-ui/react-use-callback-ref" "2.0.4"
-"@chakra-ui/react-use-disclosure@2.0.3":
- "integrity" "sha512-3IdrzvQZcgjqSx5wTVffInOyhMU+d3ZlIE26JmqejMyN/B+qAs932iKfm0A1mTMPTz38ZnNtuaKazmzyfR1ePg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-disclosure/-/react-use-disclosure-2.0.3.tgz"
- "version" "2.0.3"
+"@chakra-ui/react-use-disclosure@2.0.5":
+ "integrity" "sha512-kPLB9oxImASRhAbKfvfc03/lbAJbsXndEVRzd+nvvL+QZm2RRfnel3k6OIkWvGFOXXYOPE2+slLe8ZPwbTGg9g=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-disclosure/-/react-use-disclosure-2.0.5.tgz"
+ "version" "2.0.5"
dependencies:
- "@chakra-ui/react-use-callback-ref" "2.0.3"
+ "@chakra-ui/react-use-callback-ref" "2.0.4"
-"@chakra-ui/react-use-event-listener@2.0.3":
- "integrity" "sha512-m3ZdJjo3QQ1HcQGnehlBTgHaCVewz5fwIRTXVzbZTraVJr4k589Zf87eagW57tT4dyv656lSmdhaFGZ8p5Snww=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-event-listener/-/react-use-event-listener-2.0.3.tgz"
- "version" "2.0.3"
+"@chakra-ui/react-use-event-listener@2.0.4":
+ "integrity" "sha512-VqmalfKWMO8D21XuZO19WUtcP5xhbHXKzkggApTChZUN02UC5TC4pe0pYbDygoeUuNBhY+9lJKHeS08vYsljRg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-event-listener/-/react-use-event-listener-2.0.4.tgz"
+ "version" "2.0.4"
dependencies:
- "@chakra-ui/react-use-callback-ref" "2.0.3"
+ "@chakra-ui/react-use-callback-ref" "2.0.4"
-"@chakra-ui/react-use-focus-effect@2.0.3":
- "integrity" "sha512-N0rho7P+rH5cn13dbS8GUOye+6RYXAmXhmlS+WW/3lWidGH3HAbMoOVf56UiuSnE1+2or8/U7qRshUryj2H1nA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-focus-effect/-/react-use-focus-effect-2.0.3.tgz"
- "version" "2.0.3"
+"@chakra-ui/react-use-focus-effect@2.0.5":
+ "integrity" "sha512-sbe1QnsXXfjukM+laxbKnT0UnMpHe/7kTzEPG/BYM6/ZDUUmrC1Nz+8l+3H/52iWIaruikDBdif/Xd37Yvu3Kg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-focus-effect/-/react-use-focus-effect-2.0.5.tgz"
+ "version" "2.0.5"
dependencies:
- "@chakra-ui/dom-utils" "2.0.1"
- "@chakra-ui/react-use-event-listener" "2.0.3"
- "@chakra-ui/react-use-update-effect" "2.0.3"
+ "@chakra-ui/dom-utils" "2.0.3"
+ "@chakra-ui/react-use-event-listener" "2.0.4"
+ "@chakra-ui/react-use-update-effect" "2.0.4"
-"@chakra-ui/react-use-focus-on-pointer-down@2.0.1":
- "integrity" "sha512-f0qL2iWvajUo+0jwDZyJpUMJ6J6BH3WjDZE2Rp6cns4pgI6uYuv2gj+FqQ5jnoYdXkeER6lBI56a+aIW/1RYiA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-focus-on-pointer-down/-/react-use-focus-on-pointer-down-2.0.1.tgz"
- "version" "2.0.1"
+"@chakra-ui/react-use-focus-on-pointer-down@2.0.3":
+ "integrity" "sha512-8cKmpv26JnblexNaekWxEDI7M+MZnJcp1PJUz6lByjfQ1m4YjFr1cdbdhG4moaqzzYs7vTmO/qL8KVq8ZLUwyQ=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-focus-on-pointer-down/-/react-use-focus-on-pointer-down-2.0.3.tgz"
+ "version" "2.0.3"
dependencies:
- "@chakra-ui/react-use-event-listener" "2.0.3"
+ "@chakra-ui/react-use-event-listener" "2.0.4"
-"@chakra-ui/react-use-interval@2.0.1":
- "integrity" "sha512-6ZLzKA7Ga894UZcXO3bbGYThlhviiau1oxZ1UcJG5pUXNM9Up7O/4Joq31sL+KcpteCN45vd1etomilsv/blxw=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-interval/-/react-use-interval-2.0.1.tgz"
- "version" "2.0.1"
+"@chakra-ui/react-use-interval@2.0.2":
+ "integrity" "sha512-5U1c0pEB5n0Yri0E4RdFXWx2RVBZBBhD8Uu49dM33jkIguCbIPmZ+YgVry5DDzCHyz4RgDg4yZKOPK0PI8lEUg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-interval/-/react-use-interval-2.0.2.tgz"
+ "version" "2.0.2"
dependencies:
- "@chakra-ui/react-use-callback-ref" "2.0.3"
+ "@chakra-ui/react-use-callback-ref" "2.0.4"
-"@chakra-ui/react-use-merge-refs@2.0.3":
- "integrity" "sha512-n35BmVbasy5Esa6qxznWmiV3NaRxGpqMpZH0n+X7aXt8VkGAJzRpAVjUmKCLNYyCLpqsQceCmAEK8a5SR6vxqw=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-merge-refs/-/react-use-merge-refs-2.0.3.tgz"
- "version" "2.0.3"
+"@chakra-ui/react-use-latest-ref@2.0.2":
+ "integrity" "sha512-Ra/NMV+DSQ3n0AdKsyIqdgnFzls5UntabtIRfDXLrqmJ4tI0a1tDdop2qop0Ue87AcqD9P1KtQue4KPx7wCElw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-latest-ref/-/react-use-latest-ref-2.0.2.tgz"
+ "version" "2.0.2"
-"@chakra-ui/react-use-outside-click@2.0.3":
- "integrity" "sha512-r5OohM8lOuZTz6e3vVHvfm/3sEkd06nUPBNU+r3rWh1I7bR9z5Gia/BOQD6GE4jUTanDkHcH76Pf9qJ45kpibQ=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-outside-click/-/react-use-outside-click-2.0.3.tgz"
- "version" "2.0.3"
- dependencies:
- "@chakra-ui/react-use-callback-ref" "2.0.3"
+"@chakra-ui/react-use-merge-refs@2.0.4":
+ "integrity" "sha512-aoWvtE5tDQNaLCiNUI6WV+MA2zVcCLR5mHSCISmowlTXyXOqOU5Fo9ZoUftzrmgCJpDu5x1jfUOivxuHUueb0g=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-merge-refs/-/react-use-merge-refs-2.0.4.tgz"
+ "version" "2.0.4"
-"@chakra-ui/react-use-pan-event@2.0.4":
- "integrity" "sha512-lcEjngfCgIjE5qZeJiaDx+aJzZPLjbjUmbWumi8pIgWOnDL8Ffjh7AMKW4CddP5OgcRnDDb+7aqJbb55wraboA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-pan-event/-/react-use-pan-event-2.0.4.tgz"
+"@chakra-ui/react-use-outside-click@2.0.4":
+ "integrity" "sha512-uerJKS8dqg2kHs1xozA5vcCqW0UInuwrfCPb+rDWBTpu7aEqxABMw9W3e4gfOABrAjhKz2I0a/bu2i8zbVwdLw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-outside-click/-/react-use-outside-click-2.0.4.tgz"
"version" "2.0.4"
dependencies:
- "@chakra-ui/event-utils" "2.0.4"
+ "@chakra-ui/react-use-callback-ref" "2.0.4"
+
+"@chakra-ui/react-use-pan-event@2.0.5":
+ "integrity" "sha512-nhE3b85++EEmBD2v6m46TLoA4LehSCZ349P8kvEjw/RC0K6XDOZndaBucIeAlnpEENSSUpczFfMSOLxSHdu0oA=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-pan-event/-/react-use-pan-event-2.0.5.tgz"
+ "version" "2.0.5"
+ dependencies:
+ "@chakra-ui/event-utils" "2.0.5"
+ "@chakra-ui/react-use-latest-ref" "2.0.2"
"framesync" "5.3.0"
-"@chakra-ui/react-use-previous@2.0.1":
- "integrity" "sha512-ROi+/puVd8D1QaxBSOcGlJNqV2x02ppSgmXzZZJhM8ryFLZjY9ojV3HhamB2IJ/7SIb1rMSSV1GPedFw7YMCwA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-previous/-/react-use-previous-2.0.1.tgz"
- "version" "2.0.1"
+"@chakra-ui/react-use-previous@2.0.2":
+ "integrity" "sha512-ap/teLRPKopaHYD80fnf0TR/NpTWHJO5VdKg6sPyF1y5ediYLAzPT1G2OqMCj4QfJsYDctioT142URDYe0Nn7w=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-previous/-/react-use-previous-2.0.2.tgz"
+ "version" "2.0.2"
-"@chakra-ui/react-use-safe-layout-effect@2.0.1":
- "integrity" "sha512-H+ZOjkPqv3KBPEoP68JKpQBNdLOI0mwzEiTT397UdvBVCCJ+1/ijWVUT+Ub/pYic60O6xUghy5ORaWqJHhnKDA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-safe-layout-effect/-/react-use-safe-layout-effect-2.0.1.tgz"
- "version" "2.0.1"
+"@chakra-ui/react-use-safe-layout-effect@2.0.2":
+ "integrity" "sha512-gl5HDq9RVeDJiT8udtpx12KRV8JPLJHDIUX8f/yZcKpXow0C7FFGg5Yy5I9397NQog5ZjKMuOg+AUq9TLJxsyQ=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-safe-layout-effect/-/react-use-safe-layout-effect-2.0.2.tgz"
+ "version" "2.0.2"
-"@chakra-ui/react-use-size@2.0.3":
- "integrity" "sha512-hr4hKepPUmM2paXseSZiOTK2y+ZqnSzYNusDEB01f+cDerFjdN1jSfNJKXpiKF0+hNESXfOPQb3Zt0eDusRdoA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-size/-/react-use-size-2.0.3.tgz"
- "version" "2.0.3"
+"@chakra-ui/react-use-size@2.0.4":
+ "integrity" "sha512-W6rgTLuoSC4ovZtqYco8cG+yBadH3bhlg92T5lgpKDakSDr0mXcZdbGx6g0AOkgxXm0V1jWNGO1743wudtF7ew=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-size/-/react-use-size-2.0.4.tgz"
+ "version" "2.0.4"
dependencies:
"@zag-js/element-size" "0.1.0"
-"@chakra-ui/react-use-timeout@2.0.1":
- "integrity" "sha512-zXh9RH+GciKr8hvaOADHOoHP72B7UZUEymA8CWCV4WEs/9s/PfQJH7X1bwvaj43CcOmfVQg4oODWqCYQM1lSsg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-timeout/-/react-use-timeout-2.0.1.tgz"
- "version" "2.0.1"
+"@chakra-ui/react-use-timeout@2.0.2":
+ "integrity" "sha512-n6zb3OmxtDmRMxYkDgILqKh15aDOa8jNLHBlqHzmlL6mEGNKmMFPW9j/KvpAqSgKjUTDRnnXcpneprTMKy/yrw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-timeout/-/react-use-timeout-2.0.2.tgz"
+ "version" "2.0.2"
dependencies:
- "@chakra-ui/react-use-callback-ref" "2.0.3"
+ "@chakra-ui/react-use-callback-ref" "2.0.4"
-"@chakra-ui/react-use-update-effect@2.0.3":
- "integrity" "sha512-8hkP1o/UUUA49w/R+XyAlPiCjxXTCWCNsHWUOEhAitjJfoCNUjgaNKOD52hT07kc5ACJEcJQHA5327LnwtiIlg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-update-effect/-/react-use-update-effect-2.0.3.tgz"
- "version" "2.0.3"
+"@chakra-ui/react-use-update-effect@2.0.4":
+ "integrity" "sha512-F/I9LVnGAQyvww+x7tQb47wCwjhMYjpxtM1dTg1U3oCEXY0yF1Ts3NJLUAlsr3nAW6epJIwWx61niC7KWpam1w=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-use-update-effect/-/react-use-update-effect-2.0.4.tgz"
+ "version" "2.0.4"
-"@chakra-ui/react-utils@2.0.6":
- "integrity" "sha512-ZL0FPaolovXOxMzYRSLHgBYtvxIkA/c5GTSYpXL8DcC+TBLZnAmQ8BPTS2b6xys6xvwdQjkZRUeQ0cBNFaryJg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react-utils/-/react-utils-2.0.6.tgz"
- "version" "2.0.6"
+"@chakra-ui/react-utils@2.0.8":
+ "integrity" "sha512-OSHHBKZlJWTi2NZcPnBx1PyZvLQY+n5RPBtcri7/89EDdAwz2NdEhp2Dz1yQRctOSCF1kB/rnCYDP1U0oRk9RQ=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react-utils/-/react-utils-2.0.8.tgz"
+ "version" "2.0.8"
dependencies:
- "@chakra-ui/utils" "2.0.9"
+ "@chakra-ui/utils" "2.0.11"
"@chakra-ui/react@^2.3.2":
- "integrity" "sha512-qOcDLbA1x4pnpJPtF4YJ7pZzK/ki6SoQl9Vj7fsR+hJw1lt3y1475NSyYGiA6qgho/8twUgYLhcdrTbQPcmOHg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/react/-/react-2.3.2.tgz"
- "version" "2.3.2"
- dependencies:
- "@chakra-ui/accordion" "2.0.12"
- "@chakra-ui/alert" "2.0.9"
- "@chakra-ui/avatar" "2.1.0"
- "@chakra-ui/breadcrumb" "2.0.9"
- "@chakra-ui/button" "2.0.9"
- "@chakra-ui/checkbox" "2.1.8"
- "@chakra-ui/close-button" "2.0.9"
- "@chakra-ui/control-box" "2.0.9"
- "@chakra-ui/counter" "2.0.9"
- "@chakra-ui/css-reset" "2.0.7"
- "@chakra-ui/editable" "2.0.9"
- "@chakra-ui/form-control" "2.0.9"
- "@chakra-ui/hooks" "2.0.9"
- "@chakra-ui/icon" "3.0.9"
- "@chakra-ui/image" "2.0.10"
- "@chakra-ui/input" "2.0.9"
- "@chakra-ui/layout" "2.1.6"
- "@chakra-ui/live-region" "2.0.9"
- "@chakra-ui/media-query" "3.2.5"
- "@chakra-ui/menu" "2.0.13"
- "@chakra-ui/modal" "2.1.7"
- "@chakra-ui/number-input" "2.0.9"
- "@chakra-ui/pin-input" "2.0.12"
- "@chakra-ui/popover" "2.0.9"
- "@chakra-ui/popper" "3.0.7"
- "@chakra-ui/portal" "2.0.9"
- "@chakra-ui/progress" "2.0.10"
- "@chakra-ui/provider" "2.0.16"
- "@chakra-ui/radio" "2.0.10"
- "@chakra-ui/react-env" "2.0.9"
- "@chakra-ui/select" "2.0.10"
- "@chakra-ui/skeleton" "2.0.15"
- "@chakra-ui/slider" "2.0.10"
- "@chakra-ui/spinner" "2.0.9"
- "@chakra-ui/stat" "2.0.9"
- "@chakra-ui/switch" "2.0.11"
- "@chakra-ui/system" "2.2.9"
- "@chakra-ui/table" "2.0.9"
- "@chakra-ui/tabs" "2.1.1"
- "@chakra-ui/tag" "2.0.9"
- "@chakra-ui/textarea" "2.0.10"
- "@chakra-ui/theme" "2.1.11"
- "@chakra-ui/toast" "3.0.10"
- "@chakra-ui/tooltip" "2.0.10"
- "@chakra-ui/transition" "2.0.9"
- "@chakra-ui/utils" "2.0.9"
- "@chakra-ui/visually-hidden" "2.0.9"
-
-"@chakra-ui/select@2.0.10":
- "integrity" "sha512-7AslBWwI/JyczjMMGtPuN34M/C38koVd+N/pb6swHoIP9TRkkdvDlonIakcmtO1oLEzlNIFKmt4FQ7bUp9ea5Q=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/select/-/select-2.0.10.tgz"
- "version" "2.0.10"
+ "integrity" "sha512-xo43UU+yMqRGHZLU4fSgzojeRl5stlIfT+GLbT9CUVEm0HMJCt2m8RsNPBvGOMzANdC+bzwSiOm+MNzQBi9IBQ=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/react/-/react-2.3.6.tgz"
+ "version" "2.3.6"
+ dependencies:
+ "@chakra-ui/accordion" "2.1.2"
+ "@chakra-ui/alert" "2.0.11"
+ "@chakra-ui/avatar" "2.2.0"
+ "@chakra-ui/breadcrumb" "2.1.0"
+ "@chakra-ui/button" "2.0.11"
+ "@chakra-ui/checkbox" "2.2.2"
+ "@chakra-ui/close-button" "2.0.11"
+ "@chakra-ui/control-box" "2.0.10"
+ "@chakra-ui/counter" "2.0.10"
+ "@chakra-ui/css-reset" "2.0.8"
+ "@chakra-ui/editable" "2.0.13"
+ "@chakra-ui/form-control" "2.0.11"
+ "@chakra-ui/hooks" "2.1.0"
+ "@chakra-ui/icon" "3.0.11"
+ "@chakra-ui/image" "2.0.11"
+ "@chakra-ui/input" "2.0.12"
+ "@chakra-ui/layout" "2.1.9"
+ "@chakra-ui/live-region" "2.0.10"
+ "@chakra-ui/media-query" "3.2.7"
+ "@chakra-ui/menu" "2.1.2"
+ "@chakra-ui/modal" "2.2.2"
+ "@chakra-ui/number-input" "2.0.12"
+ "@chakra-ui/pin-input" "2.0.15"
+ "@chakra-ui/popover" "2.1.1"
+ "@chakra-ui/popper" "3.0.8"
+ "@chakra-ui/portal" "2.0.10"
+ "@chakra-ui/progress" "2.0.12"
+ "@chakra-ui/provider" "2.0.20"
+ "@chakra-ui/radio" "2.0.12"
+ "@chakra-ui/react-env" "2.0.10"
+ "@chakra-ui/select" "2.0.12"
+ "@chakra-ui/skeleton" "2.0.17"
+ "@chakra-ui/slider" "2.0.12"
+ "@chakra-ui/spinner" "2.0.10"
+ "@chakra-ui/stat" "2.0.11"
+ "@chakra-ui/styled-system" "2.3.4"
+ "@chakra-ui/switch" "2.0.14"
+ "@chakra-ui/system" "2.3.0"
+ "@chakra-ui/table" "2.0.11"
+ "@chakra-ui/tabs" "2.1.4"
+ "@chakra-ui/tag" "2.0.11"
+ "@chakra-ui/textarea" "2.0.12"
+ "@chakra-ui/theme" "2.1.14"
+ "@chakra-ui/theme-utils" "2.0.1"
+ "@chakra-ui/toast" "4.0.0"
+ "@chakra-ui/tooltip" "2.2.0"
+ "@chakra-ui/transition" "2.0.11"
+ "@chakra-ui/utils" "2.0.11"
+ "@chakra-ui/visually-hidden" "2.0.11"
+
+"@chakra-ui/select@2.0.12":
+ "integrity" "sha512-NCDMb0w48GYCHmazVSQ7/ysEpbnri+Up6n+v7yytf6g43TPRkikvK5CsVgLnAEj0lIdCJhWXTcZer5wG5KOEgA=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/select/-/select-2.0.12.tgz"
+ "version" "2.0.12"
dependencies:
- "@chakra-ui/form-control" "2.0.9"
+ "@chakra-ui/form-control" "2.0.11"
-"@chakra-ui/shared-utils@2.0.1":
- "integrity" "sha512-NXDBl/u4wrSNp0ON5R3r3evkRurrAz2yuO7neooaG+O5HEenVouGqm4CsXd6lUAPmjwiGzA0LQFNCt0Hj92dXg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/shared-utils/-/shared-utils-2.0.1.tgz"
- "version" "2.0.1"
+"@chakra-ui/shared-utils@2.0.2":
+ "integrity" "sha512-wC58Fh6wCnFFQyiebVZ0NI7PFW9+Vch0QE6qN7iR+bLseOzQY9miYuzPJ1kMYiFd6QTOmPJkI39M3wHqrPYiOg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/shared-utils/-/shared-utils-2.0.2.tgz"
+ "version" "2.0.2"
-"@chakra-ui/skeleton@2.0.15":
- "integrity" "sha512-QVMkXwrH9jLfim8uJTZcjHeGjzoquNcHGXD5wapd7eDqp9BygvmMXAHBxFm8eEJLHuvIqLX94P6DLeiieYwX7Q=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/skeleton/-/skeleton-2.0.15.tgz"
- "version" "2.0.15"
+"@chakra-ui/skeleton@2.0.17":
+ "integrity" "sha512-dL7viXEKDEzmAJGbHMj+QbGl9PAd0VWztEcWcz5wOGfmAcJllA0lVh6NmG/yqLb6iXPCX4Y1Y0Yurm459TEYWg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/skeleton/-/skeleton-2.0.17.tgz"
+ "version" "2.0.17"
dependencies:
- "@chakra-ui/media-query" "3.2.5"
- "@chakra-ui/react-use-previous" "2.0.1"
+ "@chakra-ui/media-query" "3.2.7"
+ "@chakra-ui/react-use-previous" "2.0.2"
-"@chakra-ui/slider@2.0.10":
- "integrity" "sha512-F0RGl2ruADbXO/GnoBUiTEl+przxhZo2e0tfw9VTtS+RsJZ22uHrTNVvVJHNmjK7/E3++kBfaLCacoJFz/io+g=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/slider/-/slider-2.0.10.tgz"
- "version" "2.0.10"
+"@chakra-ui/slider@2.0.12":
+ "integrity" "sha512-Cna04J7e4+F3tJNb7tRNfPP+koicbDsKJBp+f1NpR32JbRzIfrf2Vdr4hfD5/uOfC4RGxnVInNZzZLGBelLtLw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/slider/-/slider-2.0.12.tgz"
+ "version" "2.0.12"
dependencies:
- "@chakra-ui/number-utils" "2.0.3"
- "@chakra-ui/react-context" "2.0.3"
+ "@chakra-ui/number-utils" "2.0.4"
+ "@chakra-ui/react-context" "2.0.4"
"@chakra-ui/react-types" "2.0.3"
- "@chakra-ui/react-use-callback-ref" "2.0.3"
- "@chakra-ui/react-use-controllable-state" "2.0.3"
- "@chakra-ui/react-use-merge-refs" "2.0.3"
- "@chakra-ui/react-use-pan-event" "2.0.4"
- "@chakra-ui/react-use-size" "2.0.3"
- "@chakra-ui/react-use-update-effect" "2.0.3"
-
-"@chakra-ui/spinner@2.0.9":
- "integrity" "sha512-9ALl51fiVWptDu2J2xcv0TSfGf4buumpHrEXHvV2Qy+HZ6rYnUmSThBSb/VgoQS+rASG8bAbLUPlQTQ+v9ibFg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/spinner/-/spinner-2.0.9.tgz"
- "version" "2.0.9"
-
-"@chakra-ui/stat@2.0.9":
- "integrity" "sha512-C9cytqegWSGJ/hh3/qwsgGlerXLYHrU0iQcJQ+pKSRFJhshXsv3go5IR6kVL72Yf2s4Gs5c3GsMZrLM22ePpDg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/stat/-/stat-2.0.9.tgz"
- "version" "2.0.9"
- dependencies:
- "@chakra-ui/icon" "3.0.9"
- "@chakra-ui/react-context" "2.0.3"
-
-"@chakra-ui/styled-system@>=2.0.0", "@chakra-ui/styled-system@2.3.1":
- "integrity" "sha512-jyR9s2yk5TEyq4HUfjrgUeaOzd9ZTZrbjK96UjtiTCZGO/q4j2RXtYvfheUjUyW1UnzI2A1ffHOJca8tBMDjpA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/styled-system/-/styled-system-2.3.1.tgz"
- "version" "2.3.1"
+ "@chakra-ui/react-use-callback-ref" "2.0.4"
+ "@chakra-ui/react-use-controllable-state" "2.0.5"
+ "@chakra-ui/react-use-latest-ref" "2.0.2"
+ "@chakra-ui/react-use-merge-refs" "2.0.4"
+ "@chakra-ui/react-use-pan-event" "2.0.5"
+ "@chakra-ui/react-use-size" "2.0.4"
+ "@chakra-ui/react-use-update-effect" "2.0.4"
+
+"@chakra-ui/spinner@2.0.10":
+ "integrity" "sha512-SwId1xPaaFAaEYrR9eHkQHAuB66CbxwjWaQonEjeEUSh9ecxkd5WbXlsQSyf2hVRIqXJg0m3HIYblcKUsQt9Rw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/spinner/-/spinner-2.0.10.tgz"
+ "version" "2.0.10"
+
+"@chakra-ui/stat@2.0.11":
+ "integrity" "sha512-ZPFK2fKufDSHD8bp/KhO3jLgW/b3PzdG4zV+7iTO7OYjxm5pkBfBAeMqfXGx4cl51rtWUKzsY0HV4vLLjcSjHw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/stat/-/stat-2.0.11.tgz"
+ "version" "2.0.11"
+ dependencies:
+ "@chakra-ui/icon" "3.0.11"
+ "@chakra-ui/react-context" "2.0.4"
+
+"@chakra-ui/styled-system@>=2.0.0", "@chakra-ui/styled-system@2.3.4":
+ "integrity" "sha512-Lozbedu+GBj4EbHB/eGv475SFDLApsIEN9gNKiZJBJAE1HIhHn3Seh1iZQSrHC/Beq+D5cQq3Z+yPn3bXtFU7w=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/styled-system/-/styled-system-2.3.4.tgz"
+ "version" "2.3.4"
dependencies:
"csstype" "^3.0.11"
"lodash.mergewith" "4.6.2"
-"@chakra-ui/switch@2.0.11":
- "integrity" "sha512-gY8OGBnoPosZpq7dDNVf432t67pTc/cz5VkGhbtER7bbjXSoXe0DAiAYL+HT2kD7mbTJQzzHK/y0St0WimR1Mw=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/switch/-/switch-2.0.11.tgz"
- "version" "2.0.11"
+"@chakra-ui/switch@2.0.14":
+ "integrity" "sha512-6lzhCkJq7vbD3yGaorGLp0ZZU4ewdKwAu0e62qR8TfYZwbcbpkXbBKloIHbA2XKOduISzS2WYqjmoP6jSKIxrA=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/switch/-/switch-2.0.14.tgz"
+ "version" "2.0.14"
dependencies:
- "@chakra-ui/checkbox" "2.1.8"
+ "@chakra-ui/checkbox" "2.2.2"
-"@chakra-ui/system@>=2.0.0", "@chakra-ui/system@2.2.9":
- "integrity" "sha512-SyTeIGm+goyYK8vqX4dU6oeLhxUAeGI3Cl+mxA+aiKIX01YTALhTWhpbrsuMYBevV+l9EGK12egPUQE+Mo3WlQ=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/system/-/system-2.2.9.tgz"
- "version" "2.2.9"
+"@chakra-ui/system@>=2.0.0", "@chakra-ui/system@2.3.0":
+ "integrity" "sha512-BxikahglBI0uU8FE3anEorDTU5oKTUuBIEKVcQrEVnrbNuRJEy1OVYyCNXfqW3MpruRO9ypYV2bWt02AZZWEaQ=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/system/-/system-2.3.0.tgz"
+ "version" "2.3.0"
dependencies:
- "@chakra-ui/color-mode" "2.1.7"
- "@chakra-ui/react-utils" "2.0.6"
- "@chakra-ui/styled-system" "2.3.1"
- "@chakra-ui/utils" "2.0.9"
+ "@chakra-ui/color-mode" "2.1.9"
+ "@chakra-ui/react-utils" "2.0.8"
+ "@chakra-ui/styled-system" "2.3.4"
+ "@chakra-ui/theme-utils" "2.0.1"
+ "@chakra-ui/utils" "2.0.11"
"react-fast-compare" "3.2.0"
-"@chakra-ui/table@2.0.9":
- "integrity" "sha512-XRz6+x4dMeQX3xyViyG2H/P1STI/2vwvgU2cjzzwS+5fZ2JdGaTgYzBb+IZoH9agEq1Ma3rlKMUPDrRCFb7kLQ=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/table/-/table-2.0.9.tgz"
- "version" "2.0.9"
+"@chakra-ui/table@2.0.11":
+ "integrity" "sha512-zQTiqPKEgjdeO/PG0FByn0fH4sPF7dLJF+YszrIzDc6wvpD96iY6MYLeV+CSelbH1g0/uibcJ10PSaFStfGUZg=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/table/-/table-2.0.11.tgz"
+ "version" "2.0.11"
dependencies:
- "@chakra-ui/react-context" "2.0.3"
-
-"@chakra-ui/tabs@2.1.1":
- "integrity" "sha512-xA+vwqpAHb0nBLrkiO5Lea2UDGROyAIBqsyp/8XXXEr6eKxtNe1I6WJPbDQy0aazB2ToAA0R6fT34HjLaXP8MQ=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/tabs/-/tabs-2.1.1.tgz"
- "version" "2.1.1"
+ "@chakra-ui/react-context" "2.0.4"
+
+"@chakra-ui/tabs@2.1.4":
+ "integrity" "sha512-/CQGj1lC9lvruT5BCYZH6Ok64W4CDSysDXuR2XPZXIih9kVOdXQEMXxG8+3vc63WqTBjHuURtZI0g8ouOy84ew=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/tabs/-/tabs-2.1.4.tgz"
+ "version" "2.1.4"
+ dependencies:
+ "@chakra-ui/clickable" "2.0.10"
+ "@chakra-ui/descendant" "3.0.10"
+ "@chakra-ui/lazy-utils" "2.0.2"
+ "@chakra-ui/react-children-utils" "2.0.3"
+ "@chakra-ui/react-context" "2.0.4"
+ "@chakra-ui/react-use-controllable-state" "2.0.5"
+ "@chakra-ui/react-use-merge-refs" "2.0.4"
+ "@chakra-ui/react-use-safe-layout-effect" "2.0.2"
+
+"@chakra-ui/tag@2.0.11":
+ "integrity" "sha512-iJJcX+4hl+6Se/8eCRzG+xxDwZfiYgc4Ly/8s93M0uW2GLb+ybbfSE2DjeKSyk3mQVeGzuxGkBfDHH2c2v26ew=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/tag/-/tag-2.0.11.tgz"
+ "version" "2.0.11"
dependencies:
- "@chakra-ui/clickable" "2.0.9"
- "@chakra-ui/descendant" "3.0.9"
- "@chakra-ui/lazy-utils" "2.0.1"
- "@chakra-ui/react-children-utils" "2.0.1"
- "@chakra-ui/react-context" "2.0.3"
- "@chakra-ui/react-use-controllable-state" "2.0.3"
- "@chakra-ui/react-use-merge-refs" "2.0.3"
- "@chakra-ui/react-use-safe-layout-effect" "2.0.1"
-
-"@chakra-ui/tag@2.0.9":
- "integrity" "sha512-NKARwhsZ04t2vkrdRhNcakEiVtg1q44yUUsDw2Jwdu4idAWQupZGGochQI2Ac4T2MI1b66zQUkaGnm3l1mhTtg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/tag/-/tag-2.0.9.tgz"
- "version" "2.0.9"
- dependencies:
- "@chakra-ui/icon" "3.0.9"
- "@chakra-ui/react-context" "2.0.3"
-
-"@chakra-ui/textarea@2.0.10":
- "integrity" "sha512-HSo0EPsY8XKGA+Af6jTob1oe1T6NKZwgjLmX0binK3MMM9pDTXsUTw8GD0g971lxw9oktVMLK/O9QVAgVAm5mw=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/textarea/-/textarea-2.0.10.tgz"
- "version" "2.0.10"
+ "@chakra-ui/icon" "3.0.11"
+ "@chakra-ui/react-context" "2.0.4"
+
+"@chakra-ui/textarea@2.0.12":
+ "integrity" "sha512-msR9YMynRXwZIqR6DgjQ2MogA/cW1syBx/R0v3es+9Zx8zlbuKdoLhYqajHteCup8dUzTeIH2Vs2vAwgq4wu5A=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/textarea/-/textarea-2.0.12.tgz"
+ "version" "2.0.12"
dependencies:
- "@chakra-ui/form-control" "2.0.9"
+ "@chakra-ui/form-control" "2.0.11"
-"@chakra-ui/theme-tools@2.0.11":
- "integrity" "sha512-0Juf98bAyOgnBeQ39nMKWqRsOxZDw75BbAB8o0oVyjhYVS1wJh7tFX1ZRV8N/+AN6fuRXEznZPpyUh3J+ZTiRg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/theme-tools/-/theme-tools-2.0.11.tgz"
- "version" "2.0.11"
+"@chakra-ui/theme-tools@2.0.12":
+ "integrity" "sha512-mnMlKSmXkCjHUJsKWmJbgBTGF2vnLaMLv1ihkBn5eQcCubMQrBLTiMAEFl5pZdzuHItU6QdnLGA10smcXbNl0g=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/theme-tools/-/theme-tools-2.0.12.tgz"
+ "version" "2.0.12"
dependencies:
- "@chakra-ui/anatomy" "2.0.6"
+ "@chakra-ui/anatomy" "2.0.7"
"@ctrl/tinycolor" "^3.4.0"
-"@chakra-ui/theme@2.1.11":
- "integrity" "sha512-gI0NLU6wO/5cRq8gbDHuy24Y/ZhJxN4D/2uucNN9is3h+d58/En5jV3fwzZW8PLiLKW/T2CmbYWEZWV2YkcUVA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/theme/-/theme-2.1.11.tgz"
- "version" "2.1.11"
+"@chakra-ui/theme-utils@2.0.1":
+ "integrity" "sha512-NDwzgTPxm+v3PAJlSSU1MORHLMqO9vsRJ+ObELD5wpvE9aEyRziN/AZSoK2oLwCQMPEiU7R99K5ij1E6ptMt7w=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/theme-utils/-/theme-utils-2.0.1.tgz"
+ "version" "2.0.1"
dependencies:
- "@chakra-ui/anatomy" "2.0.6"
- "@chakra-ui/theme-tools" "2.0.11"
+ "@chakra-ui/styled-system" "2.3.4"
+ "@chakra-ui/theme" "2.1.14"
+ "lodash.mergewith" "4.6.2"
-"@chakra-ui/toast@3.0.10":
- "integrity" "sha512-i/oEtzmarO0hM6fxa55OmA8ZGkZv9b+vIC2xs5kQ/C0rJaC0ycibok8srq2Stjq9309fZNezyzThQp6e9acUYQ=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/toast/-/toast-3.0.10.tgz"
- "version" "3.0.10"
+"@chakra-ui/theme@2.1.14":
+ "integrity" "sha512-6EYJCQlrjSjNAJvZmw1un50F8+sQDFsdwu/7UzWe+TeANpKlz4ZcHbh0gkl3PD62lGis+ehITUwqRm8htvDOjw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/theme/-/theme-2.1.14.tgz"
+ "version" "2.1.14"
dependencies:
- "@chakra-ui/alert" "2.0.9"
- "@chakra-ui/close-button" "2.0.9"
- "@chakra-ui/portal" "2.0.9"
- "@chakra-ui/react-use-timeout" "2.0.1"
- "@chakra-ui/react-use-update-effect" "2.0.3"
- "@chakra-ui/theme" "2.1.11"
+ "@chakra-ui/anatomy" "2.0.7"
+ "@chakra-ui/theme-tools" "2.0.12"
-"@chakra-ui/tooltip@2.0.10":
- "integrity" "sha512-pBILBdZoux2K3EW9V6JuyZYUWz2/Y7oYCVO6AwNOesiEBGAONyzoDwFV728EzPEHe9e+YBcKOSZ9tEpDdrzHMA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/tooltip/-/tooltip-2.0.10.tgz"
- "version" "2.0.10"
+"@chakra-ui/toast@4.0.0":
+ "integrity" "sha512-abeeloJac5T9WK2IN76fEM5FSRH+erNXln2HqDf5wLBn33avSBXWyTiUL8riVSUqto0lrIn6FuK/MmKo0DH4og=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/toast/-/toast-4.0.0.tgz"
+ "version" "4.0.0"
dependencies:
- "@chakra-ui/popper" "3.0.7"
- "@chakra-ui/portal" "2.0.9"
+ "@chakra-ui/alert" "2.0.11"
+ "@chakra-ui/close-button" "2.0.11"
+ "@chakra-ui/portal" "2.0.10"
+ "@chakra-ui/react-use-timeout" "2.0.2"
+ "@chakra-ui/react-use-update-effect" "2.0.4"
+ "@chakra-ui/styled-system" "2.3.4"
+ "@chakra-ui/theme" "2.1.14"
+
+"@chakra-ui/tooltip@2.2.0":
+ "integrity" "sha512-oB97aQJBW+U3rRIt1ct7NaDRMnbW16JQ5ZBCl3BzN1VJWO3djiNuscpjVdZSceb+FdGSFo+GoDozp1ZwqdfFeQ=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/tooltip/-/tooltip-2.2.0.tgz"
+ "version" "2.2.0"
+ dependencies:
+ "@chakra-ui/popper" "3.0.8"
+ "@chakra-ui/portal" "2.0.10"
"@chakra-ui/react-types" "2.0.3"
- "@chakra-ui/react-use-disclosure" "2.0.3"
- "@chakra-ui/react-use-event-listener" "2.0.3"
- "@chakra-ui/react-use-merge-refs" "2.0.3"
+ "@chakra-ui/react-use-disclosure" "2.0.5"
+ "@chakra-ui/react-use-event-listener" "2.0.4"
+ "@chakra-ui/react-use-merge-refs" "2.0.4"
-"@chakra-ui/transition@2.0.9":
- "integrity" "sha512-cVfKdZl128AEj0LDS8M9dzXao4wmTVj3gRJBnm91Qcg243Pm8OlgIBNbHEwsq/Fps+PsN431BtEGfL4w79wQEA=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/transition/-/transition-2.0.9.tgz"
- "version" "2.0.9"
+"@chakra-ui/transition@2.0.11":
+ "integrity" "sha512-O0grc162LARPurjz1R+J+zr4AAKsVwN5+gaqLfZLMWg6TpvczJhwEA2fLCNAdkC/gomere390bJsy52xfUacUw=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/transition/-/transition-2.0.11.tgz"
+ "version" "2.0.11"
-"@chakra-ui/utils@2.0.9":
- "integrity" "sha512-7ct5562Jw6pZdtj63XfUkEUXXsCCVqdqIXyLtQ9VgOKtRQWwDxzc8uPI5Zjdw9AleEITZFUH8TNKWn75nm54kQ=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/utils/-/utils-2.0.9.tgz"
- "version" "2.0.9"
+"@chakra-ui/utils@2.0.11":
+ "integrity" "sha512-4ZQdK6tbOuTrUCsAQBHWo7tw5/Q6pBV93ZbVpats61cSWMFGv32AIQw9/hA4un2zDeSWN9ZMVLNjAY2Dq/KQOA=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/utils/-/utils-2.0.11.tgz"
+ "version" "2.0.11"
dependencies:
"@types/lodash.mergewith" "4.6.6"
"css-box-model" "1.2.1"
"framesync" "5.3.0"
"lodash.mergewith" "4.6.2"
-"@chakra-ui/visually-hidden@2.0.9":
- "integrity" "sha512-PkNxrRGp9H3bdqEaoo8XGt/AL9UuGRTom0/9XJa+G/Dj8Cy1sDuamOWk3pN/ZQs46RokfK9Uh5LqPY5dwSDweg=="
- "resolved" "https://registry.npmjs.org/@chakra-ui/visually-hidden/-/visually-hidden-2.0.9.tgz"
- "version" "2.0.9"
+"@chakra-ui/visually-hidden@2.0.11":
+ "integrity" "sha512-e+5amYvnsmEQdiWH4XMyvrtGTdwz//+48vwj5CsNWWcselzkwqodmciy5rIrT71/SCQDOtmgnL7ZWAUOffxfsQ=="
+ "resolved" "https://registry.npmjs.org/@chakra-ui/visually-hidden/-/visually-hidden-2.0.11.tgz"
+ "version" "2.0.11"
"@cspotcode/source-map-support@^0.8.0":
"integrity" "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw=="
@@ -1112,9 +1135,9 @@
"version" "0.3.0"
"@eslint/eslintrc@^1.3.2":
- "integrity" "sha512-AXYd23w1S/bv3fTs3Lz0vjiYemS08jWkI3hYyS9I1ry+0f+Yjs1wm+sU0BS8qDOPrBIkp4qHYC16I8uVtpLajQ=="
- "resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.2.tgz"
- "version" "1.3.2"
+ "integrity" "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg=="
+ "resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz"
+ "version" "1.3.3"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.3.2"
@@ -1317,10 +1340,10 @@
dependencies:
"@ethersproject/logger" "^5.7.0"
-"@ethersproject/providers@5.7.1":
- "integrity" "sha512-vZveG/DLyo+wk4Ga1yx6jSEHrLPgmTt+dFv0dv8URpVCRf0jVhalps1jq/emN/oXnMRsC7cQgAF32DcXLL7BPQ=="
- "resolved" "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.7.1.tgz"
- "version" "5.7.1"
+"@ethersproject/providers@5.7.2":
+ "integrity" "sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg=="
+ "resolved" "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.7.2.tgz"
+ "version" "5.7.2"
dependencies:
"@ethersproject/abstract-provider" "^5.7.0"
"@ethersproject/abstract-signer" "^5.7.0"
@@ -1486,9 +1509,9 @@
"@hapi/hoek" "^9.0.0"
"@humanwhocodes/config-array@^0.10.4":
- "integrity" "sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw=="
- "resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.4.tgz"
- "version" "0.10.4"
+ "integrity" "sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w=="
+ "resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.7.tgz"
+ "version" "0.10.7"
dependencies:
"@humanwhocodes/object-schema" "^1.2.1"
"debug" "^4.1.1"
@@ -1509,14 +1532,14 @@
"resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
"version" "1.2.1"
-"@jnwng/walletconnect-solana@^0.1.0":
- "integrity" "sha512-i84711Ln9XLvKRTfhbv9MjXjKJzog4NVccZGwyGN0z96T+QMJuppX3+eyLdzLyNie/3S2xw7bL87NAAbdUto2g=="
- "resolved" "https://registry.npmjs.org/@jnwng/walletconnect-solana/-/walletconnect-solana-0.1.1.tgz"
- "version" "0.1.1"
+"@jnwng/walletconnect-solana@^0.1.3":
+ "integrity" "sha512-tdVMeH9IlLHV7SxG81oD+HXmYEs/FR8D19BQJpE+7qsus4kO0yn9y/kQ3m6wsdHQr22L5KL10VDIKSWQ+8pyJg=="
+ "resolved" "https://registry.npmjs.org/@jnwng/walletconnect-solana/-/walletconnect-solana-0.1.4.tgz"
+ "version" "0.1.4"
dependencies:
"@walletconnect/qrcode-modal" "1.8.0"
- "@walletconnect/sign-client" "2.0.0-rc.2"
- "@walletconnect/utils" "2.0.0-rc.2"
+ "@walletconnect/sign-client" "2.0.0-rc.3"
+ "@walletconnect/utils" "2.0.0-rc.3"
"bs58" "^5.0.0"
"@jridgewell/gen-mapping@^0.1.0":
@@ -1536,7 +1559,7 @@
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
-"@jridgewell/resolve-uri@^3.0.3":
+"@jridgewell/resolve-uri@^3.0.3", "@jridgewell/resolve-uri@3.1.0":
"integrity" "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w=="
"resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz"
"version" "3.1.0"
@@ -1546,18 +1569,18 @@
"resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz"
"version" "1.1.2"
-"@jridgewell/sourcemap-codec@^1.4.10":
+"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@1.4.14":
"integrity" "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz"
"version" "1.4.14"
"@jridgewell/trace-mapping@^0.3.9":
- "integrity" "sha512-oWZNOULl+UbhsgB51uuZzglikfIKSUBO/M9W2OfEjn7cmqoAiCgmv9lyACTUacZwBz0ITnJ2NqjU8Tx0DHL88g=="
- "resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.15.tgz"
- "version" "0.3.15"
+ "integrity" "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g=="
+ "resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz"
+ "version" "0.3.17"
dependencies:
- "@jridgewell/resolve-uri" "^3.0.3"
- "@jridgewell/sourcemap-codec" "^1.4.10"
+ "@jridgewell/resolve-uri" "3.1.0"
+ "@jridgewell/sourcemap-codec" "1.4.14"
"@jridgewell/trace-mapping@0.3.9":
"integrity" "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ=="
@@ -1592,10 +1615,10 @@
"@json-rpc-tools/types" "^1.7.6"
"@pedrouid/environment" "^1.0.1"
-"@keystonehq/bc-ur-registry-sol@^0.3.0":
- "integrity" "sha512-ldZmD13piImD5UXlt8ZIFq6+7NLWwAczJPbAUKnclP1EAfy5dbm6YWaJy4ozPU7kBgDMVS8RGDfmrZ/fr63hwQ=="
- "resolved" "https://registry.npmjs.org/@keystonehq/bc-ur-registry-sol/-/bc-ur-registry-sol-0.3.0.tgz"
- "version" "0.3.0"
+"@keystonehq/bc-ur-registry-sol@^0.3.1":
+ "integrity" "sha512-Okr5hwPxBZxB4EKLK1GSC9vsrh/tFMQ5dvs3EQ9NCOmCn7CXdXIMSeafrpGCHk484Jf5c6X0Wq0yf0VqY2A/8Q=="
+ "resolved" "https://registry.npmjs.org/@keystonehq/bc-ur-registry-sol/-/bc-ur-registry-sol-0.3.1.tgz"
+ "version" "0.3.1"
dependencies:
"@keystonehq/bc-ur-registry" "^0.5.0"
"bs58check" "^2.1.2"
@@ -1610,10 +1633,10 @@
"base58check" "^2.0.0"
"tslib" "^2.3.0"
-"@keystonehq/sdk@^0.13.0":
- "integrity" "sha512-oL9q12XWnT76gj0RIyS6tmVwwe5qMpdrzp85uIe8uoTreSMfdhL085e427iNwKI3TpNVp//HmkrghWHD4o7vJQ=="
- "resolved" "https://registry.npmjs.org/@keystonehq/sdk/-/sdk-0.13.0.tgz"
- "version" "0.13.0"
+"@keystonehq/sdk@^0.13.1":
+ "integrity" "sha512-545l83TE5t1cyUZUaNqZOAh15ibWOg9QbK/YeLwnrxt+GOod+ATk3j9SpN6yTSLO8DNl2/x6dKRIFVtTEkZDAg=="
+ "resolved" "https://registry.npmjs.org/@keystonehq/sdk/-/sdk-0.13.1.tgz"
+ "version" "0.13.1"
dependencies:
"@ngraveio/bc-ur" "^1.0.0"
"qrcode.react" "^1.0.1"
@@ -1625,13 +1648,13 @@
"typescript" "^4.6.2"
"@keystonehq/sol-keyring@^0.3.0":
- "integrity" "sha512-CKCJFnfPjI6YGON0kP+oYTTH+Rlx6dD06zywphxqR0TquzFMBF52708gg8m8+mzSW9ngMiRlpI/cvRbpWyYx6Q=="
- "resolved" "https://registry.npmjs.org/@keystonehq/sol-keyring/-/sol-keyring-0.3.0.tgz"
- "version" "0.3.0"
+ "integrity" "sha512-RU6I3HQrQ9NpRDP9TwlBIy5DftVcNcyk0NWfhkPy/YanhMcCB0cRPw68iQl1rMnR6n1G2+YrBHMxm6swCW+B4Q=="
+ "resolved" "https://registry.npmjs.org/@keystonehq/sol-keyring/-/sol-keyring-0.3.1.tgz"
+ "version" "0.3.1"
dependencies:
"@keystonehq/bc-ur-registry" "^0.5.0"
- "@keystonehq/bc-ur-registry-sol" "^0.3.0"
- "@keystonehq/sdk" "^0.13.0"
+ "@keystonehq/bc-ur-registry-sol" "^0.3.1"
+ "@keystonehq/sdk" "^0.13.1"
"@solana/web3.js" "^1.36.0"
"bs58" "^5.0.0"
"uuid" "^8.3.2"
@@ -1647,9 +1670,9 @@
"semver" "^7.3.5"
"@ledgerhq/errors@^6.10.0":
- "integrity" "sha512-iMfEJPWaan8QaZw87WMUnFFRJqveE3FpU2ObTE0ydTJLPJNOUJjjurGBklqdWM/j5BIQvpi3byGKFChfNg8CaQ=="
- "resolved" "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.10.2.tgz"
- "version" "6.10.2"
+ "integrity" "sha512-HT1PFvNrejcN5z3ba6xikacIdHWMkjBeE9U5FFoGHhaKBKGjC74mnCeEo0/oJunyuVId+9mhGnv6lrBl6Mkqdg=="
+ "resolved" "https://registry.npmjs.org/@ledgerhq/errors/-/errors-6.11.1.tgz"
+ "version" "6.11.1"
"@ledgerhq/hw-transport-webhid@6.27.1":
"integrity" "sha512-u74rBYlibpbyGblSn74fRs2pMM19gEAkYhfVibq0RE1GNFjxDMFC1n7Sb+93Jqmz8flyfB4UFJsxs8/l1tm2Kw=="
@@ -1671,9 +1694,9 @@
"events" "^3.3.0"
"@ledgerhq/logs@^6.10.0":
- "integrity" "sha512-lLseUPEhSFUXYTKj6q7s2O3s2vW2ebgA11vMAlKodXGf5AFw4zUoEbTz9CoFOC9jS6xY4Qr8BmRnxP/odT4Uuw=="
- "resolved" "https://registry.npmjs.org/@ledgerhq/logs/-/logs-6.10.0.tgz"
- "version" "6.10.0"
+ "integrity" "sha512-z+ILK8Q3y+nfUl43ctCPuR4Y2bIxk/ooCQFwZxhtci1EhAtMDzMAx2W25qx8G1PPL9UUOdnUax19+F0OjXoj4w=="
+ "resolved" "https://registry.npmjs.org/@ledgerhq/logs/-/logs-6.10.1.tgz"
+ "version" "6.10.1"
"@metaplex-foundation/beet-solana@^0.3.0", "@metaplex-foundation/beet-solana@^0.3.1":
"integrity" "sha512-tgyEl6dvtLln8XX81JyBvWjIiEcjTkUwZbrM5dIobTmoqMuGewSyk9CClno8qsMsFdB5T3jC91Rjeqmu/6xk2g=="
@@ -1746,9 +1769,9 @@
"bn.js" "^5.2.0"
"@metaplex-foundation/mpl-candy-machine@^4.4.1":
- "integrity" "sha512-5H3q78Gum5GgClTx/7VTUZwf7+Nn/m755S/5to/vBD1cEAaIcsGCw3uUwzKauDfCTMjVce7WbfTQf1CS0n3C1A=="
- "resolved" "https://registry.npmjs.org/@metaplex-foundation/mpl-candy-machine/-/mpl-candy-machine-4.6.0.tgz"
- "version" "4.6.0"
+ "integrity" "sha512-tBNRAfBE/rYy9pe2aJD4gTFw+pgQ11o3AJjoYGB4+05ow0VjJMSt6kQGzHm2LRPgdLY4diKAq8qHvgsbV5ikNQ=="
+ "resolved" "https://registry.npmjs.org/@metaplex-foundation/mpl-candy-machine/-/mpl-candy-machine-4.7.1.tgz"
+ "version" "4.7.1"
dependencies:
"@metaplex-foundation/beet" "^0.4.0"
"@metaplex-foundation/beet-solana" "^0.3.0"
@@ -1765,9 +1788,9 @@
"bs58" "^4.0.1"
"@metaplex-foundation/mpl-token-metadata@^2.2.2":
- "integrity" "sha512-LSqG1gME51ShR9Oh5dmVPNyN0gHR8R7XcEhjfBn44qKqa7gJGsqW0+uQTIGY4/ilb8J+DdZ01veHQ7gjMku5HA=="
- "resolved" "https://registry.npmjs.org/@metaplex-foundation/mpl-token-metadata/-/mpl-token-metadata-2.3.0.tgz"
- "version" "2.3.0"
+ "integrity" "sha512-BUn95TWj1U9g91WEtn4z4oZdHOnrT7qgwzUaIZ6Im9l9V8G2prNVvQjkoD86WLXjtR0Dgu378Er0A3mVtPmlzg=="
+ "resolved" "https://registry.npmjs.org/@metaplex-foundation/mpl-token-metadata/-/mpl-token-metadata-2.3.3.tgz"
+ "version" "2.3.3"
dependencies:
"@metaplex-foundation/beet" "^0.4.0"
"@metaplex-foundation/beet-solana" "^0.3.0"
@@ -1866,9 +1889,9 @@
"version" "1.7.1"
"@noble/hashes@^1.1.2":
- "integrity" "sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA=="
- "resolved" "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.2.tgz"
- "version" "1.1.2"
+ "integrity" "sha512-CE0FCR57H2acVI5UOzIGSSIYxZ6v/HOhDR0Ro9VLyhnzLwx0o8W1mmgaqlEUx4049qJDlIBRztv5k+MM8vbO3A=="
+ "resolved" "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.3.tgz"
+ "version" "1.1.3"
"@noble/secp256k1@^1.6.3":
"integrity" "sha512-kbacwGSsH/CTout0ZnZWxnW1B+jH/7r/WAAKLBtrRJ/+CUH7lgmQzl3GTrQua3SGKWNSDsS6lmjnDpIJ5Dxyaw=="
@@ -1950,9 +1973,9 @@
"@randlabs/communication-bridge" "1.0.1"
"@rushstack/eslint-patch@^1.1.3":
- "integrity" "sha512-LwzQKA4vzIct1zNZzBmRKI9QuNpLgTQMEjsQLf3BXuGYb3QPTP4Yjf6mkdX+X1mYttZ808QpOwAzZjv28kq7DA=="
- "resolved" "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.1.4.tgz"
- "version" "1.1.4"
+ "integrity" "sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg=="
+ "resolved" "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz"
+ "version" "1.2.0"
"@sideway/address@^4.1.3":
"integrity" "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw=="
@@ -2013,97 +2036,97 @@
"buffer" "^6.0.3"
"@solana/wallet-adapter-alpha@^0.1.3":
- "integrity" "sha512-LFMT4bD6ZQru28If8G5oMy7pau+7ratEbzPgRTsT6zu9EhhnZDws8S6/xW6nYecPruJINy7I/00+DXwLkd/TBg=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-alpha/-/wallet-adapter-alpha-0.1.3.tgz"
- "version" "0.1.3"
+ "integrity" "sha512-DyleMqm9ePVkYShTVfvzDTx/Xapzf1cEn0ckyBHX6R2jE9RKYMLsS51kC3MOE8uzA3AA/jlP67clw2vdvtStbg=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-alpha/-/wallet-adapter-alpha-0.1.5.tgz"
+ "version" "0.1.5"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-avana@^0.1.7":
- "integrity" "sha512-dAMb3QUtj/IOcW6/D2s2TFXAm65LrUeDSKrz5Hq33o7Cqom4cZJHwbejjlNKL52x3BGVZesZMRO/Qrz67adiwA=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-avana/-/wallet-adapter-avana-0.1.7.tgz"
- "version" "0.1.7"
+ "integrity" "sha512-n1b/DbEUzWog9Iz4+Kjki9bMtqycsgqKFNKIdrRqq7iDpv5HxMM6xlFMiCIL8dUi5H1yUX2uWOdebZC2S0y6pA=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-avana/-/wallet-adapter-avana-0.1.8.tgz"
+ "version" "0.1.8"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-backpack@^0.1.7":
- "integrity" "sha512-kyDQkm8S+SLI0ZRU8EyveA9Ov+kP9e9seHcxXMS6c8N0kaBJ/4Fgelxd3HVSHJf2ONMCtluAmBLHfLLfFEHm5A=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-backpack/-/wallet-adapter-backpack-0.1.7.tgz"
- "version" "0.1.7"
+ "integrity" "sha512-Xg+g/uiHyXAlUEy6CfKhIgqje9LVrA6/RjbpyqycMZg02wmuzS0+OoewdEznCNtzhOfAns54Wxms5lDJZA8Z+w=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-backpack/-/wallet-adapter-backpack-0.1.9.tgz"
+ "version" "0.1.9"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
-"@solana/wallet-adapter-base@^0.9.17", "@solana/wallet-adapter-base@^0.9.2":
- "integrity" "sha512-YEkO04QndfRXb6psznMuRsw2YBHqVGxmuJgQskCHp2DAkHWPDNbKlv+Q4mOD2gfkUNHUMP8sTnwORhsIR3fQjQ=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-base/-/wallet-adapter-base-0.9.17.tgz"
- "version" "0.9.17"
+"@solana/wallet-adapter-base@^0.9.17", "@solana/wallet-adapter-base@^0.9.18", "@solana/wallet-adapter-base@^0.9.2":
+ "integrity" "sha512-5HQFytLmb64j1Nzc6dwddZx+IUePN/PYqVMyf/ok7fN3z8Vw3EIFS8b+RFfBpj4HWbc2kqv5fpnLlaAH7q67pA=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-base/-/wallet-adapter-base-0.9.18.tgz"
+ "version" "0.9.18"
dependencies:
"eventemitter3" "^4.0.0"
"@solana/wallet-adapter-bitkeep@^0.3.13":
- "integrity" "sha512-52+UMgPWTOnK97V1Ys3YJ4/muqdhJtaCZph5s71bXijL86Vm+/5UNT2qhAnenS2dqXHQ5sMJ5w6wiW6FCA9QyA=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-bitkeep/-/wallet-adapter-bitkeep-0.3.13.tgz"
- "version" "0.3.13"
+ "integrity" "sha512-qcufDj88fcoiDNtzno5Xzhi4JYQX7DiV4X9EyIcWBAKhdllmp9HKlZSIEfJ5xBV65qsPGvXzPr0mqaVq35eQig=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-bitkeep/-/wallet-adapter-bitkeep-0.3.14.tgz"
+ "version" "0.3.14"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-bitpie@^0.5.12":
- "integrity" "sha512-mlZp3ZNJrGrWp9+S2SJ+jM4SATXQLW5Mjz9TgAD1jYmM0Esv4uyuY4cdUpkB1lhjoCAQ9gRazfQcLo+4bxgH7g=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-bitpie/-/wallet-adapter-bitpie-0.5.12.tgz"
- "version" "0.5.12"
+ "integrity" "sha512-6/VFnwk0ElWc9gfyU21xzgJzKlgs2Fki9PW4ssU3IfPVlaw0aoElBFzL3WPUJfD18ltGeSOeYBWQ+qFUuj2MsA=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-bitpie/-/wallet-adapter-bitpie-0.5.13.tgz"
+ "version" "0.5.13"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-blocto@^0.5.16":
- "integrity" "sha512-kZ/KpvfhtKG0HuKiGIbmvRJshfVtEFEBjbzc6YvRm0XEmm9MhdGMeUMdWEbJyn4Jy2L3/GdkBSXa+pSFg514kQ=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-blocto/-/wallet-adapter-blocto-0.5.16.tgz"
- "version" "0.5.16"
+ "integrity" "sha512-l5CXmwlqc4P276CJMyFj/vjNiR3pWqqf4OXIHKcB7h+NA+KqZaaisBWLTHQ6dpFl+LGx72voAd6PcAiIdLk0YQ=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-blocto/-/wallet-adapter-blocto-0.5.17.tgz"
+ "version" "0.5.17"
dependencies:
"@blocto/sdk" "^0.2.21"
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-brave@^0.1.11":
- "integrity" "sha512-j9ukING7K+svHNvhBk1yrACICgCSQTHLpqgatdvSmWfp+2dxDNZ9TjKWabstte1dVuKspk0s9vnO/977Hwlo9w=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-brave/-/wallet-adapter-brave-0.1.11.tgz"
- "version" "0.1.11"
+ "integrity" "sha512-SieX4YoJ1aEBKoJ2G9suljzQWtJew8TMtB2Fy107alQMYw560nxmyMMGSAh0Qx+QcHr5Tr1/KIgVugPErvHOlA=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-brave/-/wallet-adapter-brave-0.1.12.tgz"
+ "version" "0.1.12"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-clover@^0.4.13":
- "integrity" "sha512-HYNR+Xt7xO2DDiOMhIjseNBORE7TLVFLjbymnXFHeoLb/I3ioejcjqWyYxtqwfIoFphZaguYrmI1ay6W8P0GEA=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-clover/-/wallet-adapter-clover-0.4.13.tgz"
- "version" "0.4.13"
+ "integrity" "sha512-kqBfUJFl8dV7KsAjruyt+//h8s0S3sZTAT6PUAvIqRZN6wQHuchr/vF9WTgsMm/79xUW7jQPB6I40KfwnpZZnw=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-clover/-/wallet-adapter-clover-0.4.14.tgz"
+ "version" "0.4.14"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-coin98@^0.5.14":
- "integrity" "sha512-fO3g8I/6W9cgCt8DlXT4gqvDgGWZedDfSF/5Q42Q4rRfSFLbWnDd9uKYD5ohy6nTwRRBQNhlTnM31YtOFGtSZQ=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-coin98/-/wallet-adapter-coin98-0.5.14.tgz"
- "version" "0.5.14"
+ "integrity" "sha512-x4LofKB+ZPVqk8YuFMVJ2KUvvxLq79zNMA0/nEBZ38iNkMahvSZAk+P7YUdOhctKOooozypXL6cHt17WkeYQUQ=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-coin98/-/wallet-adapter-coin98-0.5.15.tgz"
+ "version" "0.5.15"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"bs58" "^4.0.1"
"@solana/wallet-adapter-coinbase@^0.1.12":
- "integrity" "sha512-x8Ous/8A7WaEJApozhkh2/ywkaWHfquY3Wl2ivmQsVOzs6wE5rVqG0/6B/nlkYOVEZn5t0lCW9xhCAhdt6DWVw=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-coinbase/-/wallet-adapter-coinbase-0.1.12.tgz"
- "version" "0.1.12"
+ "integrity" "sha512-TUGVhoDvcWX20A8B81b0+NbdtThKeS23rxgRltPdbxbrbne20Pb+RRRpqCg0FX0bAJqDAujEOHPrctLdqHSVxQ=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-coinbase/-/wallet-adapter-coinbase-0.1.13.tgz"
+ "version" "0.1.13"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-coinhub@^0.3.12":
- "integrity" "sha512-EclKlfLqeAFpXgl4Kd78cyu227bjh868yYmGezL3zPvur/Nr9C/BC62HpfjHWyyBynAiUS5UYoNCHfCByaS8Qw=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-coinhub/-/wallet-adapter-coinhub-0.3.12.tgz"
- "version" "0.3.12"
+ "integrity" "sha512-wVRx8U5LfARfqqKVig5nmm6Q9oSCqYSs1bnu8Z5e4Feoi0LY3F/K+d/i9LSArjDwheN6tgeDAQ6P1ujYvaRDfg=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-coinhub/-/wallet-adapter-coinhub-0.3.13.tgz"
+ "version" "0.3.13"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-exodus@^0.1.12":
- "integrity" "sha512-mTBJpQVohih+pIT8RDAnQxBBUIp8osAfhNtPrl8nLm8dGygK4keUtajql+0xtWh7AH481I0RhcLbq8WCvkhcpQ=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-exodus/-/wallet-adapter-exodus-0.1.12.tgz"
- "version" "0.1.12"
+ "integrity" "sha512-171n1A9GxnFs9CNuGVYlKzd9NMoAfvzXRfF0WeyUbvbMg5XVGTV1bq9b6N076WnJUubtaiwIIlVJF04++g6hQA=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-exodus/-/wallet-adapter-exodus-0.1.13.tgz"
+ "version" "0.1.13"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-fake@^0.1.5":
"integrity" "sha512-nnGXk+XSJtMUUdoqLdxY6VaVVUzeausaFfLvFSSiFBN8aCqEFDRLR31uk0dhfoGhs/Y/CkxdO5WhpD8VyNnA0A=="
@@ -2113,219 +2136,219 @@
"@solana/wallet-adapter-base" "^0.9.17"
"@solana/wallet-adapter-glow@^0.1.12":
- "integrity" "sha512-PKC/z80ErpwshEyabNOWzfSrtIm0kbn6SgOKYL7JPtWpQPl0KJsaAOZkju51YszGBunLVjtTF478Rs4v/ZYfgA=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-glow/-/wallet-adapter-glow-0.1.12.tgz"
- "version" "0.1.12"
+ "integrity" "sha512-xvXcYtSV+7oLCG+NcBvK/cn4bEaxXAo1wTf3ycK9jbeGlLQJOZxSk4XBTzTInJ9Ga6UO9uZTqE+JZ60CWPRrug=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-glow/-/wallet-adapter-glow-0.1.13.tgz"
+ "version" "0.1.13"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-huobi@^0.1.9":
- "integrity" "sha512-fzyH4IC8FQ3pIjRJ878SWb1lIb2WSNtr7AcDen6qx2dg4kO//WGKv/U6JmD+9Q6BHbo4lFvyGN1NziffwqQDUw=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-huobi/-/wallet-adapter-huobi-0.1.9.tgz"
- "version" "0.1.9"
+ "integrity" "sha512-quELQigB5B14ITps6yAxKUOCvY17HtlrnOsOjrzB5KwtAuPbCA46AIruocv3u+ATyultiTDq6PUQUnAlW5IrWw=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-huobi/-/wallet-adapter-huobi-0.1.10.tgz"
+ "version" "0.1.10"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-hyperpay@^0.1.8":
- "integrity" "sha512-yL8QxnL1LnOEdU8lLwqQ3goYNbyS8zvI+9bU0uChaakjbAyqTfaoUKRZTT+Cnb8i/08zHFmwuR7/P1usz/NSWQ=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-hyperpay/-/wallet-adapter-hyperpay-0.1.8.tgz"
- "version" "0.1.8"
+ "integrity" "sha512-ebeTAaSxjAK32wBOhfbR8dxoccMqxCsLNWEvy1J8NV0lBtm7jeYe2Vr6JzgjLZ/PiMpEzmdAOUMqzZohOvuuCg=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-hyperpay/-/wallet-adapter-hyperpay-0.1.9.tgz"
+ "version" "0.1.9"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-keystone@^0.1.6":
- "integrity" "sha512-cdIS0cK5joaVW+4/Q1cnt5FKfCDpz0NILXaQP9CZYqgMBdnVFalK1zEhxNedivZr6thm3G4QrjTcsQFwcMJ4RQ=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-keystone/-/wallet-adapter-keystone-0.1.6.tgz"
- "version" "0.1.6"
+ "integrity" "sha512-Q6Eb+f0IxS58CU3TSfchKbHTrmL3eBiT70pNb2dmJCo8jeboVvKIunjZnF8eIPafxEZHHonVby0e3tNcTUxpcQ=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-keystone/-/wallet-adapter-keystone-0.1.7.tgz"
+ "version" "0.1.7"
dependencies:
"@keystonehq/sol-keyring" "^0.3.0"
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-krystal@^0.1.6":
- "integrity" "sha512-1DHa2kjPamKTVrkVqiWJjTi9X2sBYN1bJ4CsReQLBSHwpmqvDmx427oZ2FpRvfTIoXsM+IkLIwAPo3F281G2MQ=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-krystal/-/wallet-adapter-krystal-0.1.6.tgz"
- "version" "0.1.6"
+ "integrity" "sha512-qbNjm5tXg2YU4KTfAYx0TS9h5ZC/NzhXSMaQBKZkc9qg0vZwfuPJhMQlt6+teCoeBveB5fpXfw6Wap4ExfarYQ=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-krystal/-/wallet-adapter-krystal-0.1.7.tgz"
+ "version" "0.1.7"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-ledger@^0.9.19":
- "integrity" "sha512-qXsratrPjNXM6p7IuOM+6p3A7ChE9G3qHq/EQfKK1cRYaOlqwbYDCJ8EEGKYLHtZVHwkKGguarrnT8BzS+ikng=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-ledger/-/wallet-adapter-ledger-0.9.19.tgz"
- "version" "0.9.19"
+ "integrity" "sha512-puPGyVxf1z0oPxCdXhifzKhIiHUCwnUGC8rrQhoUGnyIDWN8lu/vuKA/m39z0kvA1Jw9NUcksVSTfAImUqUTiA=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-ledger/-/wallet-adapter-ledger-0.9.20.tgz"
+ "version" "0.9.20"
dependencies:
"@ledgerhq/devices" "6.27.1"
"@ledgerhq/hw-transport" "6.27.1"
"@ledgerhq/hw-transport-webhid" "6.27.1"
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"buffer" "^6.0.3"
"@solana/wallet-adapter-magiceden@^0.1.7":
- "integrity" "sha512-/vh3X49pv1BRXbbKMwxbRozl2RF0u0Bi3hoZiUzX8nuzNQ3tDtSkRv+v86MX3FCensBIcbPdBg93xINLP/dZXw=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-magiceden/-/wallet-adapter-magiceden-0.1.7.tgz"
- "version" "0.1.7"
+ "integrity" "sha512-3vbPAjzVMV71I8LOW3L2WnN9UE2EAg0rQzAJjQkidvogna7Kxg5MWl0GKBzDnQmv803zZYASuHzBuEBSV2si1A=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-magiceden/-/wallet-adapter-magiceden-0.1.8.tgz"
+ "version" "0.1.8"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-mathwallet@^0.9.12":
- "integrity" "sha512-DI4AnXoJwvN0Q5NF7Vn0fSwvhdZthB/mh1X7twwrqOsqSzZmHexzm/K5Gv0/YhX7oO9D2h7jMFhLvW7sTbdO9w=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-mathwallet/-/wallet-adapter-mathwallet-0.9.12.tgz"
- "version" "0.9.12"
+ "integrity" "sha512-3l6OXeESBbqC2HvUm21Ep7TcQppALhEVo0mDo5JzGC93r5u61hkQgmlO6Z/hOJHAWgMNlXLa9+9kPAHSieOUNg=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-mathwallet/-/wallet-adapter-mathwallet-0.9.13.tgz"
+ "version" "0.9.13"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-neko@^0.2.6":
- "integrity" "sha512-RtFaEAkIIyZwHSczcaHrbiFRzopNSOu+MphXmRoKLIiwitJNLXtYMxc2SaW2aaMzBhrM8gChbwe647pTm1y1Fg=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-neko/-/wallet-adapter-neko-0.2.6.tgz"
- "version" "0.2.6"
+ "integrity" "sha512-HQaLWLX4xqszA7T8WOCGVi6u+kmrOH/2ttSCMiJ7JS+E2XKcVHMKSP37kaFvfVErNINyxJq4ulfFgPmb/SWCZw=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-neko/-/wallet-adapter-neko-0.2.7.tgz"
+ "version" "0.2.7"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-nightly@^0.1.9":
- "integrity" "sha512-OD1PXU6Y0BM3eVsH6vLfHGl22ZvmJGslKtaig7MyjSbZvws4NMub3zWlgaLQGK3xjvIN58mM64DDj7tO/xoB2Q=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-nightly/-/wallet-adapter-nightly-0.1.9.tgz"
- "version" "0.1.9"
+ "integrity" "sha512-ubTiX957PJt+Fb8MzHMkg3TGC4LCg2eYKv+qxTTKpW7CQ1opAWktktsZeJqstUuqjyoYebevqlMGMtQwe3gEjw=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-nightly/-/wallet-adapter-nightly-0.1.10.tgz"
+ "version" "0.1.10"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-nufi@^0.1.10":
- "integrity" "sha512-Zstr82980KCqsfPgXyXuE2kQh7OH4HR8hjLd1Yo3SBfG8LPM3LzIsGD8me1toNHR2T47n1sznjxHPjkjRrIG2A=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-nufi/-/wallet-adapter-nufi-0.1.10.tgz"
- "version" "0.1.10"
+ "integrity" "sha512-PY9c7xIxVPmlq4lcwg8rdoYFPH0iLzaQ90X3vx/ZzP57FimI+jYhXwh2i/XO2AnNnn6G2USxTbmclBPIIUkC7A=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-nufi/-/wallet-adapter-nufi-0.1.11.tgz"
+ "version" "0.1.11"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-onto@^0.1.1":
- "integrity" "sha512-DoXMa/B/2PLZhlLnDRB1gZLc6q0nXny+2w6/T7D6Sz199FMq1rfbpy1tRLnf6Cug586rL5ofX8jJiBKy41o/Pw=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-onto/-/wallet-adapter-onto-0.1.1.tgz"
- "version" "0.1.1"
+ "integrity" "sha512-nky71wE2lObFVio9NNaYajeCCCzD19V4t/7VDvVUU5lv/hpu37qq88p5efjMmNpyrrsWqJu1GJrCuYqLi4xyfQ=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-onto/-/wallet-adapter-onto-0.1.2.tgz"
+ "version" "0.1.2"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-particle@^0.1.4":
- "integrity" "sha512-vE/zQJo2pLmCaP25q2NCYq89HOk4MzVpdPsGKNi91KT4EOfPskWSvtl5al33XX7ZsjSHJQLUmWFqsXQTuXUvnA=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-particle/-/wallet-adapter-particle-0.1.4.tgz"
- "version" "0.1.4"
+ "integrity" "sha512-BisV2yPu33u0aDpjwpCHB5DQiLJuge2kJJAfpQdk5yBRiXQRHn/3GwsN4Te9bjaYdAQBQw0UTAp/ajcD9h9BNA=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-particle/-/wallet-adapter-particle-0.1.5.tgz"
+ "version" "0.1.5"
dependencies:
"@particle-network/solana-wallet" "^0.5.0"
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-phantom@^0.9.16":
- "integrity" "sha512-AJmTmiE74G08XhPWfwJegP2mgLMLFSnvr/NfSS6ScMskHfTg01BEGApGwGdic2gKUgPRInDQgqgCToCOIxnsRA=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-phantom/-/wallet-adapter-phantom-0.9.16.tgz"
- "version" "0.9.16"
+ "integrity" "sha512-NgqObD9G2SojkKaLEz7RPC0izS0qPzHa94Da4le3xMErW7SKIEKjVfQ3fP/rIcD2jEwGW5qf9YqYPsPw8jaJ0Q=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-phantom/-/wallet-adapter-phantom-0.9.17.tgz"
+ "version" "0.9.17"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-react-ui@^0.9.17":
- "integrity" "sha512-KAbxH4MFc/rD/X/ts6jQ+IXeOS9SDXXI4eUkZgkE4wwsn368ssTlGU+PjOIAWmD0y1sn1MoUb9qfheyUTqHHmg=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-react-ui/-/wallet-adapter-react-ui-0.9.17.tgz"
- "version" "0.9.17"
+ "integrity" "sha512-nJc42WgV7o/nkXVrZOwlSu277HXtec9vSHF5P1/9n/R2lCS2hRftnn/9/lNKy1rhhBhV5xq+Cr+fPGh0tyVhsw=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-react-ui/-/wallet-adapter-react-ui-0.9.18.tgz"
+ "version" "0.9.18"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
- "@solana/wallet-adapter-react" "^0.15.19"
+ "@solana/wallet-adapter-base" "^0.9.18"
+ "@solana/wallet-adapter-react" "^0.15.20"
-"@solana/wallet-adapter-react@^0.15.19":
- "integrity" "sha512-8MEiirK1Fp7apMGFQU6OMZBvppjHwr0uwzE3iYDlG7gPkMPVVR0pruy2oeexSN0fw+S7gnorZJehgOGbptyHHA=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-react/-/wallet-adapter-react-0.15.19.tgz"
- "version" "0.15.19"
+"@solana/wallet-adapter-react@^0.15.19", "@solana/wallet-adapter-react@^0.15.20":
+ "integrity" "sha512-lltCm44QdYuCeCdR60flu5KJyTz/K3TC9H9BB0MJdmUZwgZop8yejO351ISYJUZxqBuFdwuTtK1psjf/12jRiA=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-react/-/wallet-adapter-react-0.15.20.tgz"
+ "version" "0.15.20"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-safepal@^0.5.12":
- "integrity" "sha512-XBad22a2lR04d95uY0CWiZvJKFOA7DIjs1y8NwGN1WGdoCmBbOMGN4NTwWAyr/HOLmmWtu6BTfGBHHLbklh+9w=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-safepal/-/wallet-adapter-safepal-0.5.12.tgz"
- "version" "0.5.12"
+ "integrity" "sha512-TBnJDQKEQZ9E/8xXyHrhOKflz9iUOwRoiQTTtbMHYyOdBVeKUjzyPjZ2fZNFZSMUMmqDDOjQZPJIqFxItrHVkA=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-safepal/-/wallet-adapter-safepal-0.5.13.tgz"
+ "version" "0.5.13"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-saifu@^0.1.9":
- "integrity" "sha512-vHfWXhy1Z913N1m+H+ImIgDARGvl6IvzLO4VF4Nvs68xhLpwyaftzfO2uY4lu12lqnHWBLmYQInHt3QZaB+v6A=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-saifu/-/wallet-adapter-saifu-0.1.9.tgz"
- "version" "0.1.9"
+ "integrity" "sha512-DbLdxbBv1dbQXOZbXJhpyDNHd3fdzxeseEvi6VO0XATWTQ5oqCaNXSmRye4U01wM2Oexd9rm/2DvxezPtQivQQ=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-saifu/-/wallet-adapter-saifu-0.1.10.tgz"
+ "version" "0.1.10"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-salmon@^0.1.6":
- "integrity" "sha512-6VXSSn6dEuwlN1e2NJnJpz7QHG75qB1pPG/WvQ6F/uhjgzZS8CwjE/AUzdjjsHBghLj8ZrstdP6jsxxiYjBixA=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-salmon/-/wallet-adapter-salmon-0.1.6.tgz"
- "version" "0.1.6"
+ "integrity" "sha512-jmLek/7Cjwqwhxs+dihuzyrYXdU2JPrqjK6cHlSkjYfzO3oLDRR2UavTrgbniyZY8FQhyRl9p+VZUpQX+XfPVw=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-salmon/-/wallet-adapter-salmon-0.1.9.tgz"
+ "version" "0.1.9"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
- "salmon-adapter-sdk" "^1.0.0"
+ "@solana/wallet-adapter-base" "^0.9.18"
+ "salmon-adapter-sdk" "^1.1.0"
"@solana/wallet-adapter-sky@^0.1.9":
- "integrity" "sha512-cp6JP4nAJqz/Z3aAKvFRgVhY5II+s/+4beTQxbepQL2MlXxSv1Y6ogJdncLW9KHs8ag4cMhIgGqJsMNuO9Vodw=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-sky/-/wallet-adapter-sky-0.1.9.tgz"
- "version" "0.1.9"
+ "integrity" "sha512-4QJOr3NE7o732zq4Ov4+YSX37QLR39+2zJ6t4wAAhFO7LJtkDZneq768zjg7W/DgQPAg1+Cqh0LP5ZA96E4bQA=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-sky/-/wallet-adapter-sky-0.1.10.tgz"
+ "version" "0.1.10"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-slope@^0.5.15":
- "integrity" "sha512-AckJ2pwrkESQkIHQCqUEiRy5sBD1L2QKiw2ojsSzCtwTp1FDeb+tJ3v0vGe7fAtVchV7qHUJu+e6azXREddggw=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-slope/-/wallet-adapter-slope-0.5.15.tgz"
- "version" "0.5.15"
+ "integrity" "sha512-0bZMcB9aMX4Kl2FWH7lj8HIPY5ph1LgOWl8wFCs/X+A4LyGmKqr2oKoc+kzRUqaVsIjF5CfQ0PePp/Aa4n1DmQ=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-slope/-/wallet-adapter-slope-0.5.16.tgz"
+ "version" "0.5.16"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"bs58" "^4.0.1"
"@solana/wallet-adapter-solflare@^0.6.16":
- "integrity" "sha512-qvonqMq6QpzNhwFAPQ8U1x1dm+3BkDVFl3WG2AYjkCxOKetuZjV+e+IB3lSa5SEYqP/eH4EynRBwNf+a0YRrvg=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-solflare/-/wallet-adapter-solflare-0.6.16.tgz"
- "version" "0.6.16"
+ "integrity" "sha512-LF6V2MgM5+d3zuVioG4ZkpPIVXRHXXysjWfIhqpRW3n0lPFLQMk7agTnEgQU9tHy0WZiLvN6SYZamPK9dGfT0A=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-solflare/-/wallet-adapter-solflare-0.6.18.tgz"
+ "version" "0.6.18"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
- "@solflare-wallet/sdk" "^1.0.11"
+ "@solana/wallet-adapter-base" "^0.9.18"
+ "@solflare-wallet/sdk" "^1.1.0"
"@solana/wallet-adapter-sollet@^0.11.11":
- "integrity" "sha512-LgMVr5+jm101mxEUn+aZN2c5m1iO/n4LFpuKDehJHXWu7e8Y8SCLDdoGjTwEVv0d/2q9bxAyiwGWi1md+IpUnw=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-sollet/-/wallet-adapter-sollet-0.11.11.tgz"
- "version" "0.11.11"
+ "integrity" "sha512-rXTPS28ZRHdErcWiNhadoumcQb3H544wmmWccsARgO4PW1eG/37hp9LIQjFT3c7uBjWPM3rVFfklbmlHQOrVmA=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-sollet/-/wallet-adapter-sollet-0.11.12.tgz"
+ "version" "0.11.12"
dependencies:
"@project-serum/sol-wallet-adapter" "^0.2.6"
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-solong@^0.9.12":
- "integrity" "sha512-e96hGEh1NW7Pr4dkLGeqOUSQpH/a4Lz6nkKwpyo88CtttZKF/zfttthB3Z525u9SR5lFBSaUEYhNT5hsh/kSbg=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-solong/-/wallet-adapter-solong-0.9.12.tgz"
- "version" "0.9.12"
+ "integrity" "sha512-zOwv6+bnKbyUB9TAgtq826WX4XtxTYq5ak83X2GboAuDsPlyYhGhQKiq7ZndKq5Wqd7cCwLRNV95n6YaAfavWw=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-solong/-/wallet-adapter-solong-0.9.13.tgz"
+ "version" "0.9.13"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-spot@^0.1.9":
- "integrity" "sha512-P3N5yPgs3n9EACQkrT+X4xTPRlkscHaZi6dbijEy3dVWkPJDqme3iff5f4aCBFkSrrQAuf/NF4Fc+2MjmyYGFA=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-spot/-/wallet-adapter-spot-0.1.9.tgz"
- "version" "0.1.9"
+ "integrity" "sha512-f+BbIbvKR/1VeD/5SNcb86XDgTJ+w0md0t2VvnmPqndNKaHtSEkRBYhcggF4Y9lUQHqIDJ8CYdBzA5dkOL+Vng=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-spot/-/wallet-adapter-spot-0.1.10.tgz"
+ "version" "0.1.10"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-strike@^0.1.5":
- "integrity" "sha512-CoVV7IOJC5+2H9Bhwgzlg+CMKE5Z7YTpYvgZ+ohnXTVCJUZYtAzhIOXD0t7Md31L+5svbyP6oq+b3B7s33Mung=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-strike/-/wallet-adapter-strike-0.1.5.tgz"
- "version" "0.1.5"
+ "integrity" "sha512-elDnALldwgep3P2fnlewQPyckfTjY6otiZG4xIgpoI/foXcOHTHVxiEspxaod9H6JYXjTTWj1EdH9Ix+2rpCKw=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-strike/-/wallet-adapter-strike-0.1.7.tgz"
+ "version" "0.1.7"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
- "@strike-protocols/solana-wallet-adapter" "^0.1.4"
+ "@solana/wallet-adapter-base" "^0.9.18"
+ "@strike-protocols/solana-wallet-adapter" "^0.1.7"
"@solana/wallet-adapter-tokenary@^0.1.6":
- "integrity" "sha512-Bi9RKhavSasA+HFVBRCCNrFd/iRGIxKqwG3bmCrn/iKV3l3lHSw5OMVx7qXrXvmoUVS9DuM5MX7bMxe6i4bu6A=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-tokenary/-/wallet-adapter-tokenary-0.1.6.tgz"
- "version" "0.1.6"
+ "integrity" "sha512-HuNieaWJDtxBmDE+h9+2E4uJ1TmkY6b0iHwD71joD50HwDqkOH7nZO8qwhdO2/3szYlW0w+gcPQVaq0hBAp2+g=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-tokenary/-/wallet-adapter-tokenary-0.1.7.tgz"
+ "version" "0.1.7"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-tokenpocket@^0.4.13":
- "integrity" "sha512-4HJ9wqs1FLNxXIkiUIRYyCIXd1xZd+GFoIjzk42jjykJLtjz7MFGH0jOjDVWH3sEmLdJ3BIEQ7Z8t6wYjfiDhw=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-tokenpocket/-/wallet-adapter-tokenpocket-0.4.13.tgz"
- "version" "0.4.13"
+ "integrity" "sha512-tLmnc8wKNGFLCgNGZ/xDRLtNUa3KhKLIXWBltUm3GErnmhUezzZHy4h6UbP5tcvaDQ48eg8/KAUJPlF617/vhg=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-tokenpocket/-/wallet-adapter-tokenpocket-0.4.14.tgz"
+ "version" "0.4.14"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-torus@^0.11.22":
- "integrity" "sha512-Hr9GfF2Lx2d+ezTObmP7K5uCun3lb4RgGWmrG7P9NwO+BVdL97fJC7qMfw0cZpAPQL63Dfwr/jegMVY5X1KFUw=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-torus/-/wallet-adapter-torus-0.11.22.tgz"
- "version" "0.11.22"
+ "integrity" "sha512-kh6ygm0/gxqSXJLNiGpw0gLqIpoXxeMpso0GsEP2FVbAtzknuhP7MLZ4K+1cHzMScPFkpp2CYAuYeDB0AprVjw=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-torus/-/wallet-adapter-torus-0.11.23.tgz"
+ "version" "0.11.23"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@toruslabs/solana-embed" "^0.3.0"
"assert" "^2.0.0"
"crypto-browserify" "^3.12.0"
@@ -2333,19 +2356,19 @@
"stream-browserify" "^3.0.0"
"@solana/wallet-adapter-trust@^0.1.7":
- "integrity" "sha512-eCgXzNtfksXmSo7lf7aH73rt9r4nd94EU8n4FNtFn2yCNOrG+PYTwaHmsnpWctSn8WAVsn/8a+woDZGjAAidng=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-trust/-/wallet-adapter-trust-0.1.7.tgz"
- "version" "0.1.7"
+ "integrity" "sha512-ES48UCN/C7FtGq2YYDEf6isTuahY6g4PAvljyt0uuBq8VV7hVNxWU4gfjtbwsvAY6FWRXyfNYUAEgHKUrqYvEQ=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-trust/-/wallet-adapter-trust-0.1.8.tgz"
+ "version" "0.1.8"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-walletconnect@^0.1.5":
- "integrity" "sha512-jEgS6Gdc0010+NYows69JNee3lhlUO9gU19gLM4MqEndNMeG9wkXIql5wmefC0herRIxtmJG1XAZi+q3lI92rA=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-walletconnect/-/wallet-adapter-walletconnect-0.1.5.tgz"
- "version" "0.1.5"
+ "integrity" "sha512-793V0jkwzIqZuztE6yiY1Ig7j+2VTJenIaJzCZbeor9XbZQxF3orbCWY7/pGPY2FkoXyxQ6JKV3IJtqeE7NJDw=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-walletconnect/-/wallet-adapter-walletconnect-0.1.8.tgz"
+ "version" "0.1.8"
dependencies:
- "@jnwng/walletconnect-solana" "^0.1.0"
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@jnwng/walletconnect-solana" "^0.1.3"
+ "@solana/wallet-adapter-base" "^0.9.18"
"@solana/wallet-adapter-wallets@^0.18.10":
"integrity" "sha512-ynZ+MFhWANLtStOgps9z+FTdqTA7rVSdi00waw6fpq353EHEDWoSSgDvA49gG/ttK5WubUdyBBwBUm2zOTbs/A=="
@@ -2397,16 +2420,16 @@
"@solana/wallet-adapter-xdefi" "^0.1.1"
"@solana/wallet-adapter-xdefi@^0.1.1":
- "integrity" "sha512-RNpVc8roXNkO0/m+aIu2jp3N/qDp9zuPAMjwPJJLZiwbUxPTAsozbfbUSo+4LDWw8jg4210vpa15Y6v02UD4gQ=="
- "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-xdefi/-/wallet-adapter-xdefi-0.1.1.tgz"
- "version" "0.1.1"
+ "integrity" "sha512-fdjMsb3v1Q9qRC2lGbvQyZlMcDVtkeb35kxEi9Mf2HZOGEQaJjGnXWwioo0vbq7HzCsak77vTE97jKRsR9I9Xw=="
+ "resolved" "https://registry.npmjs.org/@solana/wallet-adapter-xdefi/-/wallet-adapter-xdefi-0.1.2.tgz"
+ "version" "0.1.2"
dependencies:
- "@solana/wallet-adapter-base" "^0.9.17"
+ "@solana/wallet-adapter-base" "^0.9.18"
-"@solana/web3.js@^1.30.2", "@solana/web3.js@^1.31.0", "@solana/web3.js@^1.32.0", "@solana/web3.js@^1.35.1", "@solana/web3.js@^1.36.0", "@solana/web3.js@^1.44.3", "@solana/web3.js@^1.47.3", "@solana/web3.js@^1.47.4", "@solana/web3.js@^1.5.0", "@solana/web3.js@^1.50.1", "@solana/web3.js@^1.52.0", "@solana/web3.js@^1.56.2", "@solana/web3.js@^1.61.0", "@solana/web3.js@^1.62.0":
- "integrity" "sha512-rHnqJR5ECooUp8egurP9Qi1SKI1Q3pbF2ZkaHbEmFsSjBsyEe+Qqxa5h+7ueylqApYyk0zawnxz83y4kdrlNIA=="
- "resolved" "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.62.0.tgz"
- "version" "1.62.0"
+"@solana/web3.js@^1.30.2", "@solana/web3.js@^1.32.0", "@solana/web3.js@^1.35.1", "@solana/web3.js@^1.36.0", "@solana/web3.js@^1.44.3", "@solana/web3.js@^1.47.3", "@solana/web3.js@^1.47.4", "@solana/web3.js@^1.5.0", "@solana/web3.js@^1.50.1", "@solana/web3.js@^1.52.0", "@solana/web3.js@^1.56.2", "@solana/web3.js@^1.58.0", "@solana/web3.js@^1.61.0", "@solana/web3.js@^1.62.0":
+ "integrity" "sha512-RyaHMR2jGmaesnYP045VLeBGfR/gAW3cvZHzMFGg7bkO+WOYOYp1nEllf0/la4U4qsYGKCsO9eEevR5fhHiVHg=="
+ "resolved" "https://registry.npmjs.org/@solana/web3.js/-/web3.js-1.66.2.tgz"
+ "version" "1.66.2"
dependencies:
"@babel/runtime" "^7.12.5"
"@noble/ed25519" "^1.7.0"
@@ -2424,10 +2447,10 @@
"rpc-websockets" "^7.5.0"
"superstruct" "^0.14.2"
-"@solflare-wallet/sdk@^1.0.11":
- "integrity" "sha512-zSCistnl+36idZZCLe6RpqMwIYCyFdeA5lQtRNi6LX0xQ999cDufT/LPKviRlibTf9VJa92IHYZcWJiHkFY4sA=="
- "resolved" "https://registry.npmjs.org/@solflare-wallet/sdk/-/sdk-1.0.12.tgz"
- "version" "1.0.12"
+"@solflare-wallet/sdk@^1.1.0":
+ "integrity" "sha512-h/OmjgRMDC6CkPHlkUQgOIRv1QXEZp+kQg132zU1KAcikZvc25xf0yMMRU0APUypQ6EJEz6bgQR6BRvvVA9/ZA=="
+ "resolved" "https://registry.npmjs.org/@solflare-wallet/sdk/-/sdk-1.1.0.tgz"
+ "version" "1.1.0"
dependencies:
"@project-serum/sol-wallet-adapter" "0.2.0"
"bs58" "^4.0.1"
@@ -2576,10 +2599,10 @@
"@stablelib/random" "^1.0.1"
"@stablelib/wipe" "^1.0.1"
-"@strike-protocols/solana-wallet-adapter@^0.1.4":
- "integrity" "sha512-WePD1kml3JPatU9rHIRYsP76BsD8T8j7n60ED1sFbIgKId34pvdQoQsuv/c7kpEYsRZvYJhaR2nODEE1FMR3CA=="
- "resolved" "https://registry.npmjs.org/@strike-protocols/solana-wallet-adapter/-/solana-wallet-adapter-0.1.7.tgz"
- "version" "0.1.7"
+"@strike-protocols/solana-wallet-adapter@^0.1.7":
+ "integrity" "sha512-8gZAfjkoFgwf5fLFzrVuE2MtxAc7Pc0loBgi0zfcb3ijOy/FEpm5RJKLruKOhcThS6CHrfFxDU80AsZe+msObw=="
+ "resolved" "https://registry.npmjs.org/@strike-protocols/solana-wallet-adapter/-/solana-wallet-adapter-0.1.8.tgz"
+ "version" "0.1.8"
dependencies:
"@solana/web3.js" "^1.44.3"
"bs58" "^4.0.1"
@@ -2747,9 +2770,9 @@
"@types/lodash" "*"
"@types/lodash@*":
- "integrity" "sha512-evMDG1bC4rgQg4ku9tKpuMh5iBNEwNa3tf9zRHdP1qlv+1WUg44xat4IxCE14gIpZRGUUWAx2VhItCZc25NfMA=="
- "resolved" "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.185.tgz"
- "version" "4.14.185"
+ "integrity" "sha512-eHcVlLXP0c2FlMPm56ITode2AgLMSa6aJ05JTTbYbI+7EMkCEE5qk2E41d5g2lCVTqRe0GnnRFurmlCsDODrPw=="
+ "resolved" "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.186.tgz"
+ "version" "4.14.186"
"@types/node@*", "@types/node@18.7.16":
"integrity" "sha512-EQHhixfu+mkqHMZl1R2Ovuvn47PUw18azMJOTwSZr9/fhzHNGXAJ0ma0dayRVchprpCj0Kc1K1xKoWaATWF1qg=="
@@ -2819,47 +2842,47 @@
"@types/node" "*"
"@typescript-eslint/parser@^5.21.0":
- "integrity" "sha512-01VzI/ipYKuaG5PkE5+qyJ6m02fVALmMPY3Qq5BHflDx3y4VobbLdHQkSMg9VPRS4KdNt4oYTMaomFoHonBGAw=="
- "resolved" "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.37.0.tgz"
- "version" "5.37.0"
+ "integrity" "sha512-IK6x55va5w4YvXd4b3VrXQPldV9vQTxi5ov+g4pMANsXPTXOcfjx08CRR1Dfrcc51syPtXHF5bgLlMHYFrvQtg=="
+ "resolved" "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.40.1.tgz"
+ "version" "5.40.1"
dependencies:
- "@typescript-eslint/scope-manager" "5.37.0"
- "@typescript-eslint/types" "5.37.0"
- "@typescript-eslint/typescript-estree" "5.37.0"
+ "@typescript-eslint/scope-manager" "5.40.1"
+ "@typescript-eslint/types" "5.40.1"
+ "@typescript-eslint/typescript-estree" "5.40.1"
"debug" "^4.3.4"
-"@typescript-eslint/scope-manager@5.37.0":
- "integrity" "sha512-F67MqrmSXGd/eZnujjtkPgBQzgespu/iCZ+54Ok9X5tALb9L2v3G+QBSoWkXG0p3lcTJsL+iXz5eLUEdSiJU9Q=="
- "resolved" "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.37.0.tgz"
- "version" "5.37.0"
+"@typescript-eslint/scope-manager@5.40.1":
+ "integrity" "sha512-jkn4xsJiUQucI16OLCXrLRXDZ3afKhOIqXs4R3O+M00hdQLKR58WuyXPZZjhKLFCEP2g+TXdBRtLQ33UfAdRUg=="
+ "resolved" "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.40.1.tgz"
+ "version" "5.40.1"
dependencies:
- "@typescript-eslint/types" "5.37.0"
- "@typescript-eslint/visitor-keys" "5.37.0"
+ "@typescript-eslint/types" "5.40.1"
+ "@typescript-eslint/visitor-keys" "5.40.1"
-"@typescript-eslint/types@5.37.0":
- "integrity" "sha512-3frIJiTa5+tCb2iqR/bf7XwU20lnU05r/sgPJnRpwvfZaqCJBrl8Q/mw9vr3NrNdB/XtVyMA0eppRMMBqdJ1bA=="
- "resolved" "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.37.0.tgz"
- "version" "5.37.0"
+"@typescript-eslint/types@5.40.1":
+ "integrity" "sha512-Icg9kiuVJSwdzSQvtdGspOlWNjVDnF3qVIKXdJ103o36yRprdl3Ge5cABQx+csx960nuMF21v8qvO31v9t3OHw=="
+ "resolved" "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.40.1.tgz"
+ "version" "5.40.1"
-"@typescript-eslint/typescript-estree@5.37.0":
- "integrity" "sha512-JkFoFIt/cx59iqEDSgIGnQpCTRv96MQnXCYvJi7QhBC24uyuzbD8wVbajMB1b9x4I0octYFJ3OwjAwNqk1AjDA=="
- "resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.37.0.tgz"
- "version" "5.37.0"
+"@typescript-eslint/typescript-estree@5.40.1":
+ "integrity" "sha512-5QTP/nW5+60jBcEPfXy/EZL01qrl9GZtbgDZtDPlfW5zj/zjNrdI2B5zMUHmOsfvOr2cWqwVdWjobCiHcedmQA=="
+ "resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.40.1.tgz"
+ "version" "5.40.1"
dependencies:
- "@typescript-eslint/types" "5.37.0"
- "@typescript-eslint/visitor-keys" "5.37.0"
+ "@typescript-eslint/types" "5.40.1"
+ "@typescript-eslint/visitor-keys" "5.40.1"
"debug" "^4.3.4"
"globby" "^11.1.0"
"is-glob" "^4.0.3"
"semver" "^7.3.7"
"tsutils" "^3.21.0"
-"@typescript-eslint/visitor-keys@5.37.0":
- "integrity" "sha512-Hp7rT4cENBPIzMwrlehLW/28EVCOcE9U1Z1BQTc8EA8v5qpr7GRGuG+U58V5tTY48zvUOA3KHvw3rA8tY9fbdA=="
- "resolved" "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.37.0.tgz"
- "version" "5.37.0"
+"@typescript-eslint/visitor-keys@5.40.1":
+ "integrity" "sha512-A2DGmeZ+FMja0geX5rww+DpvILpwo1OsiQs0M+joPWJYsiEFBLsH0y1oFymPNul6Z5okSmHpP4ivkc2N0Cgfkw=="
+ "resolved" "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.40.1.tgz"
+ "version" "5.40.1"
dependencies:
- "@typescript-eslint/types" "5.37.0"
+ "@typescript-eslint/types" "5.40.1"
"eslint-visitor-keys" "^3.3.0"
"@walletconnect/browser-utils@^1.8.0":
@@ -2873,10 +2896,10 @@
"@walletconnect/window-metadata" "1.0.0"
"detect-browser" "5.2.0"
-"@walletconnect/core@2.0.0-rc.2":
- "integrity" "sha512-zyZs0ChqthjKKBKF8bhXRhli15U+GOa/YPX4gzmdjRB9o8LZ27GMRNvWdLhUHkJU/GC6EfmV3/B7J8rfQGsnDA=="
- "resolved" "https://registry.npmjs.org/@walletconnect/core/-/core-2.0.0-rc.2.tgz"
- "version" "2.0.0-rc.2"
+"@walletconnect/core@2.0.0-rc.3":
+ "integrity" "sha512-ErnwoAZVnu8658GT9Aw3WjaOctFu1TQYyhOSL6LRF4pa+K4wvHOikiBLxPG7HsrkqyZ8ItdROmkw2ycSipmMow=="
+ "resolved" "https://registry.npmjs.org/@walletconnect/core/-/core-2.0.0-rc.3.tgz"
+ "version" "2.0.0-rc.3"
dependencies:
"@walletconnect/heartbeat" "1.0.0"
"@walletconnect/jsonrpc-provider" "1.0.5"
@@ -2888,8 +2911,8 @@
"@walletconnect/relay-auth" "1.0.3"
"@walletconnect/safe-json" "1.0.0"
"@walletconnect/time" "1.0.1"
- "@walletconnect/types" "2.0.0-rc.2"
- "@walletconnect/utils" "2.0.0-rc.2"
+ "@walletconnect/types" "2.0.0-rc.3"
+ "@walletconnect/utils" "2.0.0-rc.3"
"lodash.isequal" "4.5.0"
"pino" "6.7.0"
"pino-pretty" "4.3.0"
@@ -3002,20 +3025,20 @@
"resolved" "https://registry.npmjs.org/@walletconnect/safe-json/-/safe-json-1.0.0.tgz"
"version" "1.0.0"
-"@walletconnect/sign-client@2.0.0-rc.2":
- "integrity" "sha512-JJ8/31NERk59GqQ8KLm+1pM32YkTfAx8Nvh8cEBWp/mjtUgcoXEZ4V6EnoLkA+r1Vy/8kMnYOdIUH0OA5gXmvQ=="
- "resolved" "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.0.0-rc.2.tgz"
- "version" "2.0.0-rc.2"
+"@walletconnect/sign-client@2.0.0-rc.3":
+ "integrity" "sha512-M/+tmccQvNIM86CJ3RsQBZVaECSq8jH1CEj1iUDmhxuG0eEg3Zesf5yJMg41aFFNVi2vSdBCeP0zcqWCDChf/g=="
+ "resolved" "https://registry.npmjs.org/@walletconnect/sign-client/-/sign-client-2.0.0-rc.3.tgz"
+ "version" "2.0.0-rc.3"
dependencies:
- "@walletconnect/core" "2.0.0-rc.2"
+ "@walletconnect/core" "2.0.0-rc.3"
"@walletconnect/events" "1.0.0"
"@walletconnect/heartbeat" "1.0.0"
"@walletconnect/jsonrpc-provider" "1.0.5"
"@walletconnect/jsonrpc-utils" "1.0.3"
"@walletconnect/logger" "1.0.1"
"@walletconnect/time" "1.0.1"
- "@walletconnect/types" "2.0.0-rc.2"
- "@walletconnect/utils" "2.0.0-rc.2"
+ "@walletconnect/types" "2.0.0-rc.3"
+ "@walletconnect/utils" "2.0.0-rc.3"
"pino" "6.7.0"
"pino-pretty" "4.3.0"
@@ -3029,20 +3052,20 @@
"resolved" "https://registry.npmjs.org/@walletconnect/types/-/types-1.8.0.tgz"
"version" "1.8.0"
-"@walletconnect/types@2.0.0-rc.2":
- "integrity" "sha512-BuQbEjkRIZULqBHBxKgGiUgeJ1i+5NpNvw5Y7ML7X+hksHooj0+Hy6qv7Jc/cegltEovElAU2w6R38dfuEPUOA=="
- "resolved" "https://registry.npmjs.org/@walletconnect/types/-/types-2.0.0-rc.2.tgz"
- "version" "2.0.0-rc.2"
+"@walletconnect/types@2.0.0-rc.3":
+ "integrity" "sha512-PkzgdBr4tSXQtyGT91P6cdQJ44dCwRRwIW4BDW6tRqsvziPcyt6aQzWYfKQiMl6i2fIMK/8fgr1oDYPcLQLvbA=="
+ "resolved" "https://registry.npmjs.org/@walletconnect/types/-/types-2.0.0-rc.3.tgz"
+ "version" "2.0.0-rc.3"
dependencies:
"@walletconnect/events" "1.0.0"
"@walletconnect/heartbeat" "1.0.0"
"@walletconnect/jsonrpc-types" "1.0.1"
"@walletconnect/keyvaluestorage" "1.0.0"
-"@walletconnect/utils@2.0.0-rc.2":
- "integrity" "sha512-G4qa4zirL3MbryhWf/+4uew7wV3gtLmIt09FVtWQLhPCePrlA0A8EuPXYQAqW58gQpFIsuUiKUYfy3kRMkp4WA=="
- "resolved" "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.0.0-rc.2.tgz"
- "version" "2.0.0-rc.2"
+"@walletconnect/utils@2.0.0-rc.3":
+ "integrity" "sha512-ThMv+uLZiU9iSEN28cLZy98/LyQmHQ6eq29P9qsET9ZginF5QplmvTRKQvLSeLrU4K4rcRaXs/FndhxxiRhPcQ=="
+ "resolved" "https://registry.npmjs.org/@walletconnect/utils/-/utils-2.0.0-rc.3.tgz"
+ "version" "2.0.0-rc.3"
dependencies:
"@stablelib/chacha20poly1305" "1.0.1"
"@stablelib/hkdf" "1.0.1"
@@ -3053,7 +3076,7 @@
"@walletconnect/relay-api" "1.0.6"
"@walletconnect/safe-json" "1.0.0"
"@walletconnect/time" "1.0.1"
- "@walletconnect/types" "2.0.0-rc.2"
+ "@walletconnect/types" "2.0.0-rc.3"
"@walletconnect/window-getters" "1.0.0"
"@walletconnect/window-metadata" "1.0.0"
"detect-browser" "5.3.0"
@@ -3125,9 +3148,9 @@
"version" "2.1.1"
"algosdk@^1.13.1":
- "integrity" "sha512-pgHzEExFn8hjcDphQYo+0Pi6TLWZOyXPcxjisldd6ZaaF0cNsB6C97n66OXi0gtL3mvMIgD53SLBfzy1u9YM+g=="
- "resolved" "https://registry.npmjs.org/algosdk/-/algosdk-1.21.0.tgz"
- "version" "1.21.0"
+ "integrity" "sha512-oj2G1ucLyqfTAPM9iIWiSfU0Jmwx1gaafqlC2RaWcwHx86cwnFTwEf/haFQ9yoirkIozVlZYTYtv+Ltkj3il8w=="
+ "resolved" "https://registry.npmjs.org/algosdk/-/algosdk-1.22.0.tgz"
+ "version" "1.22.0"
dependencies:
"algo-msgpack-with-bigint" "^2.1.1"
"buffer" "^6.0.2"
@@ -3159,21 +3182,21 @@
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
"version" "5.0.1"
-"ansi-styles@^3.2.0":
+"ansi-styles@^3.2.0", "ansi-styles@^3.2.1":
"integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
-"ansi-styles@^3.2.1":
- "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
- "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
- "version" "3.2.1"
+"ansi-styles@^4.0.0":
+ "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
+ "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
+ "version" "4.3.0"
dependencies:
- "color-convert" "^1.9.0"
+ "color-convert" "^2.0.1"
-"ansi-styles@^4.0.0", "ansi-styles@^4.1.0":
+"ansi-styles@^4.1.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
@@ -3368,7 +3391,21 @@
"resolved" "https://registry.npmjs.org/axe-core/-/axe-core-4.4.3.tgz"
"version" "4.4.3"
-"axios@^0.21.0", "axios@^0.21.1", "axios@^0.21.3":
+"axios@^0.21.0":
+ "integrity" "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg=="
+ "resolved" "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz"
+ "version" "0.21.4"
+ dependencies:
+ "follow-redirects" "^1.14.0"
+
+"axios@^0.21.1":
+ "integrity" "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg=="
+ "resolved" "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz"
+ "version" "0.21.4"
+ dependencies:
+ "follow-redirects" "^1.14.0"
+
+"axios@^0.21.3":
"integrity" "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg=="
"resolved" "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz"
"version" "0.21.4"
@@ -3638,15 +3675,15 @@
"readable-stream" "^3.6.0"
"safe-buffer" "^5.2.0"
-"browserslist@^4.20.2", "browserslist@>= 4.21.0":
- "integrity" "sha512-898rgRXLAyRkM1GryrrBHGkqA5hlpkV5MhtZwg9QXeiyLUYs2k00Un05aX5l2/yJIOObYKOpS2JNo8nJDE7fWQ=="
- "resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.21.3.tgz"
- "version" "4.21.3"
+"browserslist@^4.21.3", "browserslist@>= 4.21.0":
+ "integrity" "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw=="
+ "resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz"
+ "version" "4.21.4"
dependencies:
- "caniuse-lite" "^1.0.30001370"
- "electron-to-chromium" "^1.4.202"
+ "caniuse-lite" "^1.0.30001400"
+ "electron-to-chromium" "^1.4.251"
"node-releases" "^2.0.6"
- "update-browserslist-db" "^1.0.5"
+ "update-browserslist-db" "^1.0.9"
"bs58@^3.0.0":
"integrity" "sha512-9C2bRFTGy3meqO65O9jLvVTyawvhLVp4h2ECm5KlRPuV5KPDNJZcJIj3gl+aA0ENXcYrUSLCkPAeqbTcI2uWyQ=="
@@ -3655,7 +3692,14 @@
dependencies:
"base-x" "^1.1.0"
-"bs58@^4.0.0", "bs58@^4.0.1":
+"bs58@^4.0.0":
+ "integrity" "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw=="
+ "resolved" "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz"
+ "version" "4.0.1"
+ dependencies:
+ "base-x" "^3.0.2"
+
+"bs58@^4.0.1":
"integrity" "sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw=="
"resolved" "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz"
"version" "4.0.1"
@@ -3747,9 +3791,9 @@
"ieee754" "^1.2.1"
"bufferutil@^4.0.1":
- "integrity" "sha512-jduaYOYtnio4aIAyc6UbvPCVcgq7nYpVnucyxr6eCYg/Woad9Hf/oxxBRDnGGjPfjUm6j5O/uBWhIu4iLebFaw=="
- "resolved" "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.6.tgz"
- "version" "4.0.6"
+ "integrity" "sha512-kukuqc39WOHtdxtw4UScxF/WVnMFVSQVKhtx3AjZJzhd0RGZZldcrfSEbVsWWe6KNH253574cq5F+wpv0G9pJw=="
+ "resolved" "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.7.tgz"
+ "version" "4.0.7"
dependencies:
"node-gyp-build" "^4.3.0"
@@ -3771,10 +3815,10 @@
"resolved" "https://registry.npmjs.org/camelcase/-/camelcase-5.0.0.tgz"
"version" "5.0.0"
-"caniuse-lite@^1.0.30001332", "caniuse-lite@^1.0.30001370":
- "integrity" "sha512-SW9N2TbCdLf0eiNDRrrQXx2sOkaakNZbCjgNpPyMJJbiOrU5QzMIrXOVMRM1myBXTD5iTkdrtU/EguCrBocHlA=="
- "resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001397.tgz"
- "version" "1.0.30001397"
+"caniuse-lite@^1.0.30001332", "caniuse-lite@^1.0.30001400":
+ "integrity" "sha512-09iwWGOlifvE1XuHokFMP7eR38a0JnajoyL3/i87c8ZjRWRrdKo1fqjNfugfBD0UDBIOz0U+jtNhJ0EPm1VleQ=="
+ "resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001423.tgz"
+ "version" "1.0.30001423"
"capability@^0.2.5":
"integrity" "sha512-rsJZYVCgXd08sPqwmaIqjAd5SUTfonV0z/gDJ8D6cN8wQphky1kkAYEqQ+hmDxTw7UihvBfjUVUSY+DBEe44jg=="
@@ -3786,7 +3830,7 @@
"resolved" "https://registry.npmjs.org/cbor-sync/-/cbor-sync-1.0.4.tgz"
"version" "1.0.4"
-"chalk@^2.0.0":
+"chalk@^2.0.0", "chalk@2.4.2":
"integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="
"resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
"version" "2.4.2"
@@ -3795,7 +3839,7 @@
"escape-string-regexp" "^1.0.5"
"supports-color" "^5.3.0"
-"chalk@^4.0.0", "chalk@^4.1.0", "chalk@^4.1.1":
+"chalk@^4.0.0":
"integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="
"resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
"version" "4.1.2"
@@ -3803,14 +3847,21 @@
"ansi-styles" "^4.1.0"
"supports-color" "^7.1.0"
-"chalk@2.4.2":
- "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="
- "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
- "version" "2.4.2"
+"chalk@^4.1.0":
+ "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="
+ "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
+ "version" "4.1.2"
dependencies:
- "ansi-styles" "^3.2.1"
- "escape-string-regexp" "^1.0.5"
- "supports-color" "^5.3.0"
+ "ansi-styles" "^4.1.0"
+ "supports-color" "^7.1.0"
+
+"chalk@^4.1.1":
+ "integrity" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="
+ "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
+ "version" "4.1.2"
+ dependencies:
+ "ansi-styles" "^4.1.0"
+ "supports-color" "^7.1.0"
"chardet@^0.7.0":
"integrity" "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="
@@ -3918,11 +3969,9 @@
"version" "0.0.1"
"convert-source-map@^1.5.0", "convert-source-map@^1.7.0":
- "integrity" "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA=="
- "resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz"
- "version" "1.8.0"
- dependencies:
- "safe-buffer" "~5.1.1"
+ "integrity" "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A=="
+ "resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz"
+ "version" "1.9.0"
"cookiejar@^2.1.2":
"integrity" "sha512-JxbCBUdrfr6AQjOXrxoTvAMJO4HBTUIlBzslcJPAz+/KT8yk53fXun51u+RenNYvad/+Vc2DIz5o9UxlCDymFQ=="
@@ -3936,10 +3985,10 @@
dependencies:
"toggle-selection" "^1.0.6"
-"core-js-pure@^3.20.2":
- "integrity" "sha512-7Fr74bliUDdeJCBMxkkIuQ4xfxn/SwrVg+HkJUAoNEXVqYLv55l6Af0dJ5Lq2YBUW9yKqSkLXaS5SYPK6MGa/A=="
- "resolved" "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.25.1.tgz"
- "version" "3.25.1"
+"core-js-pure@^3.25.1":
+ "integrity" "sha512-oml3M22pHM+igfWHDfdLVq2ShWmjM2V4L+dQEBs0DWVIqEm9WHCwGAlZ6BmyBQGy5sFrJmcx+856D9lVKyGWYg=="
+ "resolved" "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.25.5.tgz"
+ "version" "3.25.5"
"core-util-is@~1.0.0":
"integrity" "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="
@@ -4046,19 +4095,19 @@
"tiny-invariant" "^1.0.6"
"csstype@^3.0.11", "csstype@^3.0.2":
- "integrity" "sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA=="
- "resolved" "https://registry.npmjs.org/csstype/-/csstype-3.1.0.tgz"
- "version" "3.1.0"
+ "integrity" "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw=="
+ "resolved" "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz"
+ "version" "3.1.1"
"csv-generate@^4.2.0":
"integrity" "sha512-zlIESlGQaYqIhNYwBN2pj5KXNMYbAXZYMOgNoVSoYV8MQyGZwcNWX+kx5LHxocp+zQDqzSgeKh+e+AZs+nCq4Q=="
"resolved" "https://registry.npmjs.org/csv-generate/-/csv-generate-4.2.0.tgz"
"version" "4.2.0"
-"csv-parse@^5.3.0":
- "integrity" "sha512-UXJCGwvJ2fep39purtAn27OUYmxB1JQto+zhZ4QlJpzsirtSFbzLvip1aIgziqNdZp/TptvsKEV5BZSxe10/DQ=="
- "resolved" "https://registry.npmjs.org/csv-parse/-/csv-parse-5.3.0.tgz"
- "version" "5.3.0"
+"csv-parse@^5.3.1":
+ "integrity" "sha512-R4Hv6eGJNzgcKdThZ6XORbSQ873HVcNke74QIq+LbwpT90LaZ8Xzl7KKiuIP16xq/P7ofzRt0h7S0xm+fVScsw=="
+ "resolved" "https://registry.npmjs.org/csv-parse/-/csv-parse-5.3.1.tgz"
+ "version" "5.3.1"
"csv-stringify@^6.2.0":
"integrity" "sha512-dcUbQLRTTDcgQxgEU8V9IctkaCwHZjZfzUZ5ZB3RY8Y+pXtdtl5iVQHfGzANytFFkRKanYzBXrkfpNdGR7eviA=="
@@ -4066,12 +4115,12 @@
"version" "6.2.0"
"csv@^6.0.5":
- "integrity" "sha512-yT7dkCsJLJ36NUW0d0ei7parOcUCx/QVkK77puwA/rF4bMciTB5Kf+wuegL+7zh8s6revFM+BFQ2h+U2k4jgBQ=="
- "resolved" "https://registry.npmjs.org/csv/-/csv-6.2.0.tgz"
- "version" "6.2.0"
+ "integrity" "sha512-qTEPklcIZkJGaB/j6/2qNXZbKgWSXPVMyRnZvRcb1F7MGyvLqJexlZlbJ3NQkgmUoAeScZhsRHjlZEgImBfCYQ=="
+ "resolved" "https://registry.npmjs.org/csv/-/csv-6.2.1.tgz"
+ "version" "6.2.1"
dependencies:
"csv-generate" "^4.2.0"
- "csv-parse" "^5.3.0"
+ "csv-parse" "^5.3.1"
"csv-stringify" "^6.2.0"
"stream-transform" "^3.2.0"
@@ -4129,9 +4178,9 @@
"version" "0.1.4"
"defaults@^1.0.3":
- "integrity" "sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA=="
- "resolved" "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz"
- "version" "1.0.3"
+ "integrity" "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A=="
+ "resolved" "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz"
+ "version" "1.0.4"
dependencies:
"clone" "^1.0.2"
@@ -4232,9 +4281,9 @@
"esutils" "^2.0.2"
"dotenv@^16.0.2":
- "integrity" "sha512-JvpYKUmzQhYoIFgK2MOnF3bciIZoItIIoryihy0rIA+H4Jy0FmgyKYAHCTN98P5ybGSJcIFbh6QKeJdtZd1qhA=="
- "resolved" "https://registry.npmjs.org/dotenv/-/dotenv-16.0.2.tgz"
- "version" "16.0.2"
+ "integrity" "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ=="
+ "resolved" "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz"
+ "version" "16.0.3"
"drbg.js@^1.0.1":
"integrity" "sha512-F4wZ06PvqxYLFEZKkFxTDcns9oFNk34hvmJSEwdzsxVQ8YI5YaxtACgQatkYgv2VI2CFkUd2Y+xosPQnHv809g=="
@@ -4257,10 +4306,10 @@
dependencies:
"@json-rpc-tools/provider" "^1.5.5"
-"electron-to-chromium@^1.4.202":
- "integrity" "sha512-FLs6R4FQE+1JHM0hh3sfdxnYjKvJpHZyhQDjc2qFq/xFvmmRt/TATNToZhrcGUFzpF2XjeiuozrA8lI0PZmYYw=="
- "resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.247.tgz"
- "version" "1.4.247"
+"electron-to-chromium@^1.4.251":
+ "integrity" "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA=="
+ "resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz"
+ "version" "1.4.284"
"elliptic@^6.5.2", "elliptic@^6.5.3", "elliptic@^6.5.4", "elliptic@6.5.4":
"integrity" "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ=="
@@ -4297,10 +4346,10 @@
dependencies:
"once" "^1.4.0"
-"engine.io-client@~6.2.1":
- "integrity" "sha512-8ZQmx0LQGRTYkHuogVZuGSpDqYZtCM/nv8zQ68VZ+JkOpazJ7ICdsSpaO6iXwvaU30oFg5QJOJWj8zWqhbKjkQ=="
- "resolved" "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.2.tgz"
- "version" "6.2.2"
+"engine.io-client@~6.2.3":
+ "integrity" "sha512-aXPtgF1JS3RuuKcpSrBtimSjYvrbhKW9froICH4s0F3XQWLxsKNxqzG39nnvQZQnva4CMvUK63T7shevxRyYHw=="
+ "resolved" "https://registry.npmjs.org/engine.io-client/-/engine.io-client-6.2.3.tgz"
+ "version" "6.2.3"
dependencies:
"@socket.io/component-emitter" "~3.1.0"
"debug" "~4.3.1"
@@ -4330,21 +4379,21 @@
"u3" "^0.1.1"
"es-abstract@^1.19.0", "es-abstract@^1.19.1", "es-abstract@^1.19.2", "es-abstract@^1.19.5", "es-abstract@^1.20.0":
- "integrity" "sha512-XxXQuVNrySBNlEkTYJoDNFe5+s2yIOpzq80sUHEdPdQr0S5nTLz4ZPPPswNIpKseDDUS5yghX1gfLIHQZ1iNuQ=="
- "resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.2.tgz"
- "version" "1.20.2"
+ "integrity" "sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA=="
+ "resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.4.tgz"
+ "version" "1.20.4"
dependencies:
"call-bind" "^1.0.2"
"es-to-primitive" "^1.2.1"
"function-bind" "^1.1.1"
"function.prototype.name" "^1.1.5"
- "get-intrinsic" "^1.1.2"
+ "get-intrinsic" "^1.1.3"
"get-symbol-description" "^1.0.0"
"has" "^1.0.3"
"has-property-descriptors" "^1.0.0"
"has-symbols" "^1.0.3"
"internal-slot" "^1.0.3"
- "is-callable" "^1.2.4"
+ "is-callable" "^1.2.7"
"is-negative-zero" "^2.0.2"
"is-regex" "^1.1.4"
"is-shared-array-buffer" "^1.0.2"
@@ -4354,6 +4403,7 @@
"object-keys" "^1.1.1"
"object.assign" "^4.1.4"
"regexp.prototype.flags" "^1.4.3"
+ "safe-regex-test" "^1.0.0"
"string.prototype.trimend" "^1.0.5"
"string.prototype.trimstart" "^1.0.5"
"unbox-primitive" "^1.0.2"
@@ -4491,9 +4541,9 @@
"version" "4.6.0"
"eslint-plugin-react@^7.29.4":
- "integrity" "sha512-5lBTZmgQmARLLSYiwI71tiGVTLUuqXantZM6vlSY39OaDSV0M7+32K5DnLkmFrwTe+Ksz0ffuLUC91RUviVZfw=="
- "resolved" "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.8.tgz"
- "version" "7.31.8"
+ "integrity" "sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA=="
+ "resolved" "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.10.tgz"
+ "version" "7.31.10"
dependencies:
"array-includes" "^3.1.5"
"array.prototype.flatmap" "^1.3.0"
@@ -4653,9 +4703,9 @@
"rlp" "^2.2.4"
"ethers@^5.5.1":
- "integrity" "sha512-5krze4dRLITX7FpU8J4WscXqADiKmyeNlylmmDLbS95DaZpBhDe2YSwRQwKXWNyXcox7a3gBgm/MkGXV1O1S/Q=="
- "resolved" "https://registry.npmjs.org/ethers/-/ethers-5.7.1.tgz"
- "version" "5.7.1"
+ "integrity" "sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg=="
+ "resolved" "https://registry.npmjs.org/ethers/-/ethers-5.7.2.tgz"
+ "version" "5.7.2"
dependencies:
"@ethersproject/abi" "5.7.0"
"@ethersproject/abstract-provider" "5.7.0"
@@ -4675,7 +4725,7 @@
"@ethersproject/networks" "5.7.1"
"@ethersproject/pbkdf2" "5.7.0"
"@ethersproject/properties" "5.7.0"
- "@ethersproject/providers" "5.7.1"
+ "@ethersproject/providers" "5.7.2"
"@ethersproject/random" "5.7.0"
"@ethersproject/rlp" "5.7.0"
"@ethersproject/sha2" "5.7.0"
@@ -4881,9 +4931,9 @@
"version" "3.2.7"
"focus-lock@^0.11.2":
- "integrity" "sha512-pZ2bO++NWLHhiKkgP1bEXHhR1/OjVcSvlCJ98aNJDFeb7H5OOQaO+SKOZle6041O9rv2tmbrO4JzClAvDUHf0g=="
- "resolved" "https://registry.npmjs.org/focus-lock/-/focus-lock-0.11.2.tgz"
- "version" "0.11.2"
+ "integrity" "sha512-4n0pYcPTa/uI7Q66BZna61nRT7lDhnuJ9PJr6wiDjx4uStg491ks41y7uOG+s0umaaa+hulNKSldU9aTg9/yVg=="
+ "resolved" "https://registry.npmjs.org/focus-lock/-/focus-lock-0.11.3.tgz"
+ "version" "0.11.3"
dependencies:
"tslib" "^2.0.3"
@@ -4995,10 +5045,10 @@
"resolved" "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"
"version" "2.0.5"
-"get-intrinsic@^1.0.2", "get-intrinsic@^1.1.0", "get-intrinsic@^1.1.1", "get-intrinsic@^1.1.2":
- "integrity" "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA=="
- "resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz"
- "version" "1.1.2"
+"get-intrinsic@^1.0.2", "get-intrinsic@^1.1.0", "get-intrinsic@^1.1.1", "get-intrinsic@^1.1.3":
+ "integrity" "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A=="
+ "resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz"
+ "version" "1.1.3"
dependencies:
"function-bind" "^1.1.1"
"has" "^1.0.3"
@@ -5036,27 +5086,27 @@
dependencies:
"is-glob" "^4.0.3"
-"glob@^7.1.3", "glob@^7.2.0":
- "integrity" "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="
- "resolved" "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"
- "version" "7.2.3"
+"glob@^7.1.3", "glob@7.1.7":
+ "integrity" "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ=="
+ "resolved" "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz"
+ "version" "7.1.7"
dependencies:
"fs.realpath" "^1.0.0"
"inflight" "^1.0.4"
"inherits" "2"
- "minimatch" "^3.1.1"
+ "minimatch" "^3.0.4"
"once" "^1.3.0"
"path-is-absolute" "^1.0.0"
-"glob@7.1.7":
- "integrity" "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ=="
- "resolved" "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz"
- "version" "7.1.7"
+"glob@^7.2.0":
+ "integrity" "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="
+ "resolved" "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"
+ "version" "7.2.3"
dependencies:
"fs.realpath" "^1.0.0"
"inflight" "^1.0.4"
"inherits" "2"
- "minimatch" "^3.0.4"
+ "minimatch" "^3.1.1"
"once" "^1.3.0"
"path-is-absolute" "^1.0.0"
@@ -5297,15 +5347,15 @@
"call-bind" "^1.0.2"
"has-tostringtag" "^1.0.0"
-"is-callable@^1.1.3", "is-callable@^1.1.4", "is-callable@^1.2.4":
- "integrity" "sha512-ZIWRujF6MvYGkEuHMYtFRkL2wAtFw89EHfKlXrkPkjQZZRWeh9L1q3SV13NIfHnqxugjLvAOkEHx9mb1zcMnEw=="
- "resolved" "https://registry.npmjs.org/is-callable/-/is-callable-1.2.5.tgz"
- "version" "1.2.5"
+"is-callable@^1.1.3", "is-callable@^1.1.4", "is-callable@^1.2.7":
+ "integrity" "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA=="
+ "resolved" "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz"
+ "version" "1.2.7"
"is-core-module@^2.8.1", "is-core-module@^2.9.0":
- "integrity" "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg=="
- "resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz"
- "version" "2.10.0"
+ "integrity" "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw=="
+ "resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz"
+ "version" "2.11.0"
dependencies:
"has" "^1.0.3"
@@ -5477,9 +5527,9 @@
"version" "0.15.0"
"joi@^17.4.0":
- "integrity" "sha512-OX5dG6DTbcr/kbMFj0KGYxuew69HPcAE3K/sZpEV2nP6e/j/C0HV+HNiBPCASxdx5T7DMoa0s8UeHWMnb6n2zw=="
- "resolved" "https://registry.npmjs.org/joi/-/joi-17.6.0.tgz"
- "version" "17.6.0"
+ "integrity" "sha512-tPzkTJHZQjSFCc842QpdVpOZ9LI2txApboNUbW70qgnRB14Lzl+oWQOPdF2N4yqyiY14wBGe8lc7f/2hZxbGmw=="
+ "resolved" "https://registry.npmjs.org/joi/-/joi-17.6.4.tgz"
+ "version" "17.6.4"
dependencies:
"@hapi/hoek" "^9.0.0"
"@hapi/topo" "^5.0.0"
@@ -5493,9 +5543,9 @@
"version" "2.2.5"
"js-sdsl@^4.1.4":
- "integrity" "sha512-Y2/yD55y5jteOAmY50JbUZYwk3CP3wnLPEZnlR1w9oKhITrBEtAxwuWKebFf8hMrPMgbYwFoWK/lH2sBkErELw=="
- "resolved" "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.4.tgz"
- "version" "4.1.4"
+ "integrity" "sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q=="
+ "resolved" "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.5.tgz"
+ "version" "4.1.5"
"js-sha256@^0.9.0":
"integrity" "sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA=="
@@ -5586,9 +5636,9 @@
"version" "2.2.1"
"jsonify@~0.0.0":
- "integrity" "sha512-trvBk1ki43VZptdBI5rIlG4YOzyeH/WefQt5rj1grasPn4iiZWKet8nkgc4GlsAylaztn0qZfUYOiTsASJFdNA=="
- "resolved" "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz"
- "version" "0.0.0"
+ "integrity" "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg=="
+ "resolved" "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz"
+ "version" "0.0.1"
"jsonparse@^1.2.0":
"integrity" "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg=="
@@ -5837,34 +5887,29 @@
"brace-expansion" "^1.1.7"
"minimist@^1.2.0", "minimist@^1.2.5", "minimist@^1.2.6":
- "integrity" "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="
- "resolved" "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz"
- "version" "1.2.6"
+ "integrity" "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g=="
+ "resolved" "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz"
+ "version" "1.2.7"
"mri@1.1.4":
"integrity" "sha512-6y7IjGPm8AzlvoUrwAaw1tLnUBudaS3752vcd8JtrpGGQn+rXIe63LFVHm/YMwtqAuh+LJPCFdlLYPWM1nYn6w=="
"resolved" "https://registry.npmjs.org/mri/-/mri-1.1.4.tgz"
"version" "1.1.4"
-"ms@^2.1.1":
- "integrity" "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
- "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"
- "version" "2.1.3"
+"ms@^2.1.1", "ms@2.1.2":
+ "integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
+ "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
+ "version" "2.1.2"
"ms@2.0.0":
"integrity" "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A=="
"resolved" "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
"version" "2.0.0"
-"ms@2.1.2":
- "integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
- "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
- "version" "2.1.2"
-
"multiformats@^9.4.2":
- "integrity" "sha512-Cu7NfUYtCV+WN7w59WsRRF138S+um4tTo11ScYsWbNgWyCEGOu8wID1e5eMJs91gFZ0I7afodkkdxCF8NGkqZQ=="
- "resolved" "https://registry.npmjs.org/multiformats/-/multiformats-9.8.1.tgz"
- "version" "9.8.1"
+ "integrity" "sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg=="
+ "resolved" "https://registry.npmjs.org/multiformats/-/multiformats-9.9.0.tgz"
+ "version" "9.9.0"
"multistream@^4.1.0":
"integrity" "sha512-J1XDiAmmNpRCBfIWJv+n0ymC4ABcf/Pl+5YvC5B/D2f/2+8PtHvCNxMPKiQcZyi922Hq69J2YOpb1pTywfifyw=="
@@ -5885,9 +5930,9 @@
"version" "0.0.8"
"nan@^2.14.0", "nan@^2.14.2":
- "integrity" "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA=="
- "resolved" "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz"
- "version" "2.16.0"
+ "integrity" "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ=="
+ "resolved" "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz"
+ "version" "2.17.0"
"nanoid@^3.3.4":
"integrity" "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw=="
@@ -6476,9 +6521,9 @@
"version" "3.0.4"
"react-modal@^3.12.1":
- "integrity" "sha512-duB9bxOaYg7Zt6TMFldIFxQRtSP+Dg3F1ZX3FXxSUn+3tZZ/9JCgeAQKDg7rhZSAqopq8TFRw3yIbnx77gyFTw=="
- "resolved" "https://registry.npmjs.org/react-modal/-/react-modal-3.15.1.tgz"
- "version" "3.15.1"
+ "integrity" "sha512-VStHgI3BVcGo7OXczvnJN7yT2TWHJPDXZWyI/a0ssFNhGZWsPmB8cF0z33ewDXq4VfYMO1vXgiv/g8Nj9NDyWg=="
+ "resolved" "https://registry.npmjs.org/react-modal/-/react-modal-3.16.1.tgz"
+ "version" "3.16.1"
dependencies:
"exenv" "^1.2.0"
"prop-types" "^15.7.2"
@@ -6495,9 +6540,9 @@
"webrtc-adapter" "^7.2.1"
"react-remove-scroll-bar@^2.3.3":
- "integrity" "sha512-i9GMNWwpz8XpUpQ6QlevUtFjHGqnPG4Hxs+wlIJntu/xcsZVEpJcIV71K3ZkqNy2q3GfgvkD7y6t/Sv8ofYSbw=="
- "resolved" "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.3.tgz"
- "version" "2.3.3"
+ "integrity" "sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A=="
+ "resolved" "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.4.tgz"
+ "version" "2.3.4"
dependencies:
"react-style-singleton" "^2.2.1"
"tslib" "^2.0.0"
@@ -6561,9 +6606,9 @@
"util-deprecate" "~1.0.1"
"regenerator-runtime@^0.13.4":
- "integrity" "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="
- "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz"
- "version" "0.13.9"
+ "integrity" "sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw=="
+ "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz"
+ "version" "0.13.10"
"regexp.prototype.flags@^1.4.1", "regexp.prototype.flags@^1.4.3":
"integrity" "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA=="
@@ -6692,48 +6737,52 @@
"tslib" "^1.9.0"
"rxjs@^7.1.0":
- "integrity" "sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw=="
- "resolved" "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz"
- "version" "7.5.6"
+ "integrity" "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA=="
+ "resolved" "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz"
+ "version" "7.5.7"
dependencies:
"tslib" "^2.1.0"
"rxjs@^7.5.5":
- "integrity" "sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw=="
- "resolved" "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz"
- "version" "7.5.6"
+ "integrity" "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA=="
+ "resolved" "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz"
+ "version" "7.5.7"
dependencies:
"tslib" "^2.1.0"
-"safe-buffer@^5.0.1", "safe-buffer@^5.1.0", "safe-buffer@^5.1.1", "safe-buffer@^5.1.2", "safe-buffer@~5.1.0", "safe-buffer@~5.1.1":
- "integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
- "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
- "version" "5.1.2"
-
-"safe-buffer@^5.2.0":
+"safe-buffer@^5.0.1", "safe-buffer@^5.1.0", "safe-buffer@^5.1.1", "safe-buffer@^5.1.2", "safe-buffer@^5.2.0", "safe-buffer@~5.2.0":
"integrity" "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
"resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"
"version" "5.2.1"
-"safe-buffer@~5.2.0":
- "integrity" "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
- "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"
- "version" "5.2.1"
+"safe-buffer@~5.1.0", "safe-buffer@~5.1.1":
+ "integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
+ "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
+ "version" "5.1.2"
"safe-json-utils@^1.1.1":
"integrity" "sha512-SAJWGKDs50tAbiDXLf89PDwt9XYkWyANFWVzn4dTXl5QyI8t2o/bW5/OJl3lvc2WVU4MEpTo9Yz5NVFNsp+OJQ=="
"resolved" "https://registry.npmjs.org/safe-json-utils/-/safe-json-utils-1.1.1.tgz"
"version" "1.1.1"
+"safe-regex-test@^1.0.0":
+ "integrity" "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA=="
+ "resolved" "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz"
+ "version" "1.0.0"
+ dependencies:
+ "call-bind" "^1.0.2"
+ "get-intrinsic" "^1.1.3"
+ "is-regex" "^1.1.4"
+
"safer-buffer@^2.1.0", "safer-buffer@>= 2.1.2 < 3":
"integrity" "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
"resolved" "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"
"version" "2.1.2"
-"salmon-adapter-sdk@^1.0.0":
- "integrity" "sha512-mbZGlOcApxET1FQBeQPGG+Y2DhawIPULyVhGMSMCwf0wYJDaiyToqL90ZbsqkKklXnN5vmsfVsPo0+R/cchy2Q=="
- "resolved" "https://registry.npmjs.org/salmon-adapter-sdk/-/salmon-adapter-sdk-1.0.0.tgz"
- "version" "1.0.0"
+"salmon-adapter-sdk@^1.1.0":
+ "integrity" "sha512-8uKgA4+pwtUZRJ1k4tgA+EdF3yqHAst+wrdEJEqS8y9quYEuEGb5+EFonRdNzW1A9N0lX4PBHFalAlbiQ5BZtg=="
+ "resolved" "https://registry.npmjs.org/salmon-adapter-sdk/-/salmon-adapter-sdk-1.1.0.tgz"
+ "version" "1.1.0"
dependencies:
"@project-serum/sol-wallet-adapter" "^0.2.0"
"eventemitter3" "^4.0.7"
@@ -6801,23 +6850,23 @@
"version" "6.3.0"
"semver@^7.3.2":
- "integrity" "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g=="
- "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz"
- "version" "7.3.7"
+ "integrity" "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A=="
+ "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz"
+ "version" "7.3.8"
dependencies:
"lru-cache" "^6.0.0"
"semver@^7.3.5":
- "integrity" "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g=="
- "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz"
- "version" "7.3.7"
+ "integrity" "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A=="
+ "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz"
+ "version" "7.3.8"
dependencies:
"lru-cache" "^6.0.0"
"semver@^7.3.7":
- "integrity" "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g=="
- "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz"
- "version" "7.3.7"
+ "integrity" "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A=="
+ "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz"
+ "version" "7.3.8"
dependencies:
"lru-cache" "^6.0.0"
@@ -6876,13 +6925,13 @@
"version" "3.0.0"
"socket.io-client@^4.5.1":
- "integrity" "sha512-naqYfFu7CLDiQ1B7AlLhRXKX3gdeaIMfgigwavDzgJoIUYulc1qHH5+2XflTsXTPY7BlPH5rppJyUjhjrKQKLg=="
- "resolved" "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.2.tgz"
- "version" "4.5.2"
+ "integrity" "sha512-I/hqDYpQ6JKwtJOf5ikM+Qz+YujZPMEl6qBLhxiP0nX+TfXKhW4KZZG8lamrD6Y5ngjmYHreESVasVCgi5Kl3A=="
+ "resolved" "https://registry.npmjs.org/socket.io-client/-/socket.io-client-4.5.3.tgz"
+ "version" "4.5.3"
dependencies:
"@socket.io/component-emitter" "~3.1.0"
"debug" "~4.3.2"
- "engine.io-client" "~6.2.1"
+ "engine.io-client" "~6.2.3"
"socket.io-parser" "~4.2.0"
"socket.io-parser@~4.2.0":
@@ -7044,21 +7093,7 @@
"define-properties" "^1.1.4"
"es-abstract" "^1.19.5"
-"strip-ansi@^5.0.0":
- "integrity" "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="
- "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"
- "version" "5.2.0"
- dependencies:
- "ansi-regex" "^4.1.0"
-
-"strip-ansi@^5.1.0":
- "integrity" "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="
- "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"
- "version" "5.2.0"
- dependencies:
- "ansi-regex" "^4.1.0"
-
-"strip-ansi@^5.2.0":
+"strip-ansi@^5.0.0", "strip-ansi@^5.1.0", "strip-ansi@^5.2.0":
"integrity" "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="
"resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"
"version" "5.2.0"
@@ -7170,9 +7205,9 @@
"xtend" "~4.0.1"
"tiny-invariant@^1.0.6":
- "integrity" "sha512-1Uhn/aqw5C6RI4KejVeTg6mIS7IqxnLJ8Mv2tV5rTc0qWobay7pDUz6Wi392Cnc8ak1H0F2cjoRzb2/AW4+Fvg=="
- "resolved" "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.2.0.tgz"
- "version" "1.2.0"
+ "integrity" "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw=="
+ "resolved" "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz"
+ "version" "1.3.1"
"tmp-promise@^3.0.2":
"integrity" "sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ=="
@@ -7330,10 +7365,10 @@
"@babel/runtime" "^7.6.2"
"detect-node" "2.1.0"
-"update-browserslist-db@^1.0.5":
- "integrity" "sha512-GHg7C4M7oJSJYW/ED/5QOJ7nL/E0lwTOBGsOorA7jqHr8ExUhPfwAotIAmdSw/LWv3SMLSNpzTAgeLG9zaZKTA=="
- "resolved" "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.8.tgz"
- "version" "1.0.8"
+"update-browserslist-db@^1.0.9":
+ "integrity" "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ=="
+ "resolved" "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz"
+ "version" "1.0.10"
dependencies:
"escalade" "^3.1.1"
"picocolors" "^1.0.0"
@@ -7366,9 +7401,9 @@
"version" "1.2.0"
"utf-8-validate@^5.0.2":
- "integrity" "sha512-Yek7dAy0v3Kl0orwMlvi7TPtiCNrdfHNd7Gcc/pLq4BLXqfAmd0J7OWMizUQnTTJsyjKn02mU7anqwfmUP4J8Q=="
- "resolved" "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.9.tgz"
- "version" "5.0.9"
+ "integrity" "sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ=="
+ "resolved" "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.10.tgz"
+ "version" "5.0.10"
dependencies:
"node-gyp-build" "^4.3.0"
@@ -7378,15 +7413,14 @@
"version" "1.0.2"
"util@^0.12.0", "util@^0.12.4":
- "integrity" "sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw=="
- "resolved" "https://registry.npmjs.org/util/-/util-0.12.4.tgz"
- "version" "0.12.4"
+ "integrity" "sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA=="
+ "resolved" "https://registry.npmjs.org/util/-/util-0.12.5.tgz"
+ "version" "0.12.5"
dependencies:
"inherits" "^2.0.3"
"is-arguments" "^1.0.4"
"is-generator-function" "^1.0.7"
"is-typed-array" "^1.1.3"
- "safe-buffer" "^5.1.2"
"which-typed-array" "^1.1.2"
"uuid@^8.3.2":
@@ -7519,9 +7553,9 @@
"version" "7.5.9"
"ws@^8.5.0":
- "integrity" "sha512-bGy2JzvzkPowEJV++hF07hAD6niYSr0JzBNo/J29WsB57A2r7Wlc1UFcTR9IzrPvuNVO4B8LGqF8qcpsVOhJCA=="
- "resolved" "https://registry.npmjs.org/ws/-/ws-8.8.1.tgz"
- "version" "8.8.1"
+ "integrity" "sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg=="
+ "resolved" "https://registry.npmjs.org/ws/-/ws-8.9.0.tgz"
+ "version" "8.9.0"
"ws@~8.2.3":
"integrity" "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA=="